Get single validator details
List validator details for a single validator. Filterable by validation status.
Api keys provide higher access to rate limits. To obtain an api key, sign up for an account at https://build.avax.network/console/utilities/data-api-keys.
In: header
Path Parameters
Either mainnet or testnet/fuji.
"mainnet" | "fuji" | "testnet"A primary network (P or X chain) nodeId.
Query Parameters
A page token, received from a previous list call. Provide this to retrieve the subsequent page.
The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
101 <= value <= 100Validation status of the node.
"completed" | "active" | "pending" | "removed"The order by which to sort results. Use "asc" for ascending order, "desc" for descending order. Sorted by timestamp or the sortBy query parameter, if provided.
"asc" | "desc"Response Body
application/json
application/json
application/json
application/json
application/json
application/json
application/json
application/json
application/json
curl -X GET "https://data-api.avax.network/v1/networks/mainnet/validators/NodeID-111111111111111111116DBWJs?pageSize=10&validationStatus=completed&sortOrder=asc"{
"nextPageToken": "string",
"validators": [
{
"txHash": "string",
"nodeId": "string",
"subnetId": "string",
"amountStaked": "string",
"delegationFee": "string",
"startTimestamp": 0,
"endTimestamp": 0,
"blsCredentials": {
"publicKey": "string",
"proofOfPossession": "string"
},
"delegatorCount": 0,
"amountDelegated": "string",
"rewards": {
"validationRewardAmount": "string",
"delegationRewardAmount": "string",
"rewardAddresses": [
"string"
],
"rewardTxHash": "string"
},
"validationStatus": "completed"
}
]
}{
"message": "string",
"statusCode": 400,
"error": "Bad Request"
}{
"message": "string",
"statusCode": 401,
"error": "Unauthorized"
}{
"message": "string",
"statusCode": 403,
"error": "Forbidden"
}{
"message": "string",
"statusCode": 404,
"error": "Not Found"
}{
"message": "string",
"statusCode": 429,
"error": "Too Many Requests"
}{
"message": "string",
"statusCode": 500,
"error": "Internal Server Error"
}{
"message": "string",
"statusCode": 502,
"error": "Bad Gateway"
}{
"message": "string",
"statusCode": 503,
"error": "Service Unavailable"
}Is this guide helpful?