# Get balance

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /v1/balance:
    get:
      summary: Get balance
      deprecated: false
      description: ''
      tags:
        - API Reference/Balance
      parameters:
        - 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
                x-apifox-refs:
                  01GK4DEDSPKQC8EHRW0201SPNJ:
                    $ref: '#/components/schemas/Balance'
                    x-apifox-overrides:
                      connect_reserved: null
                      issuing: null
                x-apifox-orders:
                  - 01GK4DEDSPKQC8EHRW0201SPNJ
                properties:
                  object:
                    type: string
                    description: '"balance"'
                  available:
                    type: array
                    items:
                      type: object
                      properties:
                        amount:
                          type: integer
                          description: Balance amount.
                        currency:
                          type: string
                          description: >-
                            Three-letter ISO currency code, in lowercase. Must
                            be a supported currency.
                      x-apifox-orders:
                        - amount
                        - currency
                      x-apifox-ignore-properties: []
                    description: Funds that are available to be transferred or paid out
                  pending:
                    type: array
                    items:
                      type: object
                      properties:
                        amount:
                          type: integer
                          description: Balance amount.
                        currency:
                          type: string
                          description: >-
                            Three-letter ISO currency code, in lowercase. Must
                            be a supported currency.
                      x-apifox-orders:
                        - amount
                        - currency
                      x-apifox-ignore-properties: []
                    description: Funds that are not yet available in the balance.
                  livemode:
                    type: boolean
                    description: >-
                      Has the value true if the object exists in live mode or
                      the value false if the object exists in test mode.
                x-apifox-ignore-properties:
                  - object
                  - available
                  - pending
                  - livemode
              example:
                object: balance
                available:
                  - amount: 1001353
                    currency: eur
                  - amount: 33143
                    currency: gbp
                  - amount: -62
                    currency: usd
          headers: {}
          x-apifox-name: OK
      security:
        - basic: []
      x-apifox-folder: API Reference/Balance
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/1296482/apis/api-42628037-run
components:
  schemas:
    Balance:
      type: object
      properties:
        object:
          type: string
          description: '"balance"'
        available:
          type: array
          items:
            type: object
            properties:
              amount:
                type: integer
                description: Balance amount.
              currency:
                type: string
                description: >-
                  Three-letter ISO currency code, in lowercase. Must be a
                  supported currency.
            x-apifox-orders:
              - amount
              - currency
            x-apifox-ignore-properties: []
          description: Funds that are available to be transferred or paid out
        pending:
          type: array
          items:
            type: object
            properties:
              amount:
                type: integer
                description: Balance amount.
              currency:
                type: string
                description: >-
                  Three-letter ISO currency code, in lowercase. Must be a
                  supported currency.
            x-apifox-orders:
              - amount
              - currency
            x-apifox-ignore-properties: []
          description: Funds that are not yet available in the balance.
        livemode:
          type: boolean
          description: >-
            Has the value true if the object exists in live mode or the value
            false if the object exists in test mode.
        issuing:
          type: object
          properties:
            available:
              type: array
              items:
                type: object
                properties:
                  amount:
                    type: integer
                    description: Balance amount.
                  currency:
                    type: string
                    description: >-
                      Three-letter ISO currency code, in lowercase. Must be a
                      supported currency.
                x-apifox-orders:
                  - amount
                  - currency
                x-apifox-ignore-properties: []
              description: Funds that are available for use.
          description: Funds that you can spend on your Issued Cards.
          x-apifox-orders:
            - available
          x-apifox-ignore-properties: []
        connect_reserved:
          type: array
          items:
            type: object
            properties:
              amount:
                type: integer
              currency:
                type: string
            x-apifox-orders:
              - amount
              - currency
            x-apifox-ignore-properties: []
          description: （未实现）
      x-apifox-orders:
        - object
        - available
        - pending
        - livemode
        - issuing
        - connect_reserved
      x-apifox-ignore-properties: []
      x-apifox-folder: ''
  securitySchemes:
    basic:
      type: http
      scheme: basic
servers:
  - url: https://apitest.wooshpay.com
    description: 官网测试
security:
  - basic: []

```
