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

# Get Endpoint Counts

> Return per-endpoint call counts for the authenticated API key.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/usage/endpoints
openapi: 3.1.0
info:
  title: LimitGuard.ai
  description: Trust Intelligence API - Entity verification and risk scoring
  version: 0.1.0
servers:
  - url: https://api.limitguard.ai
security: []
paths:
  /v1/usage/endpoints:
    get:
      summary: Get Endpoint Counts
      description: Return per-endpoint call counts for the authenticated API key.
      operationId: get_endpoint_counts_v1_usage_endpoints_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                additionalProperties:
                  type: integer
                type: object
                title: Response Get Endpoint Counts V1 Usage Endpoints Get
      security:
        - APIKeyHeader: []
components:
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key

````