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

# Get usage summary



## OpenAPI

````yaml /openapi-components.json get /api/v1/usage/summary
openapi: 3.0.0
info:
  title: StudyFetch API
  description: API documentation for StudyFetch
  version: '1.0'
  contact: {}
servers:
  - url: https://studyfetchapi.com
    description: Production API Server
security: []
tags: []
paths:
  /api/v1/usage/summary:
    get:
      tags:
        - Usage Tracking
      summary: Get usage summary
      operationId: getUsageSummary
      parameters:
        - name: period
          required: true
          in: query
          description: Summary period
          schema:
            enum:
              - hourly
              - daily
              - monthly
            type: string
        - name: startDate
          required: true
          in: query
          description: Start date for summary (ISO 8601)
          schema:
            type: string
        - name: endDate
          required: true
          in: query
          description: End date for summary (ISO 8601)
          schema:
            type: string
        - name: groupBy
          required: false
          in: query
          description: Group results by
          schema:
            enum:
              - user
              - group
              - model
              - endpoint
            type: string
      responses:
        '200':
          description: Usage summary retrieved
      security:
        - x-api-key: []
components:
  securitySchemes:
    x-api-key:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        API Key for server-to-server authentication. Resolves to the owning
        organization.

````