API Documentation
Integration guide for querying the Nodus - Zcash Light API monitor.
VERSION 1.0
POST
Get Node List
/api/nodes
Retrieves a filtered and sorted list of Zcash Light nodes. This endpoint allows for flexible querying based on uptime status, latency measurements, and custom ordering.
Request Parameters
| Parameter | Type | Description |
|---|---|---|
| chain | String (Enum) |
Chain type
Default:
All (if not provided)Example:
main
test
|
| count | Integer |
Number of nodes to retrieve in the response.
Default:
All (if not provided)Example:
10 |
| include_offline | Boolean |
Whether to include nodes currently marked as offline.
Default:
falseExample:
true |
| order_uptime | String (Enum) |
Sorting the result set by uptime.
Default:
-Example:
24h
7d
30d
|
| order_latency | Boolean |
Sorting the result set by answer latency.
Default:
falseExample:
true |
| include_data | Boolean |
Whether to include all other available technical information about the node in the response.
Default:
falseExample:
true |
Example usage
BASH / cURL
curl -X POST https://nodus.alexxiy.top/api/v1.0/nodes \ -H "Content-Type: application/json" \ -d '{ "chain": "main", "count": 10, "order_uptime": "30d" }'