THORChain Runepool API

The Runepool API from THORChain — 1 operation(s) for runepool.

Operations 1

GET /v2/runepool/{address} RUNEPool Details #

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/thorchain-runepool-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

thorchain-runepool-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Thornode Auth Runepool API
  version: 3.19.1
  contact:
    email: devs@thorchain.org
  description: Thornode REST API.
servers:
- url: https://gateway.liquify.com/chain/thorchain_api
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: Runepool
paths:
  /v2/runepool/{address}:
    get:
      description: 'Returns an array of statistics for all the RUNEPool associated with given

        member addresses.

        Query can also be multiple addresses should be separated by comma ('','')

        '
      operationId: GetRUNEPoolDetail
      parameters:
      - description: 'Address to match the RUNEPool. multiple rune addresses can be given.

          '
        example: thor1jxfh2g85q3v0tdq56fnevx6xcxtcnhtsmcu64m,thor2qcxssye4j6730h7ehgega3gyykkuwgdgmmpu62n
        in: path
        name: address
        required: true
        schema:
          type: string
      responses:
        '200':
          $ref: '#/components/responses/RUNEPoolDetailsResponse'
      summary: RUNEPool Details
      tags:
      - Runepool
components:
  schemas:
    RUNEPoolDetails:
      description: List details of all the RUNEPools identified with the given addresses
      items:
        $ref: '#/components/schemas/RUNEPoolProvider'
      type: array
    RUNEPoolProvider:
      properties:
        dateFirstAdded:
          description: Int64, Unix timestamp for the first time member deposited into the RUNEPool
          type: string
        dateLastAdded:
          description: Int64, Unix timestamp for the last time member deposited into the RUNEPool
          type: string
        runeAdded:
          description: Int64(e8), total asset added in the RUNEPool by member
          type: string
        runeAddress:
          description: address used by the member
          type: string
        runeDeposit:
          description: Int64(e8), total asset that is currently deposited by the member
          type: string
        runeWithdrawn:
          description: Int64(e8), total asset withdrawn from the RUNEPool by the member
          type: string
        units:
          description: Int64, units that belong the the member
          type: string
      required:
      - runeAddress
      - units
      - runeAdded
      - runeWithdrawn
      - runeDeposit
      - dateFirstAdded
      - dateLastAdded
      type: object
  responses:
    RUNEPoolDetailsResponse:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/RUNEPoolDetails'
      description: object containing RUNEPool data for a specific members