> For the complete documentation index, see [llms.txt](https://docs.whitearrow.com/white-arrow-api-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.whitearrow.com/white-arrow-api-documentation/get-load.md).

# Get Load

**GET v2/loads/{loadID}**

Returns load information including tracking data

***

### Body Object

None

## Example Body

None

***

## Response

Returns a load object.

| Name          | Type                  | Description                            |
| ------------- | --------------------- | -------------------------------------- |
| id            | int                   | Load ID                                |
| refNumber     | string                | Reference Number                       |
| quoteID       | int                   | Original Quote ID                      |
| totalMiles    | int                   | Mileage of load                        |
| pallets       | int                   | Pallet Count                           |
| feet          | int                   | Linear Feet                            |
| weight        | int                   | Total Weight                           |
| type          | string                | LTL or TL                              |
| status        | string                | See Below                              |
| stops         | array of stops        |                                        |
| lastLocation  | location              | Last GPS update for load               |
| files         | array of files        | File information                       |
| accessorials  | array of accessorials | see quote                              |
| serviceLevel  | string                |                                        |
| reefer        | boolean               | Whether load is temp controlled or not |
| total         | float                 | Total charge                           |
| baseRate      | float                 | Baserate charge                        |
| fuelSurcharge | float                 | Fuel Surcharge                         |
| tendered      | boolean               | Tendered through API                   |
| invoiceDate   | date                  | Date invoiced                          |

### Location

| Name        | Type                  | Description                                                      |
| ----------- | --------------------- | ---------------------------------------------------------------- |
| city        | string                | City Name                                                        |
| state       | string                | Two character state name                                         |
| dateLocal   | "YYYY-MM-DD HH:MM:SS" | Local time of last update                                        |
| dateUTC     | "YYYY-MM-DD HH:MM:SS" | UTC time of last update                                          |
| latitude    | float                 | Latitude                                                         |
| longitude   | float                 | Longitude                                                        |
| reeferTemps | reeferTemps           | If a reefer load, displays temperature of current reefer trailer |

### Reefer Temps

|               |         |                        |
| ------------- | ------- | ---------------------- |
| temperature   | integer | Temperature in trailer |
| ambientTemp   | integer | Ambient temperature    |
| returnTemp    | integer | Return Temperature     |
| dischargeTemp | integer | Discharge Temperature  |

#### Load Statuses

| Status     | Description                                                                     |
| ---------- | ------------------------------------------------------------------------------- |
| Cancelled  | Load is cancelled                                                               |
| Pending    | Load tender has been received by White Arrow but is awaiting approval to accept |
| Processing | Load has been accepted by White Arrow and is getting ready to pick up           |
| En Route   | Load has been picked up and is on its way to delivery                           |
| Delivered  | Load has made its final delivery                                                |

### Response Properties

```json
{
    "id": 12345,
    "refNumber": "12345",
    "quoteId": 111111,
    "totalMiles": 2002,
    "pallets": 1,
    "feet": 2,
    "weight": 2250,
    "type": "LTL",
    "status": "En Route",
    "stops": [
        {
            "type": "pickup",
            "name": "Arrowhead Stadium",
            "city": "Kansas City",
            "state": "MO",
            "zip": "64129",
            "date": "2023-09-08",
            "timeFrom": "12:00:00",
            "timeTo": "16:30:00",
            "stopNumber": 1,
            "eta": {
                "arrived": true,
                "arrivedAt": "2023-09-08T14:34:23Z",
                "arrivedAtUtc": "2023-09-08T14:34:23Z",
                "departed": true,
                "departedAt": "2023-09-08T14:43:53Z",
                "departedAtUtc": "2023-09-08T14:43:53Z"
            },
            "hasETA": false,
            "latitude": "39.04894",
            "longitude": "-94.48392",
            "timezone": "America/Chicago"
        },
        {
            "type": "delivery",
            "name": "SoFi Stadium",
            "city": "Inglewood",
            "state": "CA",
            "zip": "90301",
            "date": "2023-09-15",
            "timeFrom": "08:00:00",
            "timeTo": "12:00:00",
            "stopNumber": 2,
            "eta": {
                "arrived": false,
                "departed": false
            },
            "hasETA": false,
            "latitude": "33.95346",
            "longitude": "-118.3416",
            "timezone": "America/Los_Angeles"
        }
    ],
    "lastLocation": {
        "dateUTC": "2023-09-13 06:53:00",
        "dateLocal": "2023-09-12 23:53:00",
        "city": "Vernon",
        "state": "CA",
        "latitude": 33.9979,
        "longitude": -118.174,
        "reeferTemp": {
            "temperature": -10, 
            "ambientTemp": 79,
            "dischargeTemp": -9,
            "returnTemp": -5
        }
    },
    "files": [
        {
            "id": 23456,
            "token": "token",
            "description": "PickUp Document",
            "loadID": 12345
        }
    ],
    "accessorials": null,
    "serviceLevel": "premium",
    "reefer": false,
    "total": 1000,
    "baseRate": 800,
    "fuelSurcharge": 200,
    "tendered": false,
    "invoiceDate": null,
    "apiTenderID": 0
}
```
