Address → Cluster Name

To enable testnet querying on Sepolia, add ?testnet=true to the end of the URL

Get name

GET /v1/names/address/:address

Get the cluster and wallet name based on an address

Name
Description

address

EVM or Solana address

Example

https://api.clusters.xyz/v1/names/address/0x5755d1dcea21caa687339c305d143e6e78f96adf

Response

{
    "address": "0x5755d1dcea21caa687339c305d143e6e78f96adf",
    "type": "evm",
    "clusterName": "cluster",
    "walletName": "main",
    "isVerified": true
}

Get names by owner

GET /v1/names/owner/address/:address

Get all clusters and wallet names from a single wallet address

address

EVM or Solana address

Example

Response


Bulk get names

POST /v1/names/address

Get the cluster and wallet name based on multiple addresses

Name
Description

POST body

Array of EVM and or Solana addresses

Example

Response

Any addresses not found will have clusterName: null


Last updated