Saltar al contenido principal

Deposit instructions

GET /v2/deposit-instructions

List fiat deposit instructions

Where to send a BANK TRANSFER to fund this account in CLP. The fiat counterpart of GET /v2/deposit-addresses, which covers crypto.

The transfer must come from a bank account in your own name and RUT. Skipo matches an incoming transfer to an account by the originator RUT the bank reports — there is no reference code, no memo and no per-customer account number. A transfer sent from anyone else's account cannot be matched and is NOT credited, and recovering it is a manual support case. Check the RUT Skipo holds for you with GET /v2/account (nationalId).

Skipo publishes more than one account. They are interchangeable — a deposit into any of them credits the same balance. Prefer the one at your own bank: a same-bank transfer in Chile settles faster and costs less than an interbank one.

CLP only. There is no USD bank account, so this never returns one; crypto funding is GET /v2/deposit-addresses. Amounts are not here — minimumDeposit is on GET /v2/assets.

Respuestas

CódigoDescripciónCuerpo
200Éxito.object
401application/problem+json (RFC 9457) — branch on code, not on the status: unauthorized (not retryable), key_expired (not retryable), key_revoked (not retryable).
403application/problem+json (RFC 9457) — branch on code, not on the status: insufficient_scope (not retryable), ip_not_allowed (not retryable), api_access_disabled (not retryable).
429application/problem+json (RFC 9457) — branch on code, not on the status: rate_limited (retryable).
500application/problem+json (RFC 9457) — branch on code, not on the status: internal_error (retryable).
502application/problem+json (RFC 9457) — branch on code, not on the status: downstream_unavailable (retryable).
503application/problem+json (RFC 9457) — branch on code, not on the status: maintenance (retryable).

Esquemas

BankDepositInstructionResource

CampoTipoDescripción
assetSymbolstringCurrency this account accepts. CLP only today. Ej.: CLP.
accountHolderstring | nullAccount holder name, exactly as the receiving bank has it. Ej.: Skipo Chile SpA.
accountHolderNationalIdstring | nullThe RUT of the account HOLDER — Skipo's, not yours. It identifies the destination; it is not the RUT the transfer has to come from. See mustMatchSenderNationalId. Ej.: 77.777.777-7.
bankNamestring | nullEj.: Banco de Chile.
accountTypestring | nullEj.: Cuenta Corriente.
accountNumberstring | nullEj.: 00-123-45678-90.
accountEmailstring | nullEmail some Chilean banks require on the transfer form. Ej.: deposits@skipo.com.
mustMatchSenderNationalIdbooleanAlways true, and the single most important field on this resource. The transfer MUST come from a bank account held in YOUR OWN name, under the same nationalId that GET /v2/account reports (in Chile, your RUT). Skipo matches an incoming transfer to an account by the originator RUT the bank reports, and there is no reference code, no memo and no per-customer account number to fall back on. ⚠️ A transfer from a third party — a company account for a personal balance, a partner, a payment processor, a friend — CANNOT be matched and is NOT credited. Recovering it is a manual support case, not an automatic return. This is the fiat equivalent of omitting a destination tag on a crypto deposit. Ej.: true.

Problem

CampoTipoDescripción
typestringStable problem-type URI. Resolves to docs for this error. Ej.: https://docs.skipo.com/errors/rate_limited.
titlestringShort, human-readable summary (stable, English). Ej.: Rate limit exceeded.
statusnumberHTTP status code. Ej.: 429.
codestringStable machine-readable error code (equals the last path segment of type). Ej.: rate_limited.
retryablebooleanWhether retrying the identical request may succeed. Ej.: true.
detail (opcional)stringHuman-readable, possibly localized detail.
instance (opcional)stringThe request path that produced the error.
traceId (opcional)stringTrace id — joins BigQuery api_request and Cloud Logging.

Volver a la referencia de endpoints. Ver también: Paginación · Errores · Ids y correlación.