dns

Nodus: ZCash Light API Monitor

arrow_back Back
language
expand_more

API Documentation

Integration guide for querying the Nodus - Zcash Light API monitor.

VERSION 1.0
POST /api/nodes
Get Node List

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.

tune 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: false
Example: 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: false
Example: true
include_data Boolean
Whether to include all other available technical information about the node in the response.
Default: false
Example: true

code 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"
  }'
login