Minerstat Pools API

Mining pool data

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/minerstat-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 email required.

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

OpenAPI Specification

minerstat-pools-api-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: Minerstat Mining Pools API
  description: Public API providing information about mining pools listed on Minerstat, including supported coins, fees, payout thresholds, and pool metadata.
  version: '2.0'
  contact:
    name: Minerstat
    url: https://api.minerstat.com/docs-pools
  license:
    name: Minerstat Terms
    url: https://minerstat.com/terms
servers:
- url: https://api.minerstat.com/v2
  description: Minerstat public API
security:
- apiKeyHeader: []
- apiKeyQuery: []
tags:
- name: Pools
  description: Mining pool data
paths:
  /pools:
    get:
      tags:
      - Pools
      summary: List mining pools
      description: Retrieve information about all mining pools listed on Minerstat. Pool data updates approximately once per minute. Throttled to roughly 12 requests per minute.
      operationId: listPools
      responses:
        '200':
          description: A list of mining pools.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Pool'
        '400':
          description: Invalid parameter
        '401':
          description: Missing or invalid API key
        '402':
          description: Monthly quota exceeded
        '403':
          description: Subscription inactive or key revoked
        '404':
          description: Content not found
        '500':
          description: API or system error
components:
  schemas:
    Pool:
      type: object
      properties:
        id:
          type: string
          description: Pool identifier slug.
        name:
          type: string
          description: Pool display name.
        coin:
          type: string
          description: Primary coin or algorithm supported.
        algorithm:
          type: string
          description: Mining algorithm.
        fee:
          type: number
          format: float
          description: Pool fee percentage.
        payout_threshold:
          type: number
          format: float
          description: Minimum payout threshold.
        url:
          type: string
          format: uri
          description: Pool website URL.
  securitySchemes:
    apiKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key
      description: Recommended authentication using the X-API-Key header.
    apiKeyQuery:
      type: apiKey
      in: query
      name: key
      description: Alternative authentication using the key query parameter.