Skip to main content
GET
/
metrics
/
v2
/
stablecoins
/
{entityIdentifier}
/
metrics
/
{datasetSlug}
/
time-series
Get stablecoin timeseries data
curl --request GET \
  --url https://api.messari.io/metrics/v2/stablecoins/{entityIdentifier}/metrics/{datasetSlug}/time-series \
  --header 'X-Messari-API-Key: <api-key>'
{
  "error": null,
  "data": {
    "points": [
      [
        1674864000,
        68500978293.758316,
        null,
        null
      ],
      [
        1674950400,
        68512350446.7849,
        null,
        null
      ],
      [
        1675036800,
        68490420842.94022,
        null,
        null
      ],
      [
        1675123200,
        68473605079.801216,
        null,
        null
      ],
      [
        1675209600,
        68493868332.42586,
        null,
        null
      ]
    ]
  },
  "metadata": {
    "pointSchemas": [
      {
        "name": "Timestamp",
        "slug": "time",
        "description": "Timestamp of the data point.",
        "is_timestamp": true
      },
      {
        "name": "Outstanding Supply USD",
        "slug": "outstandingSupplyUsd",
        "description": "The total outstanding supply in USD for this stablecoin on a given interval.",
        "is_timestamp": false
      },
      {
        "name": "Mints 24 Hour USD",
        "slug": "mints24HourUsd",
        "description": "The total value of new stablecoins minted in USD.",
        "is_timestamp": false
      },
      {
        "name": "Burns 24 Hour USD",
        "slug": "stablecoin-redemptions-usd",
        "description": "The total value of stablecoins redeemed in USD.",
        "is_timestamp": false
      }
    ],
    "granularity": "1d"
  }
}

Authorizations

X-Messari-API-Key
string
header
required

Path Parameters

entityIdentifier
string
default:tether
required

Entity ID or slug

Example:

"tether"

datasetSlug
enum<string>
default:supply
required

Dataset slug

Available options:
network-breakdown,
supply,
transfers
Example:

"supply"

Query Parameters

start
string
default:2025-06-01T00:00:00Z

Time range start

Example:

"2025-06-01T00:00:00Z"

end
string
default:2025-06-07T00:00:00Z

Time range end

Example:

"2025-06-07T00:00:00Z"

Response

Default response

data
object
required
error
string
metadata
object