API Reference
Welcome to the Chronos API reference documentation. Here you'll find detailed information about all available endpoints, request/response formats, and code examples.
Base URLsβ
Our API is available in two environments:
| Environment | Base URL |
|---|---|
| Sandbox | https://apisandbox.eonwms.com |
| Production | https://api.eonwms.com |
Always start your integration using the Sandbox environment. Contact our support team when you're ready to move to production.
Authenticationβ
All API requests require authentication using a Bearer token. You can obtain your token using the Get Authentication Token endpoint.
Authorization: Bearer YOUR_TOKEN_HERE
API Sectionsβ
Our API is organized into the following sections:
π Authorizationβ
Manage authentication and obtain access tokens.
π¦ Ordersβ
Create, track, and manage fulfillment orders.
- Create orders
- Track order status
- Get order information
- Delete orders
- Calculate shipping rates
- Download labels
π Warehousesβ
Query available warehouses and their capabilities.
π Productsβ
Monitor product inventory levels across warehouses.
Request Formatβ
All requests must include the following headers:
Content-Type: application/json
Accept: application/json
Authorization: Bearer YOUR_TOKEN_HERE
Response Formatβ
All responses are returned in JSON format with the following structure for successful requests:
{
"status": "success",
"data": {
// Response data here
}
}
Error responses follow this format:
{
"fault": {
"error": "error_code",
"error_description": "Human readable error message"
}
}
HTTP Status Codesβ
| Status Code | Description |
|---|---|
200 | Success - Request completed successfully |
401 | Unauthorized - Invalid or missing authentication token |
404 | Not Found - Resource not found |
422 | Unprocessable Entity - Validation error |
500 | Internal Server Error - Something went wrong on our side |
Rate Limitsβ
API requests are subject to rate limits:
- Sandbox: 60 requests per minute
- Production: Varies by plan (check your contract)
Rate limit information is included in response headers:
X-RateLimit-Limit: Maximum requests per minuteX-RateLimit-Remaining: Remaining requestsX-RateLimit-Reset: Time when the limit resets
Need Help?β
- π§ Email: support@intech.mx
- π Postman Collection: Download here
- π Report issues: GitHub Issues