Loads
Filter loads
Search for loads using filter criteria.
Each row carries the fully nested load payload (stops with addresses, carriers with charges). With a large pageSize, responses can be sizable.
Common Filters
- By shipment: { "filter": { "shipmentId": { "equalTo": "uuid" } } }
- Active loads: { "filter": { "status": { "notIn": ["COMPLETE", "CANCELED"] } } }
- FTL loads: { "filter": { "mode": { "equalTo": "FTL" } } }
post/loads/filter
Request body
Response
Loads matching filter criteria
Example response
{
"data": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"friendlyId": "LD-12345",
"key": "my-load-001",
"stops": [
{
"address": {
"line1": "123 Main St",
"line2": "Suite 400",
"city": "Chicago",
"state": "IL",
"zipCode": "60601",
"country": "USA",
"market": "CHI",
"latitude": "41.8781",
"longitude": "-87.6298",
"isSmartyValidated": true,
"obeysDst": true
}
}
],
"carriers": [
{
"carrier": {
"id": "550e8400-e29b-41d4-a716-446655440000",
"key": "ERP-CARRIER-SWIFT",
"name": "Swift Transportation",
"phoneNumber": "+1-555-987-6543",
"email": "dispatch@swifttrans.com",
"createdAt": "2025-01-15T10:00:00Z",
"updatedAt": "2025-01-15T14:30:00Z"
}
}
]
}
],
"pagination": {
"pageSize": 50,
"hasNextPage": true,
"endCursor": "eyJpZCI6IjU1MGU4NDAwLWUyOWItNDFkNC1hNzE2LTQ0NjY1NTQ0MDAwMCJ9"
}
}