echo
POST1 krediA 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.
Uç nokta
POST https://x114.org/api/v1/echoİstek gövdesi
POST gövdesinde JSON olarak gönderin.
| Name | Type | Required | Description |
|---|---|---|---|
| any | object | array | string | number | boolean | null | optional | Any JSON value. The server returns it verbatim. |
Yanıt gövdesi
Başarı durumunda JSON döner (HTTP 200).
| Name | Type | Required | Description |
|---|---|---|---|
| ok | boolean | required | Always true on success. |
| receivedAt | string (ISO 8601) | required | Server timestamp when the request was received. |
| body | unknown | required | The original JSON body you sent. |
Örnek
curl -X POST https://x114.org/api/v1/echo \
-H "Authorization: Bearer sk_..." \
-H "Content-Type: application/json" \
-d '{"hello":"world"}'