




POST /api/v1/auth
Content-Type: application/json
{
"api_key": "your_key",
"environment": "production"
}POST /api/v1/orders
{
"order_id": "ORD-12345",
"service_level": "enhanced",
"fulfillment_center": "FC-WEST-01"
}GET /api/v1/tracking/{order_id}
Response: {
"status": "in_transit",
"location": {...},
"eta": "2024-01-15T14:30:00Z"
}


