Web API: Master Node
Validators (master nodes) as recorded by the explorer: address, name, active flag, connection time, geolocation, and blocks produced.
Base URL
/api/masternodes/
Endpoints
List Master Nodes
GET /api/masternodes/
Returns a paginated list of every validator address the explorer has recorded. Filter with is_active=true for the current validator set.
Query Parameters:
is_active:trueorfalsesearch: match on address or name; results then use the full record shape (see details below)ordering: a response field, prefixed with-for descending (for example-date_connected)compact: any value; each result then has onlyaddress,name,is_active, andlocation_name(city, region, country joined with commas, or-)page,limit: page number and page size; the default and maximum page size is 15000
Response:
{
"count": 19673,
"page": 1,
"num_pages": 2,
"results": [
{
"address": "RNLsAwj8pn6EXbHv1LYokuFGHXTVnxcwfr",
"name": "Merkle Science 1",
"is_active": true,
"date_connected": "2026-08-31T11:01:23.701409Z",
"city": "Boardman",
"country": "United States",
"latitude": 45.8401,
"longitude": -119.705
}
]
}
Get Master Node Details
GET /api/masternodes/{address}/
Parameters:
address(string): The validator's VFX address
Response:
{
"address": "RNLsAwj8pn6EXbHv1LYokuFGHXTVnxcwfr",
"name": "Merkle Science 1",
"is_active": true,
"date_connected": "2026-08-31T11:01:23.701409Z",
"city": "Boardman",
"country": "United States",
"latitude": 45.8401,
"longitude": -119.705,
"block_count": 24250,
"unique_name": "Merkle Science 1",
"connect_date": "2026-08-31T11:01:23.701409Z"
}
Get Master Node by Name
GET /api/masternodes/name/{name}/
Same response shape as the details endpoint. URL-encode names that contain spaces.
Map Data
GET /api/masternodes/map/
Paginated like the list, with the same query parameters. Each result carries only the coordinates and the address:
{
"count": 19673,
"page": 1,
"num_pages": 2,
"results": [
{
"latitude": 45.8401,
"longitude": -119.705,
"address": "RNLsAwj8pn6EXbHv1LYokuFGHXTVnxcwfr"
}
]
}
Field Descriptions
address: the validator's VFX addressname,unique_name: the validator name chosen at activation (unique on the network);unique_namerepeatsnameis_active: whether the node is in the current active validator setdate_connected,connect_date: when the node was last recorded connecting;connect_daterepeatsdate_connectedcity,country,latitude,longitude: geolocation derived from the node's IP address; may be null or0.0when unknownblock_count: blocks this validator has produced (details and name lookups only)
Notes
counton the unfiltered list includes every validator address ever recorded;is_active=truegives the current set.- There are no uptime, version, performance, rewards, or port fields, and IP addresses are not exposed. Proof of Assurance pays no block rewards.
POST /api/masternodes/send/is an internal ingestion endpoint used by the explorer's own node infrastructure; it is not part of the public API and is not listed in Swagger.