Search for loads using optional filter parameters. Returns a list of matching loads with a maximum of 3 results. Depending on the use case, you may need to implement different filters, not all of these are required for everyone.
Query Parameters
Filter by destination city
Filter by destination state
Filter by equipment type name
Filter Reefer loads by the minimum allowed temperature
Filter Reefer loads by the maximum allowed temperature
Filter by pickup date (ISO 8601 format)
Latitude coordinate for the origin location (in decimal degrees)
Longitude coordinate for the origin location (in decimal degrees)
Search radius (in miles) from the origin coordinates
Latitude coordinate for the destination location (in decimal degrees)
Longitude coordinate for the destination location (in decimal degrees)
Search radius (in miles) from the destination coordinates
Filter loads available to a specific carrier ID
Status Codes
Successfully retrieved the list of loads
Response
Response body containing the results List of loads matching the search criteria (maximum 3 results) Custom identifier for the load
Type of load
owned
- Load that is already owned
can_get
- Load that can be acquired
List of stops for the load in order of stop sequence Type of stop
origin
- Origin location
destination
- Destination location
pick
- Pickup location
drop
- Drop-off location
Timestamp for stop window open (format: YYYY-MM-DDTHH:MM:SS without timezone)
Timestamp for stop window close (format: YYYY-MM-DDTHH:MM:SS without timezone)
Maximum buying rate for the load (numeric with up to 2 decimal places)
Current status of the load
at_pickup
- Load is at pickup location
picked_up
- Load has been picked up
at_delivery
- Load is at delivery location
dispatched
- Load has been dispatched
delivered
- Load has been delivered
en_route
- Load is en route
in_transit
- Load is in transit
completed
- Load is completed
available
- Load is available for booking
covered
- Load has been covered
unavailable
- Load is unavailable
Whether this is a partial load
Whether this is a hazmat load
Rate posted for carriers (numeric with up to 2 decimal places)
Additional notes about the sale
Type of commodity being transported in a human readable format
Weight of the load in pounds (numeric with up to 2 decimal places)
Number of pieces in the load
Dimensions of the load in a human readable format
Integration status information Integration processing status
success
- Load was successfully processed and integrated
failed
- Load processing failed
The ID assigned to this load in the bridge system (when status is success)
Equipment type required for the load. Must be one of: Dry Van
, Reefer
, Flatbed
, Step Deck
, Box Truck
, Power Only
Geographic Search
City/State Search
Reefer with Temperature Requirements
curl --request GET \
--url 'https://api.example.com/api/v1/loads?origin_lat=41.8781&origin_lng=-87.6298&origin_radius=50&destination_lat=40.7128&destination_lng=-74.0060&destination_radius=25' \
--header 'Authorization: Bearer API_KEY'
200 Success
500 Internal Server Error
{
"statusCode" : 200 ,
"body" : {
"loads" : [
{
"reference_number" : "LOAD123" ,
"contact" : {
"name" : "John Doe" ,
"email" : "john@example.com" ,
"phone" : "15552220123" ,
"extension" : "123" ,
"type" : "assigned"
},
"type" : "can_get" ,
"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 ,
"posted_carrier_rate" : 1200.00 ,
"weight" : 40000 ,
"number_of_pieces" : 100 ,
"commodity_type" : "Automobile Parts" ,
"sale_notes" : "This is a test load" ,
"branch" : "Chicago" ,
"dimensions" : "53 Feet" ,
"miles" : 500 ,
"bridge" : {
"status" : "success" ,
"bridge_load_id" : "BRK-456789"
}
}
]
}
}