Re

Re TVL API

Total value locked and capital metrics

Operations 4

GET /tvl Latest values of every TVL metric #
GET /tvl/{metric} Latest value of one TVL metric #
GET /tvl/{metric}/history Daily history of one TVL metric #
GET /tvl/history Historical values of every TVL metric #

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/re-tvl-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

re-tvl-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Re Protocol General TVL API
  version: '1.0'
  description: Public, read-only data API for the Re Protocol — an onchain reinsurance platform issuing the reUSD (senior tranche) and reUSDe (mezzanine tranche) yield tokens backed by real reinsurance premiums. The API serves APY/NAV, price history, token supply, protocol TVL, Re Points leaderboard and earning opportunities, and per-wallet balances and points. No authentication is required. All data served by this API is also available via the Re Protocol MCP server at https://api.re.xyz/mcp.
  contact:
    name: Re Protocol
    url: https://docs.re.xyz/products/api-reference
  x-generated-by: api-evangelist-enrichment
  x-source: https://docs.re.xyz/products/api-reference.md
servers:
- url: https://api.re.xyz
  description: Production
tags:
- name: TVL
  description: Total value locked and capital metrics
paths:
  /tvl:
    get:
      tags:
      - TVL
      operationId: getTvl
      summary: Latest values of every TVL metric
      description: Latest values of every protocol capital/TVL metric.
      responses:
        '200':
          description: Latest values of every metric.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TvlResponse'
  /tvl/{metric}:
    get:
      tags:
      - TVL
      operationId: getTvlMetric
      summary: Latest value of one TVL metric
      description: 'Latest value of one metric: reusd, reusde, total, onchain_capital, offchain_capital, or premium-receivables.'
      parameters:
      - $ref: '#/components/parameters/MetricPath'
      responses:
        '200':
          description: Latest value of one metric.
          content:
            application/json:
              schema:
                type: object
  /tvl/{metric}/history:
    get:
      tags:
      - TVL
      operationId: getTvlMetricHistory
      summary: Daily history of one TVL metric
      description: Daily history of one metric.
      parameters:
      - $ref: '#/components/parameters/MetricPath'
      - $ref: '#/components/parameters/Period'
      responses:
        '200':
          description: Daily history of one metric.
          content:
            application/json:
              schema:
                type: object
  /tvl/history:
    get:
      tags:
      - TVL
      operationId: getTvlHistory
      summary: Historical values of every TVL metric
      description: Historical values of every metric.
      responses:
        '200':
          description: Historical values of every metric.
          content:
            application/json:
              schema:
                type: object
components:
  parameters:
    Period:
      name: period
      in: query
      description: Rolling window, 1d-30d or 1M-12M. Default 7d for /apy; full range for /price.
      schema:
        type: string
        default: 7d
    MetricPath:
      name: metric
      in: path
      required: true
      description: Capital/TVL metric key.
      schema:
        type: string
        enum:
        - reusd
        - reusde
        - total
        - onchain_capital
        - offchain_capital
        - premium-receivables
  schemas:
    MetricValue:
      type: object
      properties:
        amount:
          type: number
        lastUpdated:
          type: string
          format: date-time
        currency:
          type: string
    TvlResponse:
      type: object
      properties:
        success:
          type: boolean
        results:
          type: object
          additionalProperties:
            $ref: '#/components/schemas/MetricValue'
        timestamp:
          type: string
          format: date-time