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

# Usage

> Retrieve API usage statistics for your organization

Returns usage statistics for the authenticated organization, broken down by endpoint.

<ResponseField name="endpoint" type="string">
  The endpoint path (e.g., `entire/detect`, `v1/detect`).
</ResponseField>

<ResponseField name="total_points" type="integer">
  Total number of data points processed through this endpoint.
</ResponseField>

<ResponseField name="call_count" type="integer">
  Total number of API calls to this endpoint.
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.canaryedge.com/v1/usage \
    -H "X-Canary-Key: YOUR_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  [
    {
      "endpoint": "entire/detect",
      "total_points": 3450000,
      "call_count": 847
    },
    {
      "endpoint": "last/detect",
      "total_points": 500000,
      "call_count": 1250
    },
    {
      "endpoint": "v1/detect",
      "total_points": 1200000,
      "call_count": 312
    }
  ]
  ```
</ResponseExample>
