GET
/
stacks
/
stacks
/
nodes
/
{node_id}
curl --request GET \
  --url http://localhost:3001/stacks/stacks/nodes/{node_id}
[
  {
    "already_computed_units": 123,
    "in_settle_period": true,
    "num_compute_units": 123,
    "num_total_messages": 123,
    "owner_address": "<string>",
    "price_per_one_million_compute_units": 123,
    "selected_node_id": 123,
    "stack_id": "<string>",
    "stack_small_id": 123,
    "task_small_id": 123,
    "total_hash": [
      1
    ]
  }
]

Path Parameters

node_id
integer
required

Node small ID

Query Parameters

min_fill_fraction
number

Optional minimum fill fraction (0.0 to 100.0)

Response

200
application/json
List of Stack objects matching the criteria
already_computed_units
integer
required

Number of compute units already processed

in_settle_period
boolean
required

Indicates whether the stack is currently in the settle period

num_compute_units
integer
required

Total number of compute units in this stack

num_total_messages
integer
required

Number of payload requests that were received by the node for this stack.

owner_address
string
required

Address of the owner of the stack

price_per_one_million_compute_units
integer
required

Price of the stack (likely in smallest currency unit)

selected_node_id
integer
required

Identifier of the selected node for computation

stack_id
string
required

Unique string identifier for the stack

stack_small_id
integer
required

Unique small integer identifier for the stack

task_small_id
integer
required

Small integer identifier of the associated task

total_hash
integer[]
required

Joint concatenation of Blake2b hashes of each payload and response pairs that was already processed by the node for this stack.