mirrored listing x402 eip155:8453eip155:196

List validators for delegation-based yields (Cosmos, Polkadot, ETH native staking, etc

List validators for delegation-based yields (Cosmos, Polkadot, ETH native staking, etc.). Use a validator address with actions_enter/actions_exit. Filter to curated validators with preferred=true, or by name/status/address/provider.

Do you run mcp.yield.xyz? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
1000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-08
updated

Provider

mcp.yield.xyz · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0xD433f056270912659f073D5FFE7Ae247e39235A5",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "1000",
    "maxTimeoutSeconds": 300
  },
  {
    "scheme": "exact",
    "network": "eip155:196",
    "payTo": "0x14c1cf26360F42681105A03137CF6951BdDB1293",
    "asset": "0x4ae46a509f6b1d9056937ba4500cb143933d2dc8",
    "amount": "1000",
    "maxTimeoutSeconds": 300
  },
  {
    "scheme": "exact",
    "network": "eip155:196",
    "payTo": "0x14c1cf26360F42681105A03137CF6951BdDB1293",
    "asset": "0x779ded0c9e1022225f8e0630b35a9b54be713736",
    "amount": "1000",
    "maxTimeoutSeconds": 300
  },
  {
    "scheme": "exact",
    "network": "eip155:196",
    "payTo": "0x14c1cf26360F42681105A03137CF6951BdDB1293",
    "asset": "0x74b7f16337b8972027f6196a17a631ac6de26d22",
    "amount": "1000",
    "maxTimeoutSeconds": 300
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "body": {
          "limit": 5,
          "preferred": true,
          "yieldId": "cosmos-atom-native-staking"
        },
        "bodyType": "json",
        "method": "POST",
        "type": "http"
      },
      "output": {
        "example": {
          "items": [
            {
              "address": "cosmosvaloper1abc…",
              "commission": 0.05,
              "name": "Everstake",
              "preferred": true,
              "rewardRate": {
                "rateType": "apr",
                "total": 0.18
              },
              "status": "active"
            }
          ],
          "limit": 5,
          "offset": 0,
          "total": 180
        },
        "type": "json"
      }
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "body": {
              "properties": {
                "address": {
                  "description": "Filter by validator address",
                  "type": "string"
                },
                "limit": {
                  "maximum": 50,
                  "minimum": 1,
                  "type": "integer"
                },
                "name": {
                  "description": "Filter by validator name (partial, case-insensitive)",
                  "type": "string"
                },
                "offset": {
                  "minimum": 0,
                  "type": "integer"
                },
                "preferred": {
                  "description": "Return only curated/recommended validators",
                  "type": "boolean"
                },
                "provider": {
                  "type": "string"
                },
                "status": {
                  "description": "e.g. \"active\", \"jailed\"",
                  "type": "string"
                },
                "yieldId": {
                  "description": "Delegation-based yield ID, e.g. \"cosmos-atom-native-staking\"",
                  "type": "string"
                }
              },
              "required": [
                "yieldId"
              ],
              "type": "object"
            },
            "bodyType": {
              "enum": [
                "json",
                "form-data",
                "text"
              ],
              "type": "string"
            },
            "method": {
              "enum": [
                "POST"
              ],
              "type": "string"
            },
            "type": {
              "const": "http",
              "type": "string"
            }
          },
          "required": [
            "type",
            "method",
            "bodyType",
            "body"
          ],
          "type": "object"
        },
        "output": {
          "properties": {
            "example": {
              "description": "Core fields shown; the response carries additional fields depending on the yield/protocol (intentionally non-exhaustive).",
              "properties": {
                "items": {
                  "items": {
                    "properties": {
                      "address": {
                        "type": "string"
                      },
                      "commission": {
                        "type": "number"
                      },
                      "name": {
                        "type": "string"
                      },
                      "preferred": {
                        "type": "boolean"
                      },
                      "rewardRate": {
                        "properties": {
                          "rateType": {
                            "type": "string"
                          },
                          "total": {
                            "description": "APY as a decimal, e.g. 0.18 = 18%",
                            "type": "number"
                          }
                        },
                        "type": "object"
                      },
                      "status": {
                        "type": "string"
                      }
                    },
                    "type": "object"
                  },
                  "type": "array"
                },
                "limit": {
                  "type": "integer"
                },
                "offset": {
                  "type": "integer"
                },
                "total": {
                  "type": "integer"
                }
              },
              "type": "object"
            },
            "type": {
              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  }
}

Use it

curl

curl "https://mcp.yield.xyz/x402/yields_get_validators"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://mcp.yield.xyz/x402/yields_get_validators");
if (res.status === 402) {
  const { accepts } = await res.json();
  // pay one of accepts[] via an x402 client, then retry with the payment header
}

Python

import httpx
res = httpx.get("https://mcp.yield.xyz/x402/yields_get_validators")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/2341.json, and this resource appears in /discovery/resources and /discovery/search.