Get load by load number

Retrieve enriched load data by load number (brokerage load ID). Returns the full LoadV2 format including carrier details, tracking events, reference numbers, notes, subscribers, and shipment information.

Query Parameters
  • loadNumber
    Type: string
    required

    The load number (brokerage load ID)

Responses
  • application/json
  • application/json
  • application/json
  • application/json
Request Example for get/v2/loads
curl 'https://api.prod.goaugment.com/v2/loads?loadNumber=LOAD-12345' \
  --header 'Authorization: Basic username:password'
{
  "brokerageLoadId": "LOAD-12345",
  "brokerageLoadInternalId": null,
  "status": "DRAFT",
  "mode": "DRAYAGE",
  "loadType": "CONTRACT",
  "route": [
    {
      "sequenceNumber": 1,
      "externalId": null,
      "activityType": "PICKUP",
      "address": {
        "name": null,
        "company": null,
        "street1": null,
        "street2": null,
        "city": "string",
        "stateOrProvince": "string",
        "postalCode": null,
        "country": "string"
      },
      "timezone": "America/Los_Angeles",
      "stopNotes": null,
      "facilityCode": null,
      "scheduleTypes": [
        "APPOINTMENT"
      ],
      "expectedStopWindowStart": null,
      "expectedStopWindowEnd": null,
      "expectedDropWindowStart": null,
      "expectedDropWindowEnd": null,
      "actualArrivalTime": null,
      "actualDepartureTime": null,
      "mustArriveByDate": null
    }
  ],
  "totalMiles": null,
  "equipment": "REEFER",
  "equipmentDescription": null,
  "accessorials": [
    "string"
  ],
  "weight": {
    "value": 1,
    "unit": "LB"
  },
  "dimensions": {
    "lengthInches": 1,
    "widthInches": 1,
    "heightInches": 1
  },
  "minimumTemperature": {
    "value": 1,
    "unit": "F"
  },
  "maximumTemperature": {
    "value": 1,
    "unit": "F"
  },
  "tarpSize": null,
  "minimumBulkHeadTemperature": {
    "value": 1,
    "unit": "string"
  },
  "maximumBulkHeadTemperature": {
    "value": 1,
    "unit": "string"
  },
  "commodity": null,
  "commodityItems": [
    {
      "quantity": 1,
      "description": null,
      "packageType": "BOX",
      "totalWeightLbs": null,
      "lengthInches": null,
      "widthInches": null,
      "heightInches": null,
      "freightClass": null,
      "nmfc": null,
      "density": null,
      "pickupSequence": null,
      "deliverySequence": null
    }
  ],
  "service": "HOTSHOT",
  "highValueAmount": null,
  "targetRate": null,
  "maxRate": null,
  "totalRate": null,
  "totalCarrierRate": null,
  "bidExpiration": null,
  "bidCustomValues": [
    {
      "name": "string",
      "value": "string"
    }
  ],
  "isPostedToDAT": true,
  "isPostedToHighway": null,
  "customerName": null,
  "customerId": null,
  "referenceNumbers": [
    {
      "name": "BILLED_DATE",
      "value": "string"
    }
  ],
  "trackingEvents": [
    {
      "nextSequence": 1,
      "nextEtaUtc": null,
      "eventType": "DELAYED",
      "eventSource": "4KITES",
      "eventUtc": null,
      "city": "string",
      "stateOrProvince": "string",
      "latitude": 1,
      "longitude": 1,
      "temperatureF": 1,
      "notes": "string"
    }
  ],
  "externalTrackingStatus": null,
  "notes": [
    {
      "timestamp": "2026-04-02T21:33:56.634Z",
      "text": "string",
      "author": "string"
    }
  ],
  "customers": [
    {
      "name": "Acme Corporation",
      "customerId": "ACME-001",
      "customerContact": null
    }
  ],
  "loadShipments": [
    {
      "loadShipmentRef": "string",
      "loadShipmentInternalRef": "string",
      "shipmentRef": "string",
      "status": "DRAFT",
      "referenceNumbers": [
        {
          "name": "BILLED_DATE",
          "value": "string"
        }
      ],
      "accessorials": [
        "AFTER_HOURS"
      ],
      "notes": [
        {
          "timestamp": "2026-04-02T21:33:56.634Z",
          "text": "string",
          "author": "string"
        }
      ],
      "route": {
        "loadSequence": 1,
        "sequence": 1,
        "externalId": "string",
        "stopActivity": "PICKUP",
        "address": {
          "company": "string",
          "locationName": "string",
          "street1": "string",
          "street2": "string",
          "city": "string",
          "stateOrProvince": "string",
          "postalCode": "string",
          "country": "string"
        },
        "notes": "string",
        "expectedArrivalWindowStart": null,
        "expectedArrivalWindowEnd": null,
        "actualArrivalTime": null,
        "actualCompletionTime": null,
        "expectedDropWindowStart": null,
        "expectedDropWindowEnd": null,
        "mustArriveByDate": null,
        "isLocalTime": true,
        "schedulingType": "APPT",
        "handlingType": "DT"
      },
      "items": [
        {
          "quantity": 1,
          "packageType": "BOX",
          "description": "string",
          "totalWeightLbs": 1,
          "lengthInches": 1,
          "widthInches": 1,
          "heightInches": 1,
          "freightClass": "50",
          "nmfc": "string",
          "density": 1,
          "pickupSequence": 1,
          "deliverySequence": 1
        }
      ],
      "minTemperatureF": 1,
      "maxTemperatureF": 1,
      "service": "HOTSHOT",
      "customer": {
        "customerId": "string",
        "name": "string"
      }
    }
  ],
  "podCollectionStatus": "NOT_STARTED",
  "lastLocationUpdate": null,
  "createdAt": "2026-04-02T21:33:56.634Z",
  "updatedAt": "2026-04-02T21:33:56.634Z"
}