Skip to main content

Welcome to Bipa Infra

Bipa Infra provides a complete crypto infrastructure API for Brazilian businesses. Integrate Bitcoin, stablecoins, and Pix payments into your product in weeks, not months.

What you can build

Pix Payments

Accept and send instant Pix payments through our Payment Institution infrastructure.

Crypto Trading

Enable 24/7 BTC and USDT trading with smart order routing for best execution.

Lightning Network

Process instant Bitcoin payments with minimal fees via Lightning.

On-chain Transfers

Support USDT deposits and withdrawals across multiple networks.

Why Bipa Infra

R$4 billion+ processed and 300,000+ users served since 2021. Our infrastructure powers some of Brazil’s largest crypto applications.
We operate as a licensed VASP and Payment Institution with indirect Pix participation. Your compliance burden is minimized.
Our engine queries multiple exchange order books simultaneously to find the best price for every trade.
Multi-signature wallets powered by Fireblocks ensure your customers’ assets are secured to institutional standards.

Base URL

All API requests are made to:
https://api.bipa.tech/v1

Quick example

Create a customer and execute a BRL to USDT trade:
# Create a customer
curl -X POST https://api.bipa.tech/v1/customers \
  -H "Authorization: Bearer bipa_live_sk_..." \
  -H "Content-Type: application/json" \
  -d '{
    "type": "individual",
    "document": {"type": "cpf", "number": "12345678900"},
    "name": "João Silva",
    "email": "[email protected]"
  }'

# Get a quote
curl "https://api.bipa.tech/v1/quotes?from=BRL&to=USDT&amount_cents=100000" \
  -H "Authorization: Bearer bipa_live_sk_..."

# Execute the trade
curl -X POST https://api.bipa.tech/v1/quotes/quote_abc123/execute \
  -H "Authorization: Bearer bipa_live_sk_..." \
  -H "Content-Type: application/json" \
  -d '{"customer_id": "cus_a1b2c3d4e5f6"}'

Next steps