Cluster → Metadata

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

Get cluster

GET /v0.1/cluster/:name

Get the cluster from a cluster name

Name
Description

name

Name of the cluster

Example

https://api.clusters.xyz/v0.1/cluster/:name

Response

{
  "name": "clusters/",
  "profileUrl": "https://clusters.xyz/clusters",
  "imageUrl": "https://cdn.clusters.xyz/profile/clusters",
  "hasCustomImage": false,
  "wallets": [
    {
      "type": "evm",
      "address": "0x5755d1dcea21caa687339c305d143e6e78f96adf",
      "name": "clusters/main",
      "isVerified": true
    }
  ]
}

Bulk get clusters

POST /v0.1/cluster/names

Get the cluster from a cluster name

Name
Description

POST body

Array of cluster names

Example

Response

Any names in the array that are not found will be omitted from the response.

Last updated