# Messari API — Daily Crypto Asset Social Signal History

> Messari API — Daily Crypto Asset Social Signal History is a paid API for AI agents from api.messari.io, paid per call via x402, $0.75/call, status unknown (last checked 2026-09-15).

Returns daily time-series data of social signals (mindshare, momentum, and sentiment scores) for crypto assets.

## Facts

- Endpoint: GET https://api.messari.io/signal/v1/assets/time-series/1d
- Price: $0.75/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/messari-api-daily-crypto-asset-social-signal-history-e35effeb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yn9ZCPecC743U93adWuhg

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-api-daily-crypto-asset-social-signal-history-e35effeb
```

Example prompt: Pull the daily social signal history for Ethereum from Messari for the past 30 days — I want to see the mindshare, momentum score, and sentiment score at the 1d granularity.

## When to prefer this

Use this endpoint when you need daily-granularity historical social signal data for a crypto asset — specifically mindshare, sentiment, and momentum over a date range. Prefer this over the hourly endpoint when trend analysis over days, weeks, or months is the goal rather than intraday monitoring.

## Known failure modes

- Invalid or missing granularity parameter returns a 400 error
- Unknown assetID returns an empty dataset or 404
- Start/end date out of available historical range returns empty data
- Payment not fulfilled returns 402 Payment Required
- Rate limit exceeded returns 429 Too Many Requests

## How this service works

Get daily crypto asset social signal history.

## Output

An array of daily data points for the specified crypto asset, each containing a timestamp, mindshare score (percentage of social conversation), momentum score (directional social trend), and sentiment score (positive/negative tone) for that day.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "granularity"
 ],
 "properties": {
  "end": {
   "type": "string"
  },
  "start": {
   "type": "string"
  },
  "assetID": {
   "type": "string",
   "description": "Optional asset identifier filter for asset timeseries."
  },
  "granularity": {
   "enum": [
    "1d",
    "1h"
   ],
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "example": {
  "data": [
   {
    "mindshare": 11.9,
    "timestamp": "2026-01-01T00:00:00Z",
    "momentumScore": 0.38,
    "sentimentScore": 0.61
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/messari-api-daily-crypto-asset-social-signal-history-e35effeb/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)
