# Exchange status

> HyperCore private-preview documentation.

> For the complete documentation index, see [llms.txt](/docs/llms.txt).

<Callout intent="info">
  This API is in private preview. Target October 2026; timing is subject to change.
</Callout>


# Exchange status

Returns the node's exchange-wide status payload.

<Note>

  **Available now.** This read is served at the interim endpoint today.

</Note>

## Request

`POST /{apiKey}/info`

| Parameter | Type | Required | Description |
| --- | --- | --- |
| `type` | string | Yes | Selects `exchangeStatus`. |

```json
{
  "type": "exchangeStatus"
}
```

## Response fields

| Field | Type | Description |
| --- | --- | --- |
| `specialStatuses` | null | No special status was present in the capture; populated semantics are not yet confirmed. |
| `time` | integer | Returned timestamp field; its semantics are not yet confirmed. |

## Response example

```json
{
  "specialStatuses": null,
  "time": 1788312923270
}
```