For the complete documentation index, see llms.txt. This page is also available as Markdown.

PUBLISH Ping

REQUEST

<tr>
  <td>
    * \*op\*\* <span className="ws-data-type ws-small-font">string</span>  <span className="ws-required-tag ws-small-font">required</span>
      Operation code: `ping`
  </td>
</tr>

* \*id\*\* integer Request ID, an arbitrary integer to link requests with responses. Eg. `1`

Example
{
  "id": 1,
  "op": "ping"
}

RESPONSE

<tr>
  <td>
    <span className="ws-small-font">data.</span>**success** <span className="ws-data-type ws-small-font">boolean</span> <span className="ws-required-tag ws-small-font">required</span>
    True if ping is successful.
  </td>
</tr>

<tr>
  <td>
    <span className="ws-small-font">data.</span>**timestamp** <span className="ws-data-type ws-small-font">string</span> <span className="ws-required-tag ws-small-font">required</span>
    Timestamp in UNIX timestamp in nanoseconds. Eg. `1680249600000000000`
  </td>
</tr>

* \*id\*\* integer Response ID, an arbitrary integer to link requests with responses. Eg. `1`

Example

Last updated