OlympusDAO Metadata API

Date bounds and indexer metadata.

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/olympusdao-metadata-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

olympusdao-metadata-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Olympus Protocol Metrics Health Metadata API
  version: 2.0.0
  description: Cacheable REST API for Olympus protocol metrics, treasury assets, and OHM supply. /operations routes are deprecated compatibility routes.
servers:
- url: https://treasury-subgraph-api.olympusdao.finance
  description: Olympus Protocol Metrics API
tags:
- name: Metadata
  description: Date bounds and indexer metadata.
paths:
  /v2/bounds:
    get:
      summary: Published date bounds
      operationId: getBounds
      tags:
      - Metadata
      description: Returns the earliest and latest available dates in the published artifact store, maximum range window (default 366 days), the active indexer deployment identifier, and per-chain indexing progress (block and date).
      responses:
        '200':
          description: Earliest/latest dates, maximum v2 range, and latest per-chain indexing progress.
          content:
            application/json:
              schema:
                type: object
                properties:
                  earliestDate:
                    type: string
                    format: date
                  latestDate:
                    type: string
                    format: date
                  maxRangeDays:
                    type: integer
                  deploymentId:
                    type: string
                  chains:
                    type: object
                    additionalProperties:
                      type: object
                      properties:
                        latestBlock:
                          type: integer
                        latestDate:
                          type: string
                          format: date