Get Node List
POST/node/list
Get a list of the nodes. Nodes are ordered based on date of creation. You can change order by specifying order
parameter.
Maximum 1000 nodes can be fecthed in one request
Request
- application/json
Body
limit integer
Default value: 1000
Specify how many nodes can be listed. Defaults to 1000 Nodes
offset integer
Offset to the next subset of node list
order string
Possible values: [asc
, desc
]
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
success boolean
error string
errorcode integer
currentCount integer
totalCount integer
nodes string[]
offset integer
{
"success": true,
"error": "string",
"errorcode": 0,
"currentCount": 0,
"totalCount": 0,
"nodes": [
"string"
],
"offset": 0
}
Loading...