> 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-accessorial.md).

# Get Accessorial

**GET v2/accessorials**

Returns list of Accessorials.

***

### Body Object

None

## Example Body

None

***

## Response

Returns an array of LTL Accessorials and TL Accessorials.

### Response Properties

<table><thead><tr><th width="196">Name</th><th width="216">Type</th><th>Description</th></tr></thead><tbody><tr><td>accessorialId</td><td>int</td><td>Accessorial identifier.</td></tr><tr><td>name</td><td>string</td><td>Accessorial name.</td></tr><tr><td>costAmount</td><td>int</td><td>Cost amount.</td></tr><tr><td>unitType</td><td>string</td><td>Unit used to calculate cost</td></tr><tr><td>customerId</td><td>int</td><td>Customer ID</td></tr><tr><td>loadType</td><td>string</td><td>Denotes LTL or TL</td></tr><tr><td>defaultContract</td><td>bool</td><td>Denotes default contract</td></tr><tr><td>quoteVisible</td><td>bool</td><td>Denotes visibility</td></tr></tbody></table>

## Example Response

```json
{
  "ltlAccessorials": [
    {
      "accessorialId": 52,
      "name": "Reconsignment or Diversion",
      "costAmount": 250,
      "unitType": "Flat Fee",
      "customerId": 0,
      "loadType": "ltl",
      "defaultContract": true,
      "quoteVisible": false
    },
    {
      "accessorialId": 5,
      "name": "Pallet Exchange",
      "costAmount": 10,
      "unitType": "Pallets",
      "customerId": 0,
      "loadType": "ltl",
      "defaultContract": true,
      "quoteVisible": false
    }
  ],
  "tlAccessorials": [
    {
      "accessorialId": 7,
      "name": "Truck Order Not Used",
      "costAmount": 250,
      "unitType": "Flat Fee",
      "customerId": 0,
      "loadType": "tl",
      "defaultContract": true,
      "quoteVisible": false
    },
    {
      "accessorialId": 28,
      "name": "Weekend / Holiday",
      "costAmount": 250,
      "unitType": "Flat Fee",
      "customerId": 0,
      "loadType": "tl",
      "defaultContract": true,
      "quoteVisible": false
    }
  ]
}
```

***

***
