Base URL
All API requests should be made to:Authentication
The Telzino API uses OAuth 2.0 with the Client Credentials grant type. To authenticate:- Obtain your
client_idandclient_secretfrom the Telzino dashboard - Request an access token from the
/oauth/tokenendpoint - Include the access token in the
Authorizationheader of all subsequent requests
Response Codes
| Code | Description |
|---|---|
| 200 | Success |
| 201 | Created |
| 400 | Bad Request - Invalid parameters |
| 401 | Unauthorized - Invalid or missing token |
| 403 | Forbidden - Insufficient permissions |
| 404 | Not Found |
| 500 | Internal Server Error |
Pagination
List endpoints return paginated results. Use thepage and limit query parameters to navigate through results:
Rate Limits
API requests are rate limited. If you exceed the rate limit, you’ll receive a429 Too Many Requests response. Implement exponential backoff in your integration to handle rate limits gracefully.
