v1

latestOpenAPI 3.0.02026-07-2422987517.5 KB
Bank 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

textstring required

The raw pasted text to parse into recipient fields.

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).

namestring nullable
aliasstring nullable
rutstring nullable

Normalized RUT without dots or hyphens.

bank_idstring nullable
account_numberstring nullable
account_type'corriente' | 'vista' | 'ahorro' nullable
emailstring nullable

Example response

{
  "name": "Juan Pérez",
  "rut": "11111111K",
  "bank_id": "cl_banco_de_chile",
  "account_number": "1010101010",
  "account_type": "corriente",
  "email": "juan@example.com"
}