Binance Fiat API

Fiat deposit, withdrawal, and payment history endpoints.

Operations 2

GET /sapi/v1/fiat/orders Get fiat deposit/withdraw history #
GET /sapi/v1/fiat/payments Get fiat payments history #

Documentation

📖
Documentation
https://developers.binance.com/docs/binance-spot-api-docs/rest-api
📖
Documentation
https://developers.binance.com/docs/derivatives/usds-margined-futures/general-info
📖
Documentation
https://developers.binance.com/docs/derivatives/coin-margined-futures/general-info
📖
Documentation
https://developers.binance.com/docs/derivatives/option/general-info
📖
Documentation
https://developers.binance.com/docs/derivatives/portfolio-margin/general-info
📖
Documentation
https://developers.binance.com/docs/margin_trading/general-info
📖
Documentation
https://developers.binance.com/docs/wallet/introduction
📖
Documentation
https://developers.binance.com/docs/sub_account/general-info
📖
Documentation
https://developers.binance.com/docs/simple_earn/general-info
📖
Documentation
https://developers.binance.com/docs/mining/general-info
📖
Documentation
https://developers.binance.com/docs/copy_trading/general-info
📖
Documentation
https://developers.binance.com/docs/convert/general-info
📖
Documentation
https://developers.binance.com/docs/binance-pay/introduction
📖
Documentation
https://developers.binance.com/docs/algo/general-info
📖
Documentation
https://developers.binance.com/docs/auto_invest/general-info
📖
Documentation
https://developers.binance.com/docs/crypto_loan/general-info
📖
Documentation
https://developers.binance.com/docs/gift_card/general-info
📖
Documentation
https://developers.binance.com/docs/nft/general-info
📖
Documentation
https://developers.binance.com/docs/fiat/general-info

Specifications

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/binance-fiat-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

binance-fiat-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Binance Fiat API
  description: The Binance Fiat API provides access to fiat currency deposit and withdrawal operations on the Binance platform. Developers can query fiat deposit and withdrawal order history, check available fiat payment methods, and retrieve transaction details for fiat-to-crypto and crypto-to-fiat conversions.
  version: '1'
  contact:
    name: Binance Support
    url: https://www.binance.com/en/support
  termsOfService: https://www.binance.com/en/terms
servers:
- url: https://api.binance.com
  description: Production Server
security:
- apiKey: []
tags:
- name: Fiat
  description: Fiat deposit, withdrawal, and payment history endpoints.
paths:
  /sapi/v1/fiat/orders:
    get:
      operationId: getFiatDepositWithdrawHistory
      summary: Get fiat deposit/withdraw history
      description: Get fiat deposit or withdrawal order history.
      tags:
      - Fiat
      parameters:
      - name: transactionType
        in: query
        required: true
        description: 0 for deposit, 1 for withdraw.
        schema:
          type: integer
          enum:
          - 0
          - 1
      - name: beginTime
        in: query
        schema:
          type: integer
          format: int64
      - name: endTime
        in: query
        schema:
          type: integer
          format: int64
      - name: page
        in: query
        schema:
          type: integer
          default: 1
      - name: rows
        in: query
        description: Number of rows. Default 100, max 500.
        schema:
          type: integer
          default: 100
          maximum: 500
      - name: recvWindow
        in: query
        schema:
          type: integer
      - name: timestamp
        in: query
        required: true
        schema:
          type: integer
          format: int64
      - name: signature
        in: query
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                  message:
                    type: string
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        orderNo:
                          type: string
                          description: Order number.
                        fiatCurrency:
                          type: string
                          description: Fiat currency code.
                        indicatedAmount:
                          type: string
                          description: Indicated amount.
                        amount:
                          type: string
                          description: Actual amount.
                        totalFee:
                          type: string
                          description: Total fee.
                        method:
                          type: string
                          description: Payment method.
                        status:
                          type: string
                          description: Order status.
                        createTime:
                          type: integer
                          format: int64
                          description: Order creation time.
                        updateTime:
                          type: integer
                          format: int64
                          description: Last update time.
                  total:
                    type: integer
                  success:
                    type: boolean
      security:
      - apiKey: []
        hmacSignature: []
  /sapi/v1/fiat/payments:
    get:
      operationId: getFiatPaymentsHistory
      summary: Get fiat payments history
      description: Get fiat-to-crypto and crypto-to-fiat payment history.
      tags:
      - Fiat
      parameters:
      - name: transactionType
        in: query
        required: true
        description: 0 for buy, 1 for sell.
        schema:
          type: integer
          enum:
          - 0
          - 1
      - name: beginTime
        in: query
        schema:
          type: integer
          format: int64
      - name: endTime
        in: query
        schema:
          type: integer
          format: int64
      - name: page
        in: query
        schema:
          type: integer
          default: 1
      - name: rows
        in: query
        schema:
          type: integer
          default: 100
          maximum: 500
      - name: recvWindow
        in: query
        schema:
          type: integer
      - name: timestamp
        in: query
        required: true
        schema:
          type: integer
          format: int64
      - name: signature
        in: query
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                  message:
                    type: string
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        orderNo:
                          type: string
                        sourceAmount:
                          type: string
                        fiatCurrency:
                          type: string
                        obtainAmount:
                          type: string
                        cryptoCurrency:
                          type: string
                        totalFee:
                          type: string
                        price:
                          type: string
                        status:
                          type: string
                        paymentMethod:
                          type: string
                        createTime:
                          type: integer
                          format: int64
                        updateTime:
                          type: integer
                          format: int64
                  total:
                    type: integer
                  success:
                    type: boolean
      security:
      - apiKey: []
        hmacSignature: []
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: X-MBX-APIKEY
    hmacSignature:
      type: apiKey
      in: query
      name: signature
externalDocs:
  description: Binance Fiat Documentation
  url: https://developers.binance.com/docs/fiat/general-info