API v2.0

Cashier API Documentation

Integrate payments into your application with our simple and powerful API. Accept PIX, credit cards, and more payment methods in Brazil.

Base URL

https://cashier.flowpayment.net

Everything you need to accept payments

Quick Example

Create a Checkout Session
curl -X POST https://cashier.flowpayment.net/api/v1/checkout \
  -H "X-API-Key: sk_live_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "amount": 100.00,
    "currency": "BRL",
    "success_url": "https://yoursite.com/success",
    "cancel_url": "https://yoursite.com/cancel"
  }'