exchangeStatus

Returns the current status of the exchange.

Field
Type
Description

type

string

Must be "exchangeStatus"

Request

curl -X POST https://api.hydromancer.xyz/info \
  -H "Authorization: Bearer $HYDROMANCER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "type": "exchangeStatus"
  }'

Response Fields

Field
Type
Description

specialStatuses

object?

Special status flags, null under normal operation

time

int

Current exchange timestamp (ms)

Response
{
  "specialStatuses": null,
  "time": 1773647974412
}

Last updated