Bitso website screenshot

Bitso

Bitso is one of Latin America's largest cryptocurrency exchanges and stablecoin-rail providers, serving Mexico, Argentina, Brazil, Colombia, and other LATAM markets. Bitso exposes a public REST trading API and a WebSocket feed at bitso.com/api/v3 for market data, order management, conversions, OTC / RFQ, and account operations; a Payouts & Pay-Ins API for cross-border crypto and fiat disbursements; and the Juno API for Mexican peso (MXN) rails and stablecoin programmable money. API and OpenAPI references are catalogued at docs.bitso.com.

4 APIs 0 Features
CryptocurrencyExchangeTradingStablecoinsPayoutsCross BorderLatin AmericaMexicoFintech

APIs

Bitso Trading REST API (v3)

Public and authenticated REST endpoints for Bitso's exchange - books, ticker, trades, candles, balance, order placement and cancellation, conversions, RFQ / OTC quoting and exec...

Bitso WebSocket API

Real-time streaming channels for trades, order-book diffs, and full order-book snapshots. Used by trading clients and market-data consumers that need sub-second updates.

Bitso Payouts and Pay-Ins API

Cross-border disbursement and collection API powered by stablecoin and LATAM rails. Lets businesses fund into Bitso, convert between assets and fiat, and pay out to destination ...

Juno API

Juno is Bitso's programmable-money platform for Mexican peso (MXN) rails and stablecoin operations. The API supports account creation, SPEI funding, MXNB stablecoin mint / redee...

Collections

Pricing Plans

Bitso Plans Pricing

1 plans

PLANS

Rate Limits

Bitso Rate Limits

2 limits

RATE LIMITS

FinOps

Bitso Finops

FINOPS

Event Specifications

Bitso WebSocket API

Bitso's public real-time WebSocket feed for the Bitso cryptocurrency exchange. Clients connect to a single endpoint and subscribe to one or more channels per order book (e.g. bt...

ASYNCAPI

Resources

🔗
Website
Website
🔗
Business
Business
🔗
Documentation
Documentation
🔗
OpenAPI Index
OpenAPI Index
🔗
LinkedIn
LinkedIn
👥
GitHub
GitHub
🟢
Status
Status

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Bitso Trading API
  version: '3'
request:
  auth:
    type: apikey
    key: Authorization
    value: '{{Authorization}}'
    placement: header
items:
- info:
    name: Public
    type: folder
  items:
  - info:
      name: List available trading books
      type: http
    http:
      method: GET
      url: https://bitso.com/api/v3/available_books
    docs: List available trading books
  - info:
      name: Get ticker
      type: http
    http:
      method: GET
      url: https://bitso.com/api/v3/ticker
      params:
      - name: book
        value: btc_mxn
        type: query
        description: Trading book identifier (e.g. btc_mxn).
    docs: Get ticker
  - info:
      name: Get order book
      type: http
    http:
      method: GET
      url: https://bitso.com/api/v3/order_book
      params:
      - name: book
        value: ''
        type: query
      - name: aggregate
        value: ''
        type: query
    docs: Get order book
  - info:
      name: List recent trades
      type: http
    http:
      method: GET
      url: https://bitso.com/api/v3/trades
      params:
      - name: book
        value: ''
        type: query
      - name: marker
        value: ''
        type: query
      - name: sort
        value: ''
        type: query
      - name: limit
        value: ''
        type: query
    docs: List recent trades
- info:
    name: Private
    type: folder
  items:
  - info:
      name: Get account balance
      type: http
    http:
      method: GET
      url: https://bitso.com/api/v3/balance
    docs: Get account balance
  - info:
      name: Get account status
      type: http
    http:
      method: GET
      url: https://bitso.com/api/v3/account_status
    docs: Get account status
  - info:
      name: Get customer fees
      type: http
    http:
      method: GET
      url: https://bitso.com/api/v3/fees
    docs: Get customer fees
  - info:
      name: List open orders
      type: http
    http:
      method: GET
      url: https://bitso.com/api/v3/open_orders
      params:
      - name: book
        value: ''
        type: query
    docs: List open orders
  - info:
      name: Place a new order
      type: http
    http:
      method: POST
      url: https://bitso.com/api/v3/orders
      body:
        type: json
        data: '{}'
    docs: Place a new order
  - info:
      name: Look up an order
      type: http
    http:
      method: GET
      url: https://bitso.com/api/v3/orders/:oid
      params:
      - name: oid
        value: ''
        type: path
    docs: Look up an order
  - info:
      name: Cancel an order
      type: http
    http:
      method: DELETE
      url: https://bitso.com/api/v3/orders/:oid
      params:
      - name: oid
        value: ''
        type: path
    docs: Cancel an order
  - info:
      name: List the authenticated user's trades
      type: http
    http:
      method: GET
      url: https://bitso.com/api/v3/user_trades
      params:
      - name: book
        value: ''
        type: query
      - name: marker
        value: ''
        type: query
      - name: sort
        value: ''
        type: query
      - name: limit
        value: ''
        type: query
    docs: List the authenticated user's trades
bundled: true