Skip to main content
A customer is the legal entity behind every transaction. Each one gets a dedicated wallet and has to complete identity verification before it can move money.

Prerequisites

Create a customer

Send a POST request to /customers. The required fields depend on the customer type.
Request
Response

Required fields

Provision fiat accounts

To let the customer receive payments on local rails (PIX, SPEI, ACH, SEPA, etc.), include an accounts array on creation with the currencies you want to provision. Each currency triggers a virtual account that enters verification alongside the customer.
Request
The accounts array is optional. If you omit it, the customer is provisioned with a BRL account by default and can still send and receive stablecoin on-chain through their wallet. For the full list of supported currencies and rails, see Coverage.

Testing verification statuses in sandbox

In sandbox, the last digit of taxId is a sentinel that drives the simulated verification outcome. Webhooks fire almost instantly with the matching status, so you can exercise your full flow end-to-end.

Understanding the response

The creation response includes fields you’ll use throughout the verification flow:
  • verification carries the current status (NOT_STARTED after creation), the verification level (STANDARD), and a link for the verification flow.
  • requirements lists the documents and information needed for verification, each with a status indicating whether it has been submitted.
  • transactionLimits isn’t returned by default. Call GET /customers/{id}?includeTransactionLimits=true to retrieve single, daily, and monthly limits.
The wallets array is only returned once verification reaches APPROVED. Subscribe to the customer.approved webhook or call Read a customer to retrieve wallets after approval.

Customers

Understand customer entities and verification workflows.

Identity Verification

Required data for KYC/KYB verification processes.

Transaction Limits

Understand post-verification transaction limits.

What’s next

After creating a customer, complete the verification process:

Individual Verification (KYC)

Complete identity verification for individual customers.

Business Verification (KYB)

Complete identity verification for business customers.