# GET List length pricings

Get length pricing records for a MATERIAL_LENGTH customiser.

- Source URL: https://www.signcustomiser.com/help/api/get-list-length-pricings/
- Markdown URL: https://www.signcustomiser.com/help/api/get-list-length-pricings.md
- Group: Pricing - Length Pricings
- Method: GET
- Path: /api/v2/customisers/{customiser}/length-pricings
- Auth: Bearer token

## Path parameters

- customiser (string, required): The customiser ID. Example: 1

## cURL example

```bash
curl https://web.signcustomiser.com/api/v2/customisers/1/length-pricings \
  --header 'Accept: application/json' \
  --header 'Authorization: Bearer YOUR_API_TOKEN'
```

## Response examples

### 200 GET 200 example 1

```json
{
  "length_pricings": [
    {
      "length_pricing_id": 1,
      "selection_id": 1,
      "label": "Standard",
      "pricing_type": "MATERIAL_LENGTH",
      "shipping_calculation": "PHYSICAL",
      "volumetric_divisor": null,
      "add_weight_to_product": false,
      "pricings": [
        {
          "base_price": 100,
          "price_per_cm": 2,
          "cm_limit_width": 100,
          "cm_limit_height": 50
        }
      ]
    }
  ]
}
```
