THORChain Tcy API

The Tcy API from THORChain — 1 operation(s) for tcy.

Operations 1

GET /v2/tcy/distribution/{address} Tcy 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/thorchain-tcy-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-tcy-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Thornode Auth Tcy 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: Tcy
paths:
  /v2/tcy/distribution/{address}:
    get:
      description: 'Returns an array of TCY distribution for the given address.

        '
      operationId: GetTcyDistribution
      parameters:
      - description: Address which is assigned to TCY Holder.
        example: thor102y0m3uptg0vvudeyh00r2fnz70wq7d8y7mu2g
        in: path
        name: address
        required: true
        schema:
          type: string
      - description: 'Specifies the base interval from which APR will be calculated.

          Default is 30d.

          '
        example: 90d
        in: query
        name: period
        schema:
          enum:
          - 1h
          - 24h
          - 7d
          - 14d
          - 30d
          - 90d
          - 100d
          - 180d
          - 365d
          - all
          type: string
      responses:
        '200':
          $ref: '#/components/responses/TCYDistributionResponse'
      summary: Tcy Distribution
      tags:
      - Tcy
components:
  responses:
    TCYDistributionResponse:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/TCYDistribution'
      description: object containing TCY distribution data for a specific address
  schemas:
    TCYDistribution:
      properties:
        address:
          description: TCY holder address.
          type: string
        apr:
          description: Float, annual percentage rate of the TCY distribution.
          type: string
        distributions:
          description: List details of all the TCY distributions.
          items:
            $ref: '#/components/schemas/TCYDistributionItem'
          type: array
        total:
          description: Int64(e8), total amount of RUNE distributed to the TCY holder.
          type: string
      required:
      - apr
      - total
      - address
      - distributions
      type: object
    TCYDistributionItem:
      properties:
        amount:
          description: Int64(e8), amount of RUNE distributed to the TCY holder.
          type: string
        date:
          description: Int64, Unix timestamp for the TCY distribution.
          type: string
        price:
          description: Int64(e8), RUNE price at the time of distribution.
          type: string
      required:
      - amount
      - price
      - date
      type: object