MetaDAO Volume API

Aggregate trading volume

Operations 1

GET /api/volume/aggregate Aggregate volume with daily breakdown for all DAO tokens #

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/metadao-volume-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

metadao-volume-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: MetaDAO Futarchy DEX Meta Volume API
  version: 1.0.0
  description: CoinGecko-compatible DEX API for the MetaDAO Futarchy protocol on Solana. It automatically discovers and aggregates all DAOs from the Futarchy protocol and exposes real-time pricing, trading volume (derived from protocol fees), liquidity, and token supply information. The API is public and read-only, requires no authentication, and is rate limited to 60 requests per minute per IP. Prices are calculated from on-chain spot pool reserves only (not conditional/futarchy markets). This OpenAPI description was generated by the API Evangelist enrichment pipeline from the provider's published API documentation at https://api-docs.metadao.fi (the provider does not publish its own OpenAPI; the openapi.json served by the docs site is the default Mintlify sample). Endpoints, parameters, and response fields are transcribed faithfully from those docs.
  x-generated-by: api-evangelist-enrichment-pipeline
  x-generated-from: https://api-docs.metadao.fi/llms.txt
  license:
    name: MIT
    url: https://opensource.org/licenses/MIT
servers:
- url: https://market-api.metadao.fi
  description: Public production API
tags:
- name: Volume
  description: Aggregate trading volume
paths:
  /api/volume/aggregate:
    get:
      operationId: getAggregateVolume
      tags:
      - Volume
      summary: Aggregate volume with daily breakdown for all DAO tokens
      description: Returns comprehensive trading volume for all DAO tokens since launch, including a daily breakdown and per-token totals.
      responses:
        '200':
          description: Aggregate volume
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VolumeAggregate'
        '429':
          $ref: '#/components/responses/RateLimited'
        '500':
          $ref: '#/components/responses/ServerError'
components:
  schemas:
    Error:
      type: object
      description: All API errors follow a consistent envelope.
      properties:
        error:
          type: string
          description: Error message describing what went wrong
      required:
      - error
    VolumeAggregate:
      type: object
      properties:
        totalVolume:
          type: string
          description: Total aggregate volume across all DAOs since launch (USD)
        dailyBreakdown:
          type: array
          items:
            type: object
            properties:
              date:
                type: string
                description: ISO 8601 date (YYYY-MM-DD)
              volume:
                type: string
              trades:
                type: number
        tokens:
          type: array
          items:
            type: object
            properties:
              mint:
                type: string
              symbol:
                type: string
              totalVolume:
                type: string
  responses:
    RateLimited:
      description: Rate limit exceeded (60 requests per minute per IP)
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    ServerError:
      description: An unexpected error occurred on the server
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'