Skip to content

Status of all Host Mode addresses

POST
/time/status

State of every address of the account plus a summary and order statistics.

If page and page_size are given, the response is paginated and gains a pagination object. Without them every address is returned (up to 1000), sorted by creation time, newest first.

The three cycle counters mean different things: cycles_completed counts only since the address was last started, cycles_total_lifetime counts its whole history, and current_cycle_no is the position of the current delegation. They are expected to differ — for one address you may see 83, 115 and 5 at the same time.

Authorizations

ApiKeyAuth

API key from the dashboard. Some Host Mode endpoints also accept the key as an api_key field in the request body — this is stated in the schema of the particular operation.

Type
API Key (header: X-API-KEY)

Request Body

application/json
JSON
{
  
"api_key": "string",
  
"page": 0,
  
"page_size": 0
}

Responses

The API key is blocked (1005).

application/json
JSON
{
  
"code": 0,
  
"msg": "string",
  
"data": {
  
  
"summary": {
  
  
  
"total_addresses": 0,
  
  
  
"active_addresses": 0,
  
  
  
"infinity_mode_count": 0,
  
  
  
"total_cycles_ordered": 0,
  
  
  
"total_open_orders": 0
  
  
},
  
  
"order_statistics": {
  
  
  
"total_orders": 0,
  
  
  
"open_orders": 0,
  
  
  
"closed_orders": 0,
  
  
  
"total_cycles_in_open_orders": 0,
  
  
  
"total_delegations": 0,
  
  
  
"total_amount_spent": 0
  
  
},
  
  
"addresses": [
  
  
  
{
  
  
  
  
"address": "TQn9Y2khEsLJW1ChVWFMSMeRDow5KcbLSE",
  
  
  
  
"status": "string",
  
  
  
  
"mode": "string",
  
  
  
  
"cycles_ordered": 0,
  
  
  
  
"cycle_set": 0,
  
  
  
  
"cycles_completed": 0,
  
  
  
  
"cycles_remaining": 0,
  
  
  
  
"cycles_total_lifetime": 0,
  
  
  
  
"current_cycle_no": 0,
  
  
  
  
"open_orders": 0,
  
  
  
  
"total_spent": 0,
  
  
  
  
"bandwidth_delegated": true,
  
  
  
  
"created_at": "string",
  
  
  
  
"updated_at": "string"
  
  
  
}
  
  
],
  
  
"pagination": {
  
  
  
"page": 0,
  
  
  
"page_size": 0,
  
  
  
"total_items": 0,
  
  
  
"total_pages": 0,
  
  
  
"has_next": true,
  
  
  
"has_prev": true
  
  
},
  
  
"timestamp": "string"
  
}
}

Playground

Authorization
Body

Samples

Powered by VitePress OpenAPI