API Reference · v1

RetailRoute REST API

A production-ready REST interface for orders, drivers, stores, and webhooks. All endpoints authenticate with bearer tokens over TLS.

Base URL · https://api.retailroute.app

Orders

POST
/v1/ordersCreate a new dispatch order
GET
/v1/orders/:idRetrieve a single order
GET
/v1/ordersList orders with filters
PATCH
/v1/orders/:idUpdate order details
POST
/v1/orders/:id/cancelCancel an order
Example · POST /v1/orders
curl -X POST https://api.retailroute.app/v1/orders \
  -H "Authorization: Bearer rr_live_••••••••" \
  -H "Content-Type: application/json" \
  -d '{ "store_id": "s-1", "address": "318 Berry St, Brooklyn, NY" }'