> ## Documentation Index
> Fetch the complete documentation index at: https://edenai-integrations-nanobot-kilocode.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get managekeys usage

> ``GET /v3/manage/keys/{key_id}/usage`` -- usage for one key, filtered by ``custom_token``
IDENTITY (precise, unlike the dashboard's name filter). A ``key_id`` not in the org is a 404.
Time-series only. ``manage:read``.



## OpenAPI

````yaml https://api.edenai.run/v2/info/splitted-schema/management_api/openapi.json get /manage/keys/{key_id}/usage/
openapi: 3.0.3
info:
  title: Organization Management
  version: '2.0'
  description: Your project description
servers:
  - url: https://api.edenai.run/v3
security: []
paths:
  /manage/keys/{key_id}/usage/:
    get:
      tags:
        - keys
      description: >-
        ``GET /v3/manage/keys/{key_id}/usage`` -- usage for one key, filtered by
        ``custom_token``

        IDENTITY (precise, unlike the dashboard's name filter). A ``key_id`` not
        in the org is a 404.

        Time-series only. ``manage:read``.
      operationId: manage_keys_usage_retrieve
      parameters:
        - in: path
          name: key_id
          schema:
            type: string
            format: uuid
          required: true
      responses:
        '200':
          description: No response body

````