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

# Check rate limit status

> Check your current rate limit status including usage and remaining allowance.



## OpenAPI

````yaml /api-reference/openapi.json get /rate-limit
openapi: 3.1.0
info:
  title: OpenAlex API
  description: >-
    The OpenAlex API provides access to a comprehensive catalog of scholarly
    works, authors, sources, institutions, topics, keywords, publishers, and
    funders. OpenAlex indexes over 250 million scholarly works.
  version: 1.0.0
  contact:
    name: OpenAlex Support
    email: support@openalex.org
    url: https://openalex.org
  license:
    name: CC0
    url: https://creativecommons.org/publicdomain/zero/1.0/
servers:
  - url: https://api.openalex.org
    description: OpenAlex Production API
security:
  - apiKey: []
tags:
  - name: Works
    description: Scholarly documents like journal articles, books, datasets, and theses
  - name: Authors
    description: People who create scholarly works
  - name: Sources
    description: Journals, repositories, and other venues where works are hosted
  - name: Institutions
    description: Universities, research organizations, and other affiliations
  - name: Topics
    description: Research topics automatically assigned to works
  - name: Keywords
    description: Short phrases identified from works' topics
  - name: Publishers
    description: Companies and organizations that publish scholarly works
  - name: Funders
    description: Organizations that fund research
  - name: Autocomplete
    description: Fast typeahead search for any entity type
  - name: Domains
    description: Top-level categories in the topic hierarchy (4 total)
  - name: Fields
    description: Second-level categories in the topic hierarchy (26 total)
  - name: Subfields
    description: Third-level categories in the topic hierarchy (254 total)
  - name: SDGs
    description: UN Sustainable Development Goals (17 total)
  - name: Countries
    description: Geographic countries for filtering research by location
  - name: Continents
    description: Geographic continents (7 total)
  - name: Languages
    description: Languages of scholarly works
  - name: Awards
    description: Research grants and funding awards
  - name: Concepts
    description: Legacy taxonomy of research areas (deprecated - use Topics instead)
  - name: Work Types
    description: Types of scholarly works (article, book, dataset, etc.)
  - name: Source Types
    description: Types of sources (journal, repository, conference, etc.)
  - name: Institution Types
    description: Types of institutions (education, healthcare, company, etc.)
  - name: Licenses
    description: Open access licenses (CC BY, CC BY-SA, etc.)
paths:
  /rate-limit:
    get:
      tags:
        - Rate Limits
      summary: Check rate limit status
      description: >-
        Check your current rate limit status including usage and remaining
        allowance.
      operationId: getRateLimit
      parameters:
        - $ref: '#/components/parameters/api_key'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RateLimitResponse'
        '429':
          $ref: '#/components/responses/RateLimited'
components:
  parameters:
    api_key:
      name: api_key
      in: query
      description: >-
        Your OpenAlex API key (required). Get a free key at
        https://openalex.org/settings/api
      required: true
      schema:
        type: string
  schemas:
    RateLimitResponse:
      type: object
      properties:
        api_key:
          type: string
        rate_limit:
          type: object
          properties:
            daily_budget_usd:
              type: number
              description: Your daily usage allowance in USD
            daily_used_usd:
              type: number
              description: Amount used today in USD
            daily_remaining_usd:
              type: number
              description: Remaining daily allowance in USD
            prepaid_balance_usd:
              type: number
              description: Total prepaid balance in USD
            prepaid_remaining_usd:
              type: number
              description: Remaining prepaid balance in USD
            prepaid_expires_at:
              type: string
              format: date-time
              nullable: true
              description: When prepaid balance expires
            resets_at:
              type: string
              format: date-time
            resets_in_seconds:
              type: integer
            endpoint_costs_usd:
              type: object
              description: Cost per request in USD for each endpoint type
              properties:
                singleton:
                  type: number
                list:
                  type: number
                search:
                  type: number
                content:
                  type: number
                semantic:
                  type: number
                text:
                  type: number
            credits_limit:
              type: integer
              deprecated: true
              description: Deprecated. Use daily_budget_usd instead.
            credits_used:
              type: integer
              deprecated: true
              description: Deprecated. Use daily_used_usd instead.
            credits_remaining:
              type: integer
              deprecated: true
              description: Deprecated. Use daily_remaining_usd instead.
            credit_costs:
              type: object
              deprecated: true
              description: Deprecated. Use endpoint_costs_usd instead.
    Error:
      type: object
      properties:
        error:
          type: string
          description: Error type
        message:
          type: string
          description: Human-readable error message
  responses:
    RateLimited:
      description: Rate limit exceeded
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    apiKey:
      type: apiKey
      in: query
      name: api_key
      description: >-
        Your OpenAlex API key. Get a free key at
        https://openalex.org/settings/api

````