Integrate Cargo411's powerful logistics platform into your applications
Clean, intuitive REST API following industry best practices
WebSocket support for real-time shipment tracking and notifications
OAuth 2.0 and API key authentication with rate limiting
Official SDKs for popular programming languages and frameworks
Detailed documentation with code examples and interactive API explorer
Simple API key management and token-based authentication
Sign up for an account and generate your API key from the dashboard
curl -X POST https://api.cargo411.com/v1/auth/login \
-H "Content-Type: application/json" \
-d '{"email": "your@email.com", "password": "yourpassword"}'Use your API key to authenticate and retrieve shipment data
curl -X GET https://api.cargo411.com/v1/shipments \
-H "Authorization: Bearer YOUR_API_KEY"Start creating shipments programmatically through our API
curl -X POST https://api.cargo411.com/v1/shipments \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"origin": "New York", "destination": "Los Angeles", ...}'/v1/shipmentsRetrieve a list of all shipments with filtering and pagination
/v1/shipmentsCreate a new shipment with origin, destination, and package details
/v1/shipments/{id}/trackGet real-time tracking information for a specific shipment
/v1/quotesRetrieve shipping quotes from multiple carriers
/v1/quotesRequest a new shipping quote with shipment details
/v1/carriersGet information about available carriers and their services
Get your API key and start integrating Cargo411 into your application today