Amberdata Supply API

The Supply API from Amberdata — 2 operation(s) for supply.

Operations 2

GET /{asset}/supply/latest Latest #
GET /{asset}/supply/historical Historical #

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/amberdata-supply-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

amberdata-supply-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Market Metrics Supply API
  version: '2'
servers:
- url: https://api.amberdata.com/market/metrics
security:
- sec0: []
tags:
- name: Supply
paths:
  /{asset}/supply/latest:
    get:
      summary: Latest
      description: 'Retrieves latest supply data for blockchains and tokens.***Note**: We get supply values directly from our data/nodes. Blockchains included in our supply data are: Ethereum, Bitcoin and Litecoin.'
      operationId: market-metrics-asset-supply-latest
      parameters:
      - name: asset
        in: path
        description: The symbol of the asset or token. <BR>**[Example]** BTC, ETH, MATIC, etc.
        schema:
          type: string
          default: btc
        required: true
      responses:
        '200':
          description: '200'
          content:
            application/json:
              examples:
                Result:
                  value:
                    status: 200
                    title: OK
                    description: Successful request
                    payload:
                      timestamp: '2021-01-26T16:25:49.000Z'
                      issuance: '6.25'
                      totalSupply: '18611089.79497096'
                      circulatingSupply: '18611056'
                      maxSupply: '21000000'
              schema:
                type: object
                properties:
                  status:
                    type: integer
                    example: 200
                    default: 0
                  title:
                    type: string
                    example: OK
                  description:
                    type: string
                    example: Successful request
                  payload:
                    type: object
                    properties:
                      timestamp:
                        type: string
                        example: '2021-01-26T16:25:49.000Z'
                      issuance:
                        type: string
                        example: '6.25'
                      totalSupply:
                        type: string
                        example: '18611089.79497096'
                      circulatingSupply:
                        type: string
                        example: '18611056'
                      maxSupply:
                        type: string
                        example: '21000000'
        '400':
          description: '400'
          content:
            application/json:
              examples:
                Result:
                  value: {}
              schema:
                type: object
                properties: {}
      deprecated: false
      tags:
      - Supply
  /{asset}/supply/historical:
    get:
      summary: Historical
      description: 'Retrieves historical supply data for blockchains and tokens from October 2019 forward. ***Note**: We get supply values directly from our data/nodes. Blockchains included in our supply data are: Ethereum, Bitcoin and Litecoin.'
      operationId: market-metrics-asset-supply-historical
      parameters:
      - name: asset
        in: path
        description: The symbol of the asset or token. <BR>**[Example]** BTC, ETH, MATIC, etc.
        schema:
          type: string
          default: btc
        required: true
      - name: startDate
        in: query
        description: Returns data after this date. Accepts ISO8601 and Epoch/Unix timestamps
        schema:
          type: string
          format: date-time
      - name: endDate
        in: query
        description: Returns data before this date. Accepts ISO8601 and Epoch/Unix timestamps
        schema:
          type: string
          format: date-time
      - name: timeFormat
        in: query
        description: '**[Optional]** Time format of the timestamps in the return payload.<BR/>**[Defaults]** `milliseconds | ms* | iso | iso8601 | hr | human_readable`'
        schema:
          type: string
          default: iso
      responses:
        '200':
          description: '200'
          content:
            application/json:
              examples:
                Result:
                  value:
                    status: 200
                    title: OK
                    description: Successful request
                    payload:
                      metadata:
                        startDate: '2021-01-22T00:00:00.000Z'
                        endDate: '2021-01-26T16:42:50.026Z'
                      data:
                      - timestamp: '2021-01-22T00:00:00.000Z'
                        issuance: '6.25'
                        totalSupply: '18607677.29497096'
                        circulatingSupply: '18607618'
                        maxSupply: '21000000'
                      - timestamp: '2021-01-23T00:00:00.000Z'
                        issuance: '6.25'
                        totalSupply: '18608652.29497096'
                        circulatingSupply: '18608487'
                        maxSupply: '21000000'
                      - timestamp: '2021-01-24T00:00:00.000Z'
                        issuance: '6.25'
                        totalSupply: '18609521.04497096'
                        circulatingSupply: '18609437'
                        maxSupply: '21000000'
                      - timestamp: '2021-01-25T00:00:00.000Z'
                        issuance: '6.25'
                        totalSupply: '18610396.04497096'
                        circulatingSupply: '18610293'
                        maxSupply: '21000000'
              schema:
                type: object
                properties:
                  status:
                    type: integer
                    example: 200
                    default: 0
                  title:
                    type: string
                    example: OK
                  description:
                    type: string
                    example: Successful request
                  payload:
                    type: object
                    properties:
                      metadata:
                        type: object
                        properties:
                          startDate:
                            type: string
                            example: '2021-01-22T00:00:00.000Z'
                          endDate:
                            type: string
                            example: '2021-01-26T16:42:50.026Z'
                      data:
                        type: array
                        items:
                          type: object
                          properties:
                            timestamp:
                              type: string
                              example: '2021-01-22T00:00:00.000Z'
                            issuance:
                              type: string
                              example: '6.25'
                            totalSupply:
                              type: string
                              example: '18607677.29497096'
                            circulatingSupply:
                              type: string
                              example: '18607618'
                            maxSupply:
                              type: string
                              example: '21000000'
        '400':
          description: '400'
          content:
            application/json:
              examples:
                Result:
                  value: {}
              schema:
                type: object
                properties: {}
      deprecated: false
      tags:
      - Supply
components:
  securitySchemes:
    sec0:
      type: apiKey
      in: header
      x-default: API-KEY
      name: x-api-key
x-readme:
  headers: []
  explorer-enabled: true
  proxy-enabled: true
x-readme-fauxas: true