X114
Retour à l’aperçu de l’API

echo

POST1 crédit

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.

Endpoint

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

Corps de la requête

Envoyer en JSON dans le corps POST.

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

Corps de la réponse

JSON renvoyé en cas de succès (HTTP 200).

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

Exemple

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