THORChain RUNE Pool API
The RUNE Pool API from THORChain — 3 operation(s) for rune pool.
The RUNE Pool API from THORChain — 3 operation(s) for rune pool.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/thorchain-rune-pool-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 3.2.0
info:
title: Thornode Auth RUNE Pool 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: RUNE Pool
paths:
/thorchain/runepool:
parameters:
- $ref: '#/components/parameters/queryHeight'
get:
description: Returns the pool information for the RUNE pool.
operationId: runePool
tags:
- RUNE Pool
responses:
200:
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/RUNEPoolResponse'
/thorchain/rune_provider/{address}:
parameters:
- $ref: '#/components/parameters/queryHeight'
- $ref: '#/components/parameters/address'
get:
description: Returns the RUNE Provider information for an address.
operationId: runeProvider
tags:
- RUNE Pool
responses:
200:
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/RUNEProviderResponse'
/thorchain/rune_providers:
parameters:
- $ref: '#/components/parameters/queryHeight'
get:
description: Returns all RUNE Providers.
operationId: runeProviders
tags:
- RUNE Pool
responses:
200:
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/RUNEProvidersResponse'
components:
parameters:
address:
name: address
in: path
required: true
schema:
type: string
example: thor1zupk5lmc84r2dh738a9g3zscavannjy3nzplwt
queryHeight:
name: height
in: query
description: optional block height, defaults to current tip
required: false
schema:
type: integer
format: int64
minimum: 0
schemas:
RUNEProvidersResponse:
type: array
items:
$ref: '#/components/schemas/RUNEProvider'
RUNEPoolResponse:
type: object
required:
- pol
- providers
- reserve
properties:
pol:
$ref: '#/components/schemas/POL'
providers:
type: object
required:
- units
- pending_units
- pending_rune
- value
- pnl
- rune_deposited
- rune_withdrawn
- current_deposit
properties:
units:
type: string
example: '123456'
description: the units of RUNEPool owned by providers (including pending)
pending_units:
type: string
example: '123456'
description: the units of RUNEPool owned by providers that remain pending
pending_rune:
type: string
example: '123456'
description: the amount of RUNE pending
value:
type: string
example: '123456'
description: the value of the provider share of the RUNEPool (includes pending RUNE)
pnl:
type: string
example: '123456'
description: the profit and loss of the provider share of the RUNEPool
current_deposit:
type: string
example: '123456'
description: the current RUNE deposited by providers
reserve:
type: object
required:
- units
- value
- pnl
- rune_deposited
- rune_withdrawn
- current_deposit
properties:
units:
type: string
example: '123456'
description: the units of RUNEPool owned by the reserve
value:
type: string
example: '123456'
description: the value of the reserve share of the RUNEPool
pnl:
type: string
example: '123456'
description: the profit and loss of the reserve share of the RUNEPool
current_deposit:
type: string
example: '123456'
description: the current RUNE deposited by the reserve
RUNEProviderResponse:
$ref: '#/components/schemas/RUNEProvider'
RUNEProvider:
type: object
required:
- rune_address
- units
- value
- pnl
- deposit_amount
- withdraw_amount
- last_deposit_height
- last_withdraw_height
properties:
rune_address:
type: string
example: THOR.RUNE
units:
type: string
example: '1234'
value:
type: string
example: '123456'
pnl:
type: string
example: '123456'
deposit_amount:
type: string
example: '6677'
withdraw_amount:
type: string
example: '5443'
last_deposit_height:
type: integer
format: int64
example: 82745
last_withdraw_height:
type: integer
format: int64
example: 82745
POL:
type: object
required:
- rune_deposited
- rune_withdrawn
- value
- pnl
- current_deposit
properties:
rune_deposited:
type: string
example: '857134475040'
description: total amount of RUNE deposited into the pools
rune_withdrawn:
type: string
example: '0'
description: total amount of RUNE withdrawn from the pools
value:
type: string
example: '21999180112172346'
description: total value of protocol's LP position in RUNE value
pnl:
type: string
example: '21999180112172346'
description: profit and loss of protocol owned liquidity
current_deposit:
type: string
example: '21999180112172346'
description: current amount of rune deposited