π§© Base URL
The API follows REST principles and enforces HTTPS for all requests to ensure data security and privacy. HTTP is not supported.π Authentication
PDF Echo uses HTTP Basic Authentication for all API requests.Your API key is used as the username, and the password must be left blank. Hereβs how to authenticate using
curl:
π‘ Note: The colon (:) after your API key is required β it indicates an empty password.
Keep your API key secure and never expose it in client-side code or public repositories.
π‘ Response Codes
We use standard HTTP status codes to indicate the result of API requests:- 2xx β Success
- 4xx β user-related error (e.g., invalid parameters or authentication)
- 5xx β Infrastructure issues.
| Status | Description |
|---|---|
| 200 | Request completed successfully. |
| 400 | Invalid request. Check your parameters. |
| 401 | Missing API key. |
| 403 | Invalid API key. |
| 404 | The requested resource could not be found. |
| 429 | Too many requests - rate limit exceeded. |
| 5xx | Indicates an error with our servers. |
For a full list of possible errors, check the Error Codes section.