Chile
Chile is a fast-growing digital payments market in South America, known for its high banking penetration and widespread use of both traditional bank transfers and cash-based networks. With a stable economy and increasing e-commerce adoption, Chilean consumers expect secure, convenient, and locally familiar payment options.
Our platform integrates seamlessly with leading Chilean banks and retail cash-in partners, enabling you to offer:
- Real-time bank transfers through major institutions like Banco de Chile, Scotiabank, Itaú, BancoEstado, Santander and TBanc.
- Cash payments via extensive networks such as Caja Vecina, ServiEstado, Acuenta and Express Líder.
By supporting these methods, you can maximize conversion and trust among Chilean users while ensuring compliance with all local requirements.
Please note that the process is always the same, before processing the transaction you must create the order, here is an example of the body for this country.
{
"country": "CHL",
"origin": "api",
"amount": "1500",
"email": "test@gmail.com"
}
Pay In
Bank Transfer
Type Transaction | Type Payment | Payment Method | Supported Providers | Logos |
---|---|---|---|---|
bankin | bank | banco-de-chile | Banco de Chile | ![]() |
scotiabank | Scotiabank | ![]() | ||
itau | Itau | ![]() | ||
banco-estado | Banco Estado | ![]() | ||
banco-santander | Banco Santander | ![]() | ||
tbanc | TBanc |
Complete transaction - Body (Sample Request)
{
"hash": "U2FsdGVkX19oU6%....",
"paymentMethod" : "scotiabank",
"typePayment" : "bank",
"typeTransaction":"bankin",
"description" : "Test order",
"customer": {
"typeDocument":"CC",
"document" : "1234567890",
"name": "Juan",
"lastName":"Pérez",
"phoneNumber":"3133133131"
},
"address": {
"line1": "123 First Street",
"city": "Santiago",
"postalCode": "32830"
},
}
Cash
Type Transaction | Type Payment | Payment Method | Supported Providers | Logos |
---|---|---|---|---|
cashin | cash | caja-vecina | Caja Vecina | ![]() |
serviestado | ServiEstado | ![]() | ||
acuenta | Acuenta | ![]() | ||
express-lider | Express Lider |
Complete transaction - Body (Sample Request)
{
"hash": "U2FsdGVkX19oU6%....",
"paymentMethod" : "scotiabank",
"typePayment" : "cash",
"typeTransaction":"cashin",
"description" : "Test order",
"customer": {
"typeDocument":"CC",
"document" : "1234567890",
"name": "Joao",
"lastName":"Junior",
"phoneNumber":"3133133131"
},
"address": {
"line1": "123 First Street",
"city": "Santiago",
"postalCode": "32830"
},
}
Wallet
Paypal
This endpoint allows you to initiate a payment process with PayPal through our API.
We will generate a checkout URL where the customer can be redirected to securely complete the payment process.
Complete transaction - Body (Sample Request)
{
"hash": "U2FsdGV...",
"paymentMethod": "paypal",
"typePayment": "wallet",
"typeTransaction": "walletin",
"merchantId": "564153131",
"urlReturn": "https://google.com",
"urlRejected": "https://youtube.com",
"urlWebhook": "https://webhook/ok"
}
Aditional Notes
- The merchant must redirect the user to the
payer-action
URL immediately after receiving the response.- Do not rely solely on user redirection to confirm the payment; always validate the final payment status using the webhook.