Figment Validators API

The Validators API from Figment — 1 operation(s) for validators.

Operations 1

GET /validators List validators visible to the calling organization #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/figment-validators-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

figment-validators-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Figment Validators API
  version: 2.0.0+1190.1
  termsOfService: https://figment.io/staking-terms-of-use
servers:
- url: https://api.figment.io
tags:
- name: Validators
paths:
  /validators:
    get:
      summary: List validators visible to the calling organization
      tags:
      - Validators
      operationId: list-validators
      parameters:
      - name: page[number]
        in: query
        required: false
        description: Page number, starting at 1.
        example: 1
        schema:
          type: integer
      - name: page[size]
        in: query
        required: false
        description: Number of items per page.
        example: 100
        schema:
          type: integer
      - name: protocol
        in: query
        required: false
        description: Filter results to a single protocol (e.g. `solana`, `near`). Returns 400 if the protocol is unknown.
        example: solana
        schema:
          type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        protocol:
                          type: string
                          example: solana
                          description: Protocol the validator runs on.
                        network:
                          type: string
                          example: mainnet
                          description: Network within the protocol.
                        address:
                          type: string
                          example: CcaHc2L43ZWjwCHART3oZoJvHLAe9hzT2DJNUpBzoTN1
                          description: Canonical public identifier for the validator on this protocol.
                        type:
                          type: string
                          example: solana_vote
                          description: Identifier type for the address (e.g. solana_vote, operator, validator, finality_provider).
                  meta:
                    type: object
                    properties:
                      pagination:
                        type: object
                        properties:
                          current_page:
                            type: integer
                            example: 1
                          total_pages:
                            type: integer
                            example: 10
                          total_item_count:
                            type: integer
                            example: 1000
                          has_next:
                            type: boolean
                            example: true
        '400':
          description: Unknown protocol filter value
        '404':
          description: Endpoint hidden when feature flag is disabled
        '401':
          description: Invalid API key
x-readme:
  explorer-enabled: false
  proxy-enabled: false
  headers:
  - key: x-api-key
    value: your-api-key-here