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

# Get usage summary



## OpenAPI

````yaml openapi/devex.yaml get /developers/usage
openapi: 3.0.3
info:
  title: TXCloud DevEx API
  version: 1.0.0
  description: >
    Developer Experience API for managing API access, monitoring usage, and
    debugging.
servers:
  - url: https://api.txcloud.io/v1
  - url: https://sandbox.api.txcloud.io/v1
security:
  - BearerAuth: []
tags:
  - name: Keys
    description: API key management
  - name: Webhooks
    description: Webhook configuration
  - name: Usage
    description: Usage and billing
  - name: Logs
    description: Request logs
  - name: Sandbox
    description: Testing tools
  - name: Account
    description: Account management
paths:
  /developers/usage:
    get:
      tags:
        - Usage
      summary: Get usage summary
      operationId: getUsage
      responses:
        '200':
          description: Usage summary
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UsageSummary'
components:
  schemas:
    UsageSummary:
      type: object
      properties:
        period:
          type: object
        total_requests:
          type: integer
        successful:
          type: integer
        failed:
          type: integer
        by_api:
          type: object
        rate_limit_hits:
          type: integer
        estimated_cost:
          type: object
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````