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

# Get Plan

> Retrieve details for a specific subscription plan by its ID.

## Path Parameters

<ParamField path="planId" type="string" required>
  The numeric ID of the plan. Retrieve plan IDs from the List Plans endpoint.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET https://api.voxmind.ai/plans/1 \
    -H "Authorization: Bearer YOUR_API_TOKEN" \
    -H "Accept: application/json"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "id": 1,
    "details": {
      "name": "Starter",
      "monthly_calls_included": 2500,
      "overage_rate_gbp": 0.18
    },
    "created_at": "2025-01-01T00:00:00Z",
    "updated_at": "2025-01-01T00:00:00Z"
  }
  ```
</ResponseExample>
