Argentina
Argentina is a key market in Latin America for digital payments and financial services. With a growing user base in e-commerce and fintech, offering local payment methods in this country is essential for increasing conversion and trust.
Our platform supports various payment options that are commonly used in Argentina, including bank transfers and local fintech providers, allowing seamless transactions tailored to local user preferences.
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.
End point: /api/payment/create
{
"country": "ARG",
"origin": "api",
"amount": "5",
"email": "test@gmail.com"
}
Accepted Identification Document Typesβ
- DNI: National Identity Document
- CUIT: Unique Tax Identification Number
- CUIL: Unique Labor Identification Number
Pay Inβ
Bank Transferβ
Khipu and ITAU Debin are well-established systems for real-time transfers, commonly used for digital transactions in Argentina.
Type Transaction | Type Payment | Payment Method | Supported Providers | Logos |
---|---|---|---|---|
bankin | bank | ITAU Debin | ITAU Debin | ![]() |
Khipu | PI Khipu ARG | ![]() | ||
hipotecario | Banco Hipotecario | |||
bancociudad | Banco Ciudad | |||
ibba | Ibba Group | ![]() |
Complete Transaction - Body (Sample Request)β
End point: /api/payment/processor
{
"hash": "U2FsdGV...",
"paymentMethod" : "ibba",
"typePayment" : "bank",
"typeTransaction":"bankin",
"cuit": "12345678910",
"merchantId": "3213214...",
"email": "test@gmail.com",
"urlWebhook": "https://www.notification.com/success",
"urlRejected": "https://www.notification.com/error"
}
Processed Transaction - Response (Sample response)β
{
"status": {
"code": 202,
"message": "success",
"kind": "unknown"
},
"data": {
"Reference": "xxxxxx",
"bank": "Banco Hipotecario COBRO SUR",
"cuid": "33-xxxxxxxxx-9",
"cuenta_corriente_en_pesos": "xxxxxxxxxxxxx",
"cbu": "xxxxxxxxxxxxxxxxxxxxx",
"alias": "xxxxxx.xxxxxx.xxxxxx",
"isRedirect": false,
"urlWebhook": "www.88pay.io",
"emailOrder": "email@gmail.com",
"payment": {
"id": 1004,
"uuid": "30d545a5-xxxx-xxxx-xxxx-fde7e8dcf8db",
"merchant": "test.88pay@gmail.com",
"merchantUuid": "d6d29ad2-xxxx-xxxx-xxxx-55d518578434",
"country": "ARG",
"origin": "api",
"status": "processing",
"createdAt": "2025-06-04T06:33:30.000Z",
"amount": 50,
"rate": null,
"rateAmount": null,
"total": null,
"rejectionReason": null,
"rateProviderAmount": null,
"sandbox": 1,
"currency": "",
"paymentMethod": "hipotecario",
"typeMethod": "bank"
},
"checkout": "https://transactions.88pay.io/?m=d6d29ad2-xxxx-xxxx-xxxx-55d518578434&amount=50&type=bank&reference=XXXXXX&method=hipotecario¤cy=ARS&u=&cid=jvadu7cASfqMSvbVS2gwnTmhWGEFfZK7Av2CqYViOY=&l=&inst_id=942c005d-xxxx-xxxx-xxxx-991ddf1b4db4"
}
}
Checkoutβ
In the body of the response there is a property with the name checkout
which will be the URL that will lead to the payment instructions sheet, where it will indicate how to proceed with the payment.

The user must continue with the process according to the instructions given in the instruction sheet.
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.
Pay Outβ
Bank - Bank outβ
Complete transaction - Body (Sample Request)β
End point: /api/payment/processor
{
"hash": "U2FsdGVkX1%2FYy%2F0....",
"paymentMethod" : "ibba",
"typePayment" : "bank",
"typeTransaction":"bankout",
"description" : "Orden de prueba",
"customer": {
"document": "123456789",
"name": "pablo",
"email": "email"
},
"additionalInformation": {
"bankAccountNumber": "123456789101112",
"bankAccountType": "Ahorros"
}
}
Processed Transaction - Response (Sample response)β
202 Acceptedβ
{
"status": {
"code": 202,
"message": "success",
"kind": "unknown"
},
"data": {
"Reference": "xxxxxx",
"status": "processing",
"message": "La operaciΓ³n de retiro estΓ‘ siendo procesada",
"beneficiary": {
"document": "123456789",
"name": "pablo",
"email": "email"
},
"bankAccount": {
"accountNumber": "123456789101112",
"accountType": "Ahorros",
"bank": "ibba"
},
"transaction": {
"amount": "1000",
"isCheckout": true,
"urlWebhook": "www.88pay.io"
},
"payment": {
"id": 1121,
"uuid": "e5b237b3-xxxx-xxxx-xxxx-69853f321eb7",
"merchant": "test.88pay@gmail.com",
"merchantUuid": "d6d29ad2-xxxx-xxxx-xxxx-55d518578434",
"country": "ARG",
"origin": "api",
"status": "processing",
"createdAt": "2025-06-27T20:56:13.000Z",
"amount": 1000,
"rate": null,
"rateAmount": null,
"total": null,
"rejectionReason": null,
"rateProviderAmount": null,
"sandbox": 1,
"currency": "",
"paymentMethod": "ibba",
"typeMethod": "bank"
}
}
}
Limitsβ
Pay Inβ
Minimum | Maximum | Min. Daily Transactions | Max. Daily Transactions |
---|---|---|---|
1 USD / 1.500 ARS | 3.000 USD / 4.050.000 ARS | No limits apply | No limits apply |
Pay Outβ
Minimum | Maximum | Min. Daily Transactions | Max. Daily Transactions |
---|---|---|---|
10 USD / 15.000 ARS | 3.000 USD / 4.050.000 ARS | No limits apply | No limits apply |