# GET Get a length pricing

Retrieve a single length pricing record.

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

## Path parameters

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

## cURL example

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

## Response examples

### 200 GET 200 example 1

```json
{
  "length_pricing": {
    "length_pricing_id": 1,
    "selection_id": 1,
    "label": "Standard",
    "pricing_type": "MATERIAL_LENGTH",
    "shipping_calculation": "PHYSICAL",
    "pricings": []
  }
}
```
