Вернуться к обзору API

echo

POST1 кредит

A reference endpoint that returns the JSON body you sent, plus a server-side timestamp. Useful for testing your client setup, latency, and credit accounting before integrating the production endpoints.

Эндпоинт

POST https://x114.org/api/v1/echo

Тело запроса

Отправлять как JSON в теле POST.

NameTypeRequiredDescription
anyobject | array | string | number | boolean | nulloptionalAny JSON value. The server returns it verbatim.

Тело ответа

JSON возвращается при успехе (HTTP 200).

NameTypeRequiredDescription
okbooleanrequiredAlways true on success.
receivedAtstring (ISO 8601)requiredServer timestamp when the request was received.
bodyunknownrequiredThe original JSON body you sent.

Пример

curl -X POST https://x114.org/api/v1/echo \
  -H "Authorization: Bearer sk_..." \
  -H "Content-Type: application/json" \
  -d '{"hello":"world"}'