Orderly Intelligence
Orderly Intelligence combines carrier-performance analytics, shipment-level SLA predictions, and agent-assisted fulfillment operations. Submit shipments and tracking events, then read on-time rates, at-risk queues, network hotspots, delivery predictions, and operational cases that help your team act before a carrier cutoff.
The same predictions power the Intelligence dashboard: a live map, intervention queue, and scorecard you drive from the Orderly portal. If you want to use Intelligence rather than build on it, start with The Intelligence dashboard. Everything below documents the API the dashboard is built on.
For sellers managing fulfillment directly or through a 3PL, the Fulfillment Operations Team turns those signals into evidence-backed cases and approval-ready action plans. Start with Set up Fulfillment Operations.
How it works
Send authenticated shipment and tracking data to the Intelligence API, then use the resulting predictions and analytics in your product or in the Orderly dashboard.
Base URLs
| Environment | Base URL |
|---|---|
| Production | https://api.orderlycore.com |
| Preview | https://api-staging.orderlycore.com |
All endpoints live under the /v1 prefix, for example GET /v1/overview.
Response shape
Every response uses a single envelope, so a client can rely on one shape:
{
"ok": true,
"data": { },
"meta": { "requestId": "…", "version": "0.1.0" }
}
Errors return ok: false with a stable code and message:
{
"ok": false,
"error": { "code": "org_required", "message": "X-Organization-Id header is required." },
"meta": { "requestId": "…", "version": "0.1.0" }
}
Every response carries an X-Request-Id header for correlation.
Next steps
- Quickstart: make your first authenticated call.
- Fulfillment Operations setup: connect signals, cutoffs, costs, and approval policy.
- Run the Fulfillment Operations Team: review cases and prepared actions.
- Authentication: tokens and org scoping.
- Ingest tracking: push shipments and events.
- API Reference: every endpoint, with a live console.