Blockchain.com Pools API

Mining pool distribution.

Operations 1

GET /pools Blockchain.com Get Mining Pool Distribution #

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/blockchain-pools-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

blockchain-pools-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Blockchain.com Charts, Stats & Market Data Addresses Pools API
  description: 'Aggregated JSON endpoints covering Bitcoin network statistics, historical chart datasets,

    mining pool distribution, BTC exchange rates (ticker) and fiat-to-BTC conversion. Generated

    from https://www.blockchain.com/explorer/api/charts_api and

    https://www.blockchain.com/explorer/api/exchange_rates_api.

    '
  version: 1.0.0
  contact:
    name: Blockchain.com
    url: https://www.blockchain.com/api
  license:
    name: Blockchain.com API Terms of Service
    url: https://www.blockchain.com/legal/terms
  x-generated-from: documentation
  x-last-validated: '2026-05-30'
servers:
- url: https://api.blockchain.info
  description: Blockchain.com aggregated data host (charts, stats, pools).
- url: https://blockchain.info
  description: Blockchain.info explorer host (ticker, fiat-to-BTC conversion).
tags:
- name: Pools
  description: Mining pool distribution.
paths:
  /pools:
    get:
      operationId: getPools
      summary: Blockchain.com Get Mining Pool Distribution
      description: Returns block counts attributed to known mining pools over a rolling window.
      tags:
      - Pools
      servers:
      - url: https://api.blockchain.info
      parameters:
      - name: timespan
        in: query
        required: false
        description: Duration window in days (max 10, default 4).
        schema:
          type: string
          default: 4days
      responses:
        '200':
          description: Mapping of pool name to block count.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PoolDistribution'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    PoolDistribution:
      type: object
      description: Mapping of mining pool name to block count over the requested window.
      additionalProperties:
        type: integer