# Retrieve card remaining limits

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /v1/issuing/cards/{id}/limits:
    get:
      summary: Retrieve card remaining limits
      deprecated: false
      description: Retrieve remaining limits of a card
      tags:
        - API Reference/Issuing/Cards
      parameters:
        - name: id
          in: path
          description: ''
          required: true
          schema:
            type: string
        - name: Accept
          in: header
          description: ''
          required: true
          example: application/json
          schema:
            type: string
        - name: Content-Type
          in: header
          description: ''
          required: true
          example: application/json
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  currency:
                    type: string
                  limits:
                    type: array
                    items:
                      type: object
                      properties:
                        amount:
                          type: integer
                        interval:
                          type: string
                        remaining:
                          type: integer
                      x-apifox-orders:
                        - amount
                        - interval
                        - remaining
                x-apifox-orders:
                  - currency
                  - limits
          headers: {}
          x-apifox-name: OK
      security:
        - basic: []
      x-apifox-folder: API Reference/Issuing/Cards
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/1296482/apis/api-135451302-run
components:
  schemas: {}
  securitySchemes:
    basic:
      type: http
      scheme: basic
servers:
  - url: https://apitest.wooshpay.com
    description: 官网测试
security:
  - basic: []

```
