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

# Test API Key

> Verify your API key is working correctly

### Headers

<ParamField header="X-API-Key" type="string" required>
  Your API key. Create one from the [dashboard](https://platform.cuttr.com/dashboard/api-platform).
</ParamField>

Simple health-check endpoint to verify your API key, billing account, and rate limit are all working. This endpoint is free and does not deduct from your wallet.

<Note>
  This is the best way to confirm your integration is set up correctly before making billable requests.
</Note>

### Response

<ResponseField name="status" type="string">
  Always `"working"` on success.
</ResponseField>

<ResponseField name="team_id" type="integer">
  The team ID associated with your API key.
</ResponseField>

<ResponseField name="key_name" type="string">
  The name you gave this API key when you created it.
</ResponseField>

<ResponseField name="timestamp" type="string">
  ISO 8601 timestamp of the request.
</ResponseField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "status": "working",
    "team_id": 42,
    "key_name": "my-production-key",
    "timestamp": "2025-01-15T10:30:00.000Z"
  }
  ```

  ```json 401 theme={null}
  {
    "error": "Invalid API key"
  }
  ```

  ```json 402 theme={null}
  {
    "error": "Insufficient balance"
  }
  ```

  ```json 429 theme={null}
  {
    "error": "Rate limit exceeded"
  }
  ```
</ResponseExample>
