Developers
Trips, tasks, drivers, vehicles, and destinations are all reachable over the same REST API our web and mobile apps run on. Authenticate with a scoped API key and wire Cooriroo into your ERP, warehouse system, or storefront.
https://api.test.cooriroo.com/api/v1Everything below the fold is generated from the live API description, so it never drifts from what the service actually accepts.
Sign in, open Platform → Integrations, and create a key with only the resource:action scopes your integration needs.
The secret is shown once, at creation. Store it in a password manager or your deployment's secret store — losing it means rotating the key.
Open IntegrationsEvery request carries the key in the standard authorization header.
curl https://api.test.cooriroo.com/api/v1/trips \ -H "Authorization: Bearer sk_..."
Keys are workspace-scoped: a key only ever sees the workspace that issued it, and is authorized by its own scopes rather than any user's role.
Each key has its own rate limit. Exceed it and the API replies 429 Too Many Requests — back off and retry.
Failures come back as JSON with a stable error code and a correlation ID. Quote that ID when you contact support and we can trace the exact request.
Prefer to explore in a client? The same endpoints ship as a public Postman collection.
Loading the API reference…