v1
latestOpenAPI 3.0.02026-07-2422987517.5 KBBank recipient
Parse recipient from clipboard
Extracts structured bank-recipient fields from a free-text blob (e.g. the typical "datos de transferencia" a payee pastes from WhatsApp or email) using an AI parser. Returns the best-effort recipient fields; any field the parser could not confidently extract is returned as null. The result is a suggestion to prefill a recipient form — it does not create a recipient.
This endpoint does not require a company scope. It is rate-limited to 30 requests per minute per credential.
post/v1/banking/bank_recipients/parse
Request body
Example request
{
"text": "Juan Pérez, RUT 11.111.111-K, Banco de Chile, cuenta corriente 1010101010, juan@example.com"
}Response
Best-effort parsed recipient fields (unresolved fields are null).
Example response
{
"name": "Juan Pérez",
"rut": "11111111K",
"bank_id": "cl_banco_de_chile",
"account_number": "1010101010",
"account_type": "corriente",
"email": "juan@example.com"
}