# Перевод между пользователями

Этот endpoint позволяет перевести средства между пользователями PaySync без комиссии, используя API-ключ отправителя.

**URL для запроса:**

`GET https://paysync.bot/api/transfer`

**Параметры запроса:**

* `api_key` — API-ключ пользователя, который отправляет средства.
* `amount` — сумма в USDT для перевода.
* `client_id` — ID пользователя, который получит средства.

**Пример cURL запроса:**

```http
curl -X GET "https://paysync.bot/api/transfer?api_key=ваш_api_key&amount=100&client_id=получатель_id" -H "Accept: application/json"
```

**Пример ответа (200 OK):**

```json
{
    "success": "Transfer completed successfully",
    "amount": "100",
    "to": "client_id"
}
```

**Пример ответа (400 Bad Request):**

```json
{
    "error": "Invalid api_key or client_id"
}
```

**Примечания:**

* Убедитесь, что сумма и идентификаторы введены корректно.
* Переводы осуществляются без комиссии и только между авторизованными пользователями.


---

# 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://docs.paysync.bot/obshee/perevod-mezhdu-polzovatelyami.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.
