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

# Get global volume limits

> Returns current system-wide daily volume limits and usage for both the `/relay`
and `/proxy` routes, split by mainnet and testnet. No authentication required.

Limits reset at midnight UTC. The `relay` and `proxy` caps are independent —
heavy proxy usage does not reduce relay capacity, and vice versa.




## OpenAPI

````yaml get /limits
openapi: 3.0.0
info:
  title: HTTPayer Proxy API
  version: 1.0.0
  description: >-
    HTTPayer is a payment router for 402 response codes and the x402 Protocol.
    Users can access APIs that use the x402 standard through the HTTPayer proxy.
  contact:
    name: HTTPayer Team
    url: https://httpayer.com
servers:
  - url: https://api.httpayer.com
    description: Production server
security: []
tags:
  - name: Relay
    description: Cross-chain payment relay endpoints
  - name: Account
    description: Account balance and limits endpoints
  - name: Webhooks
    description: Async task status and webhooks
  - name: LLM
    description: OpenAI-powered endpoints for translation and chat
  - name: Health
    description: Health check endpoints
paths:
  /limits:
    get:
      tags:
        - Limits
      summary: Get global volume limits
      description: >
        Returns current system-wide daily volume limits and usage for both the
        `/relay`

        and `/proxy` routes, split by mainnet and testnet. No authentication
        required.


        Limits reset at midnight UTC. The `relay` and `proxy` caps are
        independent —

        heavy proxy usage does not reduce relay capacity, and vice versa.
      responses:
        '200':
          description: Global volume limits for relay and proxy routes
          content:
            application/json:
              schema:
                type: object
                required:
                  - relay
                  - proxy
                  - unit
                  - reset_time
                properties:
                  relay:
                    type: object
                    description: Daily volume caps for the /relay route
                    properties:
                      mainnet:
                        $ref: '#/components/schemas/RouteLimits'
                      testnet:
                        $ref: '#/components/schemas/RouteLimits'
                      per_wallet_daily_limit:
                        type: number
                        description: Maximum USDC a single wallet address may relay per day
                        example: 100
                  proxy:
                    type: object
                    description: Daily volume caps for the /proxy route
                    properties:
                      mainnet:
                        $ref: '#/components/schemas/RouteLimits'
                      testnet:
                        $ref: '#/components/schemas/RouteLimits'
                      per_account_daily_limit:
                        type: number
                        description: Maximum USDC a single account may proxy per day
                        example: 500
                  unit:
                    type: string
                    example: USDC
                  reset_time:
                    type: string
                    format: date-time
                    description: Timestamp of next daily reset (midnight UTC)
        '500':
          description: Internal server error
components:
  schemas:
    RouteLimits:
      type: object
      properties:
        daily_limit:
          type: number
          example: 1000
        today_spent:
          type: number
          example: 450.75
        remaining:
          type: number
          example: 549.25
        percentage_used:
          type: string
          example: '45.08'

````