# Get current trading limits and remaining budget

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /v1/trading-limits:
    get:
      summary: Get current trading limits and remaining budget
      deprecated: false
      description: ''
      operationId: getTradingLimit
      tags:
        - REST API/Endpoints/Trading Limits
        - Trading Limits
      parameters: []
      responses:
        '200':
          description: Trading limits retrieved successfully
          content:
            '*/*':
              schema:
                properties:
                  data:
                    properties:
                      buyLimit:
                        type: number
                        description: Daily buy volume limit
                      sellLimit:
                        type: number
                        description: Daily sell volume limit
                      currencyId:
                        type: string
                        format: uuid
                        description: Currency UUID in which limits are denominated
                      buyBudgetRemaining:
                        type: number
                        description: Remaining buy budget for today
                      sellBudgetRemaining:
                        type: number
                        description: Remaining sell budget for today
                    x-apidog-orders:
                      - buyLimit
                      - sellLimit
                      - currencyId
                      - buyBudgetRemaining
                      - sellBudgetRemaining
                    type: object
                x-apidog-orders:
                  - data
                type: object
          headers: {}
          x-apidog-name: ''
        '404':
          description: No trading limits configured for this API key
          content:
            '*/*':
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                    x-apidog-orders:
                      - code
                x-apidog-orders:
                  - error
          headers: {}
          x-apidog-name: ''
        '500':
          description: Internal server error
          content:
            '*/*':
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                    x-apidog-orders:
                      - code
                x-apidog-orders:
                  - error
          headers: {}
          x-apidog-name: ''
      security:
        - x-api-key: []
          x-apidog:
            schemeGroups:
              - id: lLvEu3-NO3-KuCup_6qqf
                schemeIds:
                  - x-api-key
            required: true
            use:
              id: lLvEu3-NO3-KuCup_6qqf
            scopes:
              lLvEu3-NO3-KuCup_6qqf:
                x-api-key: []
      x-apidog-folder: REST API/Endpoints/Trading Limits
      x-apidog-status: released
      x-run-in-apidog: https://app.eu.apidog.com/web/project/365298/apis/api-4461012-run
components:
  schemas: {}
  securitySchemes:
    x-api-key:
      type: apikey
      name: x-api-key
      in: header
servers:
  - url: https://api.public.bitpanda.com
    description: Production
security: []

```