# Welcome

Welcome to the Rumbapay Payments API!

Our API enables you to accept and process payments across multiple methods with global coverage. This documentation will guide you through:

1. **Getting Started**
   * [Authentication](/payments/getting-started/authentication.md)
   * [Signature](/payments/getting-started/signature.md)
2. **Payment Methods**
   * **Argentina – Bank Transfer**
     * [Payment](/payments/payment-methods/argentina/bank-transfer-argentina/payment.md)
     * [Payout](/payments/payment-methods/argentina/bank-transfer-argentina/payout.md)
   * **Brazil – PIX**
     * [Payment](/payments/payment-methods/brazil/pix/payment.md)
     * [Payout](/payments/payment-methods/brazil/pix/payout.md)
   * **Bank transfer Mexico**
     * [Payment](/payments/mexico/bank-transfer-mexico/payment.md)
     * [Payout](/payments/mexico/bank-transfer-mexico/payout.md)
   * **Cash Mexico**
     * [Payment](/payments/mexico/cash/payment.md)
   * **Cash Chile**
     * [Payment](/payments/payment-methods/chile/cash.md)

#### Authentication & Security

All API requests must include an `access-token` header generated via HMACSHA256 using your merchant key and login, and a `signature` header on every request and response to ensure payload integrity.

#### Payment & Payout Workflows

* **Argentina (bank\_transfer\_argentina)**
  * **Payment**: Supports both server-to-server (H2H) and hosted payment page (HPP) flows, determined by `challenge.challenge_type` in the response.
  * **Payout**: Use the Payout API (`/v1/payout`) to send funds directly to customer bank accounts.
* **Brazil (PIX)**
  * **Payment**: Returns either a QR code string (`challenge.challenge_qr.code`) for in-app scanning or a redirect URL (`challenge.challenge_redirect.url`).
  * **Payout**: Send funds instantly to a PIX account using the `payout` endpoint.
* **Chile (cash)**
  * **Payment**: Supports hosted payment page (HPP) flow
* **Mexico (cash,  bank\_transfer\_mexico)**
  * **Payment**: Supports hosted payment page (HPP) flow for methods `cach`and `bank_transfer_mexico`&#x20;
  * **Payout**: Use the Payout API (`/v1/payout`) to send funds directly to customer bank accounts

#### Next Steps

1. Obtain your merchant **login** and **key** from the Rumbapay dashboard.
2. Review the **Authentication** and **Signature** guides to secure your integration.
3. Choose your payment method and follow the detailed flow.
4. Monitor transactions via the **Check Payment Status** endpoint and handle callbacks to stay updated on payment outcomes.

Let's get started 🚀


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://rumbapay.gitbook.io/payments/readme.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
