Returns one claimed validator slot, scoped to the caller's org.
Returns one claimed validator slot, scoped to the caller's org.
GET /v1/validator/{tokenId}
| Address | https://api.hanzo.ai/v1/validator/{tokenId} |
| Method | GET |
| Operation | get_validator_by_tokenid |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Returns one claimed validator slot, scoped to the caller's org.
A slot another org holds, and a slot nobody holds, are both 404 — never a different status, so this route cannot be used to probe which slots are taken.
Request
1 field.
| Field | In | Type | Required | Description |
|---|---|---|---|---|
tokenId | path | string | yes | TokenID is the slot's GenesisNFT token id, from the path, as a decimal string. A value that is not a positive integer is 400. |
Response
| Status | Body | Meaning |
|---|---|---|
200 | slotView | ok |
200 body — 15 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
blsPubkey | body | string | — | BLSPubkey is the node's BLS public key, hex. |
crName | body | string | — | CRName is the LuxNetwork custom resource that materializes the node. |
createdAt | body | integer | — | CreatedAt is when the slot was first claimed, as a Unix timestamp. |
namespace | body | string | — | Namespace is the Kubernetes namespace the node's CR lives in. |
network | body | string | — | Network is the luxd network slug the node joins. |
nodeID | body | string | — | NodeID is the luxd node id derived from the sealed staking identity. |
nodeStatus | body | string | — | NodeStatus is the provisioning state of the node: "node_created" once the CR is applied, "node_pending" when no cluster is reachable (the slot is still claimed… |
registration | body | registrationView | — | |
registration.id | body | string | — | ID is the registration's handle. |
registration.nodeID | body | string | — | NodeID is the luxd node the registration is for. |
registration.status | body | string | — | Status is the registration's lifecycle state; "pending_owner_approval" until the owner co-signs it out of band. |
slot | body | integer | — | Slot is the validator slot number — the same value as tokenId, under the name the portal reads. |
tokenId | body | integer | — | TokenID is the GenesisNFT token id that IS this slot. |
updatedAt | body | integer | — | UpdatedAt is when the slot last changed, as a Unix timestamp. |
wallet | body | string | — | Wallet is the lowercase Ethereum address that proved ownership of the NFT. |
Failure carries the platform error shape — see Errors.
Examples
hanzo validators get <tokenId>import { Configuration, ValidatorApi } from 'hanzoai';
const api = new ValidatorApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.getValidatorByTokenid({ tokenId: 'tokenId' });from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import ValidatorApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = ValidatorApi(client).get_validator_by_tokenid(token_id='tokenId')cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.ValidatorAPI.GetValidatorByTokenid(context.Background()).Execute()
if err != nil {
return err
}use hanzo_cloud::apis::{configuration::Configuration, validator_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = validator_api::get_validator_by_tokenid(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.ValidatorApi;
ApiClient client = new ApiClient();
client.setRequestInterceptor(b -> b.header("Authorization", "Bearer " + System.getenv("HANZO_API_KEY")));
var result = new ValidatorApi(client).getValidatorByTokenid();The method above is the one at the current release of the document. [email protected] (npm) and [email protected] (PyPI) were generated from an earlier release, where this operation carried a different id, so it spells the method differently — regenerating the clients is what makes the two agree. SDKs →
curl https://api.hanzo.ai/v1/validator/<tokenId> \
-H "Authorization: Bearer $HANZO_API_KEY"The door reaches validator through the validators tool, which names its 4 operations with its own verbs — this one among them, under a name only the door declares. describe explains any of them:
curl -X POST https://api.hanzo.ai/v1/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "describe",
"arguments": {
"op": "list_validators"
}
}
}'How is this guide?