Errors
All errors are formatted as JSON objects with the following structure. The statusCode
field is the same as the HTTP status code returned by the server.
Property | Type | Description |
---|---|---|
error | string | A short error code or message. |
statusCode | number | HTTP status code (e.g., 400, 404). |
Examples
{"error": "not logged in","statusCode": 401}
{"error": "Invalid username","statusCode": 400}
{"error": "Not Found","statusCode": 404}
Authentication
Most API endpoints require authentication. Zipline supports cookie-bas...
Ratelimit
Zipline's API ratelimits certain endpoints to prevent spam and is usua...
Last updated: Jun 12, 2025
Edit this page on GitHub