# GET Get a customiser

Retrieve a single customiser.

- Source URL: https://www.signcustomiser.com/help/api/get-get-a-customiser/
- Markdown URL: https://www.signcustomiser.com/help/api/get-get-a-customiser.md
- Group: Customisers
- Method: GET
- Path: /api/v2/customisers/{customiser}
- 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 \
  --header 'Accept: application/json' \
  --header 'Authorization: Bearer YOUR_API_TOKEN'
```

## Response examples

### 200 GET 200 example 1

```json
{
  "customiser": {
    "customiser_id": 1,
    "name": "Storefront neon sign",
    "price_type": "FIXED_WIDTH",
    "product": "NEON",
    "selection_type": "SINGLE",
    "active": true,
    "created_at": "2024-01-01T00:00:00.000000Z",
    "updated_at": "2024-01-01T00:00:00.000000Z"
  }
}
```
