Obol Cluster Effectiveness API

The Cluster Effectiveness API from Obol — 1 operation(s) for cluster effectiveness.

Operations 1

GET /v1/effectiveness/{lockHash} Retrieve a Distributed Validator Cluster Effectiveness Object #

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/obol-cluster-effectiveness-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

obol-cluster-effectiveness-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Obol Cluster Effectiveness API
  description: '## What is this API?


    This API is for creating and managing Distributed Validators. This API works in tandem with Obol''s Distributed Validator Launchpad, a dapp designed to allow people to authenticate their counterparties and agree to the terms of a Distributed Validator Cluster. This API will be made more easy for code-only interaction in the coming quarters with the release of the Obol-SDK.


    Read more about Obol and how to use the launchpad on our docs site.


    For enquiries:'
  version: v1.0.0-local
  contact:
    name: Obol Labs
    url: https://obol.tech
    email: support@obol.tech
servers:
- url: https://api.obol.tech
  description: Production environment
- url: http://localhost:3000
  description: Local development server
- url: https://localhost:3000
  description: HTTPS Local development server
tags:
- name: Cluster Effectiveness
paths:
  /v1/effectiveness/{lockHash}:
    get:
      description: This endpoint is used to retrieve the effectiveness of a cluster by pubkey
      operationId: EffectivenessController_getClusterLock_v1
      parameters:
      - name: lockHash
        required: true
        in: path
        description: The `lock_hash` calculated for a cluster lock.
        schema:
          type: string
      responses:
        '200':
          description: The cluster lock object
          content:
            application/json:
              schema:
                anyOf:
                - $ref: '#/components/schemas/ClusterEffectivenessResponse'
        '404':
          description: Data not found
        '500':
          description: An unknown error occurred
      summary: Retrieve a Distributed Validator Cluster Effectiveness Object
      tags:
      - Cluster Effectiveness
components:
  schemas:
    ClusterEffectivenessResponse:
      type: object
      properties:
        all:
          type: number
          description: Cluster effectiveness for alltime.
      required:
      - all
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http