Learn how to authenticate and interact with the isend.ai API, including base URL, headers, error codes, and limits.
Base URL
All requests to the isend.ai API must use HTTPS and follow RESTful conventions. Base URL:Authentication
Authenticate your requests by including your API key in theAuthorization
header using the Bearer token format.
Response Codes
The API uses standard HTTP status codes to indicate the result of requests.Status | Description |
---|---|
200 | The request was successful. |
400 | Invalid request. Check your parameters. |
401 | Missing or malformed API key. |
403 | API key is invalid or unauthorized. |
404 | Resource not found. |
429 | Rate limit exceeded. |
5xx | Server-side error. Try again later. |
For a detailed list of possible API errors, see Error Codes.
Rate Limits
The default rate limit is 2 requests per second per API key. If your integration requires a higher limit, contact support to request an increase. When you exceed the rate limit, you’ll receive a429 Too Many Requests
error.
More details: Rate Limits
FAQ
How does pagination work with the API?
How does pagination work with the API?
Currently, our API endpoints do not support pagination. As we expand our dataset capabilities, pagination will be introduced.
Is the API versioned?
Is the API versioned?
Not yet. All requests default to the current version. Versioning will be added via headers in future releases.