Skip to main content
GET
/
stats
/
api
/
v1
/
status
Get Exchange Status
curl --request GET \
  --url https://api.example.com/stats/api/v1/status
{
  "value": {
    "latestOnChainCheckpoint": {
      "latestOnChainCheckpoint": 9920,
      "latestCheckpointTransactionLink": "https://goerli.etherscan.io/tx/0x05f4e74a64b2626af2edc555249484781732508f2096aed0aa52be2d09a51a73"
    },
    "activeAddresses": 123,
    "currentEpoch": "<string>"
  },
  "success": true,
  "timestamp": 123
}

Response

Exchange status data

Successful response for the Exchange Status API

value
object
required

The value of the response.

Example:
{
  "currentEpoch": "9958",
  "latestOnChainCheckpoint": {
    "latestOnChainCheckpoint": 9920,
    "latestCheckpointTransactionLink": "https://goerli.etherscan.io/tx/0x05f4e74a64b2626af2edc555249484781732508f2096aed0aa52be2d09a51a73"
  },
  "activeAddresses": "20"
}
success
boolean
required

Whether the request was successful

timestamp
number
required

The timestamp of the response

Example:

1673031089

Last modified on April 27, 2026