> For the complete documentation index, see [llms.txt](https://wiki.yrsproject.ru/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wiki.yrsproject.ru/documentation/faq.md).

# Введение

Добро пожаловать в наше API для работы с данными серверов и сервисов! Этот инструмент предоставляет разработчикам возможность легко и быстро интегрироваться с различными сервисами для получения, обработки и анализа серверной информации или информации о игроках. Наш API поддерживает различные протоколы и форматы данных, обеспечивая гибкость и удобство в работе. Все запросы на публичное API осуществляются методом GET.

### API endpoint

```url
https://api.yrsproject.ru
```

### API request

{% tabs %}
{% tab title="Успешный запрос" %}

```json
{
  "status": "success",
  "response": {
    какой-то ответ от метода API
  }
}
```

При успешном запросе HTTP код 200
{% endtab %}

{% tab title="Неудачный запрос" %}

```json
{
  "status": "error",
  "message": "Сообщение, указывающее в чём проблема"
}
```

При неудачном запросе HTTP код 400
{% endtab %}
{% endtabs %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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://wiki.yrsproject.ru/documentation/faq.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.
