Skip to content

Details of a 1-hour order

GET
/order_check

Details of an /order1h order: cost, receiver address, transaction hashes, rate, address activation and the sub-user markup breakdown.

The main use is fetching the delegation hash when /order1h returned an empty hash field. Query it no earlier than a minute after the order.

You only see your own orders. A parent user sees the orders of their sub-users and additionally receives a subuser_payout object with the markup breakdown; the sub-user itself does not see that field.

Only 1-hour orders created through /order1h are returned.

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)

Parameters

Query Parameters

order_id*

Order id in 1H{hash} format.

Type
string
Required
Example"1Ha1b2c3d4e5"
Pattern
"^1H[0-9a-fA-F]+$"

Responses

Order data.

application/json
JSON
{
  
"success": true,
  
"code": 10000,
  
"order": {
  
  
"id": "1Ha1b2c3d4e5",
  
  
"cost": 2.535,
  
  
"target_address": "TQn9Y2khEsLJW1ChVWFMSMeRDow5KcbLSE",
  
  
"energy": 65000,
  
  
"duration": "1 hour",
  
  
"tx_hashes": [
  
  
  
"a1b2c3d4e5f6789012345678901234567890abcdef1234567890abcdef12345678"
  
  
],
  
  
"timestamp": "2025-12-03T15:21:34.182127",
  
  
"rate_sun": 39,
  
  
"comments": null
  
},
  
"activation": null,
  
"subuser_payout": null
}

Playground

Authorization
Variables
Key
Value

Samples

Powered by VitePress OpenAPI