> ## 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 Opportunity Status

> One opportunity status by id

<Warning>
  **Deprecated — a status is a [tag](/tags).** A status id is that tag's id.
  Read it from [List Tags](/api-reference/list-tags)
  (`?subject_type=path`).
</Warning>

## Path Parameters

<ParamField path="id" type="string" required>
  Status UUID.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.clustr-ai.com/api/public/opportunity-statuses/5e6f7a8b-..." \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "data": {
      "id": "5e6f7a8b-...",
      "name": "Meeting booked",
      "color": "#22C55E",
      "position": 4,
      "is_terminal": false
    }
  }
  ```

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