01 · REST API
v1 · median 210 ms
The site is a client. So is your ERP.
The calculator on this site calls the same engine your systems would: 6 endpoints, JSON in and out, median response 210 ms, 99.95% uptime over 12 months.
Endpoints
- POST/v1/quotesprice a lane - same math as the calculator
- GET/v1/quotes/{id}retrieve a priced quote before expiry
- POST/v1/shipmentsbook against a quote_id
- GET/v1/shipments/{ref}/events5-checkpoint event stream
- POST/v1/webhookssubscribe to checkpoint + exception events
- GET/v1/laneslist 212 lanes with cutoffs and transit ranges
POST /v1/quotes → 201
{
"quote_id": "qt_8c31f2",
"lane": { "origin": "SHA", "destination": "RTM" },
"mode": "ocean_lcl",
"chargeable": { "value": 12.0, "unit": "wm" },
"price": { "amount": 978, "currency": "USD" },
"distance_km": 8866,
"transit_days": [19, 25],
"expires_at": "2026-07-09T12:00:00Z"
}
02 · Webhooks
HMAC-SHA256 signed
Checkpoint events, pushed in under 90 seconds
Every scan posts to your endpoint with an X-Atlas-Signature header. Retries back off over 24 h; delivery p95 is 90 s from physical scan.
shipment.checkpoint · example delivery
// POST https://erp.example.com/atlas - headers:
// X-Atlas-Signature: sha256=7f1a…c09e
// X-Atlas-Delivery: evt_55d2a0
{
"event": "shipment.checkpoint",
"reference": "ATL-2026-48291",
"checkpoint": 3,
"status": "linehaul_departed",
"location": "SHA",
"occurred_at": "2026-07-01T04:12:38Z"
}
Delivery guarantees
| Latency | ≤ 90 s p95 |
|---|---|
| Signature | HMAC-SHA256, rotating secret |
| Retries | 8 attempts / 24 h backoff |
| Order | per-shipment sequence number |
| Events | checkpoint · exception · pod.signed |
| Replay | GET /v1/shipments/{ref}/events |
03 · Connectors
Plays with your stack
Native ERP and WMS connectors
Prebuilt sync for orders, ASNs and PODs - typical go-live in 10 working days with your integration owner and ours.
SAP S/4HANANetSuiteDynamics 365
OdooManhattan WMSBlue Yonder
| Access | Rate limit | Auth | Support |
|---|---|---|---|
| Sandbox | 60 req / min | API key | docs + examples |
| Production | 600 req / min | OAuth 2.0 client credentials | dedicated integration engineer |
| EDI | batch | AS2 · SFTP | EDIFACT IFTSTA / IFTMIN |