curl --request GET \
--url 'https://api.example.com/api/v1/loads/LOAD123' \
--header 'Authorization: Bearer API_KEY'
{
"statusCode": 200,
"body": {
"load": {
"reference_number": "LOAD123",
"contact": {
"name": "John Doe",
"email": "john@example.com",
"phone": "15552220123",
"extension": "123",
"type": "assigned"
},
"type": "owned",
"stops": [
{
"type": "origin",
"location": {
"city": "Chicago",
"state": "IL",
"zip": "60601",
"country": "US"
},
"stop_timestamp_open": "2024-03-20T14:00:00",
"stop_timestamp_close": "2024-03-20T16:00:00"
},
{
"type": "destination",
"location": {
"city": "New York",
"state": "NY",
"zip": "10001",
"country": "US"
},
"stop_timestamp_open": "2024-03-21T14:00:00",
"stop_timestamp_close": "2024-03-21T16:00:00"
}
],
"equipment_type": "Dry Van",
"max_buy": 1500.50,
"status": "available",
"is_partial": false,
"is_hazmat": false,
"posted_carrier_rate": 1200.00,
"weight": 40000,
"number_of_pieces": 100,
"commodity_type": "Automobile Parts",
"sale_notes": "This is a test load",
"dimensions": "53 Feet",
"branch": "Chicago",
"miles": 500,
"bridge": {
"status": "success",
"bridge_load_id": "BRK-456789"
}
}
}
}
Get details for a specific load
curl --request GET \
--url 'https://api.example.com/api/v1/loads/LOAD123' \
--header 'Authorization: Bearer API_KEY'
{
"statusCode": 200,
"body": {
"load": {
"reference_number": "LOAD123",
"contact": {
"name": "John Doe",
"email": "john@example.com",
"phone": "15552220123",
"extension": "123",
"type": "assigned"
},
"type": "owned",
"stops": [
{
"type": "origin",
"location": {
"city": "Chicago",
"state": "IL",
"zip": "60601",
"country": "US"
},
"stop_timestamp_open": "2024-03-20T14:00:00",
"stop_timestamp_close": "2024-03-20T16:00:00"
},
{
"type": "destination",
"location": {
"city": "New York",
"state": "NY",
"zip": "10001",
"country": "US"
},
"stop_timestamp_open": "2024-03-21T14:00:00",
"stop_timestamp_close": "2024-03-21T16:00:00"
}
],
"equipment_type": "Dry Van",
"max_buy": 1500.50,
"status": "available",
"is_partial": false,
"is_hazmat": false,
"posted_carrier_rate": 1200.00,
"weight": 40000,
"number_of_pieces": 100,
"commodity_type": "Automobile Parts",
"sale_notes": "This is a test load",
"dimensions": "53 Feet",
"branch": "Chicago",
"miles": 500,
"bridge": {
"status": "success",
"bridge_load_id": "BRK-456789"
}
}
}
}
Show Load properties
Show Available values
owned
- Load that is already ownedcan_get
- Load that can be acquiredShow Stop properties
Show Available values
origin
- Origin locationdestination
- Destination locationpick
- Pickup locationdrop
- Drop-off locationShow Available values
at_pickup
- Load is at pickup locationpicked_up
- Load has been picked upat_delivery
- Load is at delivery locationdispatched
- Load has been dispatcheddelivered
- Load has been delivereden_route
- Load is en routein_transit
- Load is in transitcompleted
- Load is completedavailable
- Load is available for bookingcovered
- Load has been coveredunavailable
- Load is unavailableDry Van
, Reefer
, Flatbed
, Step Deck
, Box Truck
, Power Only
curl --request GET \
--url 'https://api.example.com/api/v1/loads/LOAD123' \
--header 'Authorization: Bearer API_KEY'
{
"statusCode": 200,
"body": {
"load": {
"reference_number": "LOAD123",
"contact": {
"name": "John Doe",
"email": "john@example.com",
"phone": "15552220123",
"extension": "123",
"type": "assigned"
},
"type": "owned",
"stops": [
{
"type": "origin",
"location": {
"city": "Chicago",
"state": "IL",
"zip": "60601",
"country": "US"
},
"stop_timestamp_open": "2024-03-20T14:00:00",
"stop_timestamp_close": "2024-03-20T16:00:00"
},
{
"type": "destination",
"location": {
"city": "New York",
"state": "NY",
"zip": "10001",
"country": "US"
},
"stop_timestamp_open": "2024-03-21T14:00:00",
"stop_timestamp_close": "2024-03-21T16:00:00"
}
],
"equipment_type": "Dry Van",
"max_buy": 1500.50,
"status": "available",
"is_partial": false,
"is_hazmat": false,
"posted_carrier_rate": 1200.00,
"weight": 40000,
"number_of_pieces": 100,
"commodity_type": "Automobile Parts",
"sale_notes": "This is a test load",
"dimensions": "53 Feet",
"branch": "Chicago",
"miles": 500,
"bridge": {
"status": "success",
"bridge_load_id": "BRK-456789"
}
}
}
}
Was this page helpful?