> ## Documentation Index
> Fetch the complete documentation index at: https://docs.clustr-ai.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Tier

> One tier by id

## Path Parameters

<ParamField path="id" type="string" required>
  The tier's id.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.clustr-ai.com/api/public/tenant-tiers/1a2b3c4d-..." \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "data": { "id": "1a2b3c4d-...", "name": "Strategic", "position": 0 }
  }
  ```

  ```json 404 theme={null}
  {
    "success": false,
    "error": { "message": "tier not found", "code": "NOT_FOUND" }
  }
  ```
</ResponseExample>
