Developers

Build on the Cooriroo API

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.

Base URLhttps://api.test.cooriroo.com/api/v1

Start in three steps

Everything below the fold is generated from the live API description, so it never drifts from what the service actually accepts.

1

Create an API key

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 Integrations
2

Send it as a bearer token

Every 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.

3

Handle limits and errors

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…