GET
/
api
/
v1
/
loads
/
{load_id}
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"
    }
    }
  }
}
Retrieve details for a single load by its ID.

Path Parameters

load_id
string
required
The unique identifier of the load

Query Parameters

carrier_id
string
Filter loads available to a specific carrier ID

Response

statusCode
number
HTTP status code
body
object
Response body containing the result
load
object
The load object

Status Codes

200
number
Successfully retrieved the load
404
number
Load not found with the specified ID
409
number
Multiple loads found with the same ID
500
number
Internal server error.
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"
    }
    }
  }
}