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

# Get rate limit information

> Get current rate limit status and usage statistics



## OpenAPI

````yaml get /api/rate-limits
openapi: 3.0.0
info:
  title: SQL Query API
  description: API for executing SQL queries
  version: 1.0.0
servers:
  - url: https://pos-integration.robotpos.com/realtimeapi
    description: Production API server
security: []
paths:
  /api/rate-limits:
    get:
      summary: Get rate limit information
      description: Get current rate limit status and usage statistics
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  limits:
                    type: array
                    items:
                      type: object
                      properties:
                        key:
                          type: string
                          example: default
                        limit:
                          type: integer
                          example: 100
                        remaining:
                          type: integer
                          example: 95
                        resetTime:
                          type: string
                          format: date-time
                          example: '2024-01-01T00:00:00Z'
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````