<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xmlns:tt="http://teletype.in/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:media="http://search.yahoo.com/mrss/"><channel><title>@dyxless_channel</title><generator>teletype.in</generator><description><![CDATA[@dyxless_channel]]></description><image><url>https://img3.teletype.in/files/27/0d/270d6732-2873-4edd-b86a-52e568e876bc.png</url><title>@dyxless_channel</title><link>https://teletype.in/@dyxless_channel</link></image><link>https://teletype.in/@dyxless_channel?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=dyxless_channel</link><atom:link rel="self" type="application/rss+xml" href="https://teletype.in/rss/dyxless_channel?offset=0"></atom:link><atom:link rel="next" type="application/rss+xml" href="https://teletype.in/rss/dyxless_channel?offset=10"></atom:link><atom:link rel="search" type="application/opensearchdescription+xml" title="Teletype" href="https://teletype.in/opensearch.xml"></atom:link><pubDate>Sat, 06 Jun 2026 04:03:12 GMT</pubDate><lastBuildDate>Sat, 06 Jun 2026 04:03:12 GMT</lastBuildDate><item><guid isPermaLink="true">https://teletype.in/@dyxless_channel/GUIOrwZAdB4</guid><link>https://teletype.in/@dyxless_channel/GUIOrwZAdB4?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=dyxless_channel</link><comments>https://teletype.in/@dyxless_channel/GUIOrwZAdB4?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=dyxless_channel#comments</comments><dc:creator>dyxless_channel</dc:creator><title>Dyxless API</title><pubDate>Thu, 27 Feb 2025 02:19:53 GMT</pubDate><description><![CDATA[Стоимость одного запроса составляет 1.5₽.]]></description><content:encoded><![CDATA[
  <p id="Tcl2">Стоимость одного запроса составляет 1.5₽.</p>
  <p id="nFBN">Все запросы должны отсылаться на домен <u>api-dyxless.cfd/{method}</u></p>
  <p id="4F2K">Параметры принимаются в теле запроса.</p>
  <h2 id="CYB1"><strong>Список методов:</strong></h2>
  <p id="zifl">Отправка запросов идет методом POST. В ответ вы получаете JSON-объект, в котором основные поля:</p>
  <ul id="Cl0V">
    <li id="CxLa"><strong>status </strong>(Boolean) | Статус ответа, <em>true </em>или <em>false.</em></li>
    <li id="b0kE"><strong>counts </strong>(Integer) | Кол-во полученных записей.</li>
    <li id="pp6W"><strong>data </strong>(Array) | Массив с найденными записями в базе.</li>
  </ul>
  <h3 id="X6Uj"><strong>/query</strong></h3>
  <p id="7w2d">Выполняет поиск по всем базам, в ответ возвращает кол-во найденных записей, и массив с полученными записями в формате JSON.</p>
  <p id="viwS">Принимает параметры:</p>
  <ul id="6veP">
    <li id="e074"><strong>token </strong>(String) | Токен из бота</li>
    <li id="kxxu"><strong>query </strong>(String) | Поисковой запрос</li>
  </ul>
  <p id="ASKV">Пример запроса:</p>
  <pre id="1IqI" data-lang="javascript">const axios = require(&#x27;axios&#x27;);

let data = JSON.stringify({
  &quot;query&quot;: &quot;79877777777&quot;,
  &quot;token&quot;: &quot;**********-****-****-****-**********&quot;
});

let config = {
  method: &#x27;post&#x27;,
  maxBodyLength: Infinity,
  url: &#x27;https://api-dyxless.cfd/query&#x27;,
  headers: { 
    &#x27;Content-Type&#x27;: &#x27;application/json&#x27;
  },
  data : data
};

axios.request(config)
.then((response) =&gt; {
  console.log(JSON.stringify(response.data));
})
.catch((error) =&gt; {
  console.log(error);
});</pre>
  <p id="BO3G">Пример успешного ответа:</p>
  <pre data-lang="javascript" id="PMkV">{
    &quot;status&quot;: true,
    &quot;counts&quot;: 2
    &quot;data&quot;: [...найденные записи]
}</pre>

]]></content:encoded></item></channel></rss>