Authentication#
To access any endpoint, you must include a valid API token in the Authorization header:Authorization: Bearer YOUR_API_TOKEN
You can obtain your personal API token in your account API Dashboard.Request Flow#
Each endpoint follows a two-step flow:1.
Initialize request → returns ticket_id
2.
Poll result using GET /endpoint/result?ticket_id=...
GET /endpoint
→ { "code": "SUCCESS", "data": { "ticket_id": "12345" }}GET /endpoint/result?ticket_id=12345
→ { "code": "SUCCESS", "data": {...} }
All API responses follow a standard structure:Response Format (application/json) {
"code": "SUCCESS",
"data": { ... },
"message": "Optional description"
}
code (number) — response status code
data (object or array) — actual payload
message (string) — response description
Modified at 2025-09-02 11:57:49