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

# Usage summary



## OpenAPI

````yaml /openapi/analytics.yaml get /api/v1/analytics/summary
openapi: 3.0.3
info:
  title: Titan Analytics API
  description: Read-only usage summaries, series, execution metrics, and custom queries.
  version: '1.0'
servers:
  - url: https://api.webscraping.titannet.io
    description: Production
security: []
tags:
  - name: Summary & series
  - name: Realtime & timeseries
  - name: Executions
  - name: Tasks
  - name: Query
paths:
  /api/v1/analytics/summary:
    get:
      tags:
        - Summary & series
      summary: Usage summary
      operationId: getAnalyticsSummary
      parameters:
        - name: time_range
          in: query
          schema:
            type: string
            enum:
              - 24h
              - 7d
              - 30d
            default: 7d
        - name: credits_source
          in: query
          schema:
            type: string
            default: billing_events
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SuccessEnvelope'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
      security:
        - bearerAuth: []
        - apiKeyAuth: []
components:
  schemas:
    SuccessEnvelope:
      type: object
      properties:
        success:
          type: boolean
        data: {}
    ErrorEnvelope:
      type: object
      properties:
        success:
          type: boolean
        error:
          type: object
          properties:
            code:
              type: string
            message:
              type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
    apiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````