# 1. Payment

The payment initiation service supports two different mechanisms. Although these mechanisms operate on the same principle, they have different architectures designed to handle varying volumes of transactions.

The **Storm 🍃 model** supports up to 500 transactions. When a transaction order is sent, it creates the payments and returns relevant details such as payment IDs and UniqueCodes in the API response before processing, making it easier to track them.

The **Tsunami 🌊 model** supports up to 50,000 transactions. When a transaction order is sent, the entire request is handed over to Paywall’s queues, and only a `BulkPayment` record is created, returning the `BulkPaymentId` as the response. This ensures that the client (you) receives a fast response from Paywall APIs. All transactions are then processed using special algorithms and flow principles, and the result of the batch operation is sent to the `CallbackUrl` provided in the request.

The **Tsunami 🌊 model** is designed to handle high-volume data processing. For this reason, we strongly recommend using <mark style="color:green;">`GZip`</mark> or <mark style="color:green;">`Brotli`</mark> compression in your requests. This ensures that the data transmitted over the network is compressed, potentially reducing latency by up to **90%**.


---

# 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://developer.paywall.one/payment-orchestration-integration-document/payment-service/18.-batch-processing-method/1.-payment.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.
