Skip to main content

Pay quickstart

Fluide Pay provides digital wallets and payment transactions for your organization. Use it to move money, record ledger activity, and integrate with supported payment providers.

Prerequisites

Developer credentials and access token — Authorization.

1. Verify connectivity

curl -X GET "$FLUIDE_BASE_URL/api/v1/payments" \
  -H "Authorization: Bearer $FLUIDE_ACCESS_TOKEN" \
  -H "X-Fluide-Api-Key: $FLUIDE_API_KEY" \
  -H "X-Fluide-Client-Id: fluide-developer"

2. Explore wallets

List wallet accounts for your organization. Account types include PRIMARY, SAVINGS, and ESCROW — see the API reference for the full set.
curl -X GET "$FLUIDE_BASE_URL/api/v1/payments/wallets" \
  -H "Authorization: Bearer $FLUIDE_ACCESS_TOKEN" \
  -H "X-Fluide-Api-Key: $FLUIDE_API_KEY" \
  -H "X-Fluide-Client-Id: fluide-developer"
Wallet and transaction paths vary by integration. Use Pay API reference to find the endpoints that match your use case (transfers, provider payments, status polling).

Next steps

Pay overview

Wallet types, providers, and async settlement.

Pay API reference

Browse and try Pay endpoints.