# Messari Asset Metrics 15-Minute Time Series

> Messari Asset Metrics 15-Minute Time Series is a paid API for AI agents from api.messari.io, paid per call via x402, $0.23/call, status unknown (last checked 2026-09-15).

Returns 15-minute granularity historical time series data for a specified cryptocurrency asset metric (e.g., price, volume) within a given time range.

## Facts

- Endpoint: GET https://api.messari.io/metrics/v2/assets/*/metrics/*/time-series/15m
- Price: $0.23/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/messari-asset-metrics-15-minute-time-series-2b49f3fc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DUt2x6LWYqXQ-r4FNe9xS

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability messari-asset-metrics-15-minute-time-series-2b49f3fc
```

Example prompt: Pull the last 6 hours of Bitcoin price_usd data from Messari at 15-minute intervals, starting from 2025-06-01T00:00:00Z to 2025-06-01T06:00:00Z.

## When to prefer this

Use this endpoint when you need sub-hourly, short-horizon cryptocurrency asset metric data at 15-minute resolution — ideal for intraday trading signals, short-term pattern detection, or monitoring recent asset behavior. Prefer this over the 1h or 1d endpoints when you need finer granularity without the full overhead of 5-minute data. Choose over the blockchain network metrics sibling when the subject is a specific crypto asset (e.g., bitcoin, ethereum) rather than a chain-level network metric.

## Known failure modes

- Invalid entityIdentifier (unknown asset slug) returns 404 or empty data
- Invalid datasetSlug (unsupported metric) returns error or no results
- Start/end time outside available data range returns empty array
- Malformed ISO-8601 date strings cause 400 bad request
- Payment not included or insufficient (x402 payment required) returns 402
- Rate limiting or quota exceeded returns 429

## How this service works

Get 15-minute cryptocurrency asset metric history for short-horizon signals.

## Output

An array of timestamped metric values at 15-minute intervals for the specified asset and metric slug, returned as [{timestamp, value}] objects covering the requested time window.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "entityIdentifier",
  "datasetSlug"
 ],
 "properties": {
  "end": {
   "type": "string",
   "description": "ISO-8601 or YYYY-MM-DD end time."
  },
  "start": {
   "type": "string",
   "description": "ISO-8601 or YYYY-MM-DD start time."
  },
  "datasetSlug": {
   "type": "string",
   "description": "Metric dataset slug to fetch (for example \"price_usd\"); available slugs come from GET /metrics/v2/assets/metrics."
  },
  "granularity": {
   "type": "string",
   "description": "Sampling interval for the timeseries route variant; priced granularities are 1d, 1h, 15m, and 5m."
  },
  "entityIdentifier": {
   "type": "string",
   "description": "Asset identifier to query timeseries for (use the same id/slug format accepted by Metrics V2, e.g. \"bitcoin\")."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "example": {
  "data": [
   {
    "value": 0,
    "timestamp": "2025-01-01T00:00:00Z"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/messari-asset-metrics-15-minute-time-series-2b49f3fc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.messari.io](https://www.zero.xyz/host/api.messari.io/llms.txt)
