Allowed PIX keys for withdrawals

Types currently enabled in POST /v1/withdraw

TypeExpected formatExampleStatus
cpf11 digits, numbers only12345678901✅ Available
cnpj14 digits, numbers only12345678000199✅ Available
emailRFC 5322recipient@email.com⏳ Coming soon
phoneE.164 without +, starting with 555511999998888⏳ Coming soon
evpUUID returned by the recipient’s PSP8f3a2c0e-8b1d-4d6f-9a25-1e6f3a2c0e8b⏳ Coming soon
Withdrawals restricted to the account holder's key

At the moment, you may only withdraw to a cpf or cnpj PIX key that belongs to the INFI account holder:

  • pixKeyType: "cpf" → the key must match the CPF of the registered responsible party.
  • pixKeyType: "cnpj" → the key must match the CNPJ of the registered company.

email, phone and evp return 400 — they will be enabled once the API starts collecting the recipient’s name and document.

Unknown type:

HTTP/1.1 400
{ "error": "pixKeyType deve ser: cpf, cnpj, email, phone ou evp." }

Type temporarily blocked:

HTTP/1.1 400
{ "error": "Saque disponível apenas para chaves CPF/CNPJ do titular da conta. Outros tipos em breve." }

CPF/CNPJ key that does not belong to the account holder:

HTTP/1.1 403
{ "error": "Saque com chave CNPJ só permitido para o CNPJ cadastrado da empresa." }
HTTP/1.1 403
{ "error": "Saque com chave CPF só permitido para o CPF do responsável cadastrado." }