Transfer to accounts at another institution (Pix / TED)

Transfer to an account of another institution

Provide the bankAccount fields to carry out the transfer to a bank account.

If made via Pix, the transfer is executed instantly or on the scheduled date. For TED, the transfer remains pending until bank processing, which may occur on the same day or the next business day depending on the time of the request.

POST /v3/transfers
Check out the complete reference for this endpoint

{
  "value": 1000.00,
  "bankAccount": {
    "bank": {
      "code": "237"
    },
    "ownerName": "Marcelo Almeida",
    "cpfCnpj": "52233424611",
    "agency": "1263",
    "account": "9999991",
    "accountDigit": "1",
    "bankAccountType": "CHECKING_ACCOUNT"
  },
}

📘

If operationType is not informed and the bank account belongs to a bank or payment institution participating in Pix, the transfer is made via Pix; otherwise, via TED.

Transfer to a Pix key

Provide the pixAddressKey and pixAddressKeyType fields to make a transfer to a Pix key.

POST /v3/transfers
Check out the complete reference for this endpoint

{
  "value": 1000.00,
  "pixAddressKey": "09493012301",
  "pixAddressKeyType": "CPF",
  "scheduleDate": null,
  "description": "Barbecue paid via Pix with key"
}

Requests a new transfer to the informed Pix key. The transfer can be made instantly or scheduled (by informing the scheduleDate field).

Phone-type keys must contain 11 digits, including the state area code. Ex: 4799999999, CPF or CNPJ keys should be informed without hyphen/punctuation.