# Messari X User Social Signal Daily Time Series

> Messari X User Social Signal Daily Time Series 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 historical social signal metrics (mindshare, sentiment, engagement) for X (Twitter) users in the crypto space

## Facts

- Endpoint: GET https://api.messari.io/signal/v1/x-users/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-x-user-social-signal-daily-time-series-2322f022
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bafRCuy7cPhCwCCeYTSBv

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-x-user-social-signal-daily-time-series-2322f022
```

Example prompt: Pull the daily social signal history for X user ID '12345678' on Messari from January 1, 2025 to March 31, 2025 — I want to see how their mindshare, sentiment, and engagement scores trended each day over that period.

## When to prefer this

Choose this endpoint when you need historical daily-granularity social signal trends for a specific X user in the crypto space — particularly for charting mindshare, sentiment, and engagement over time. Use the sibling hourly endpoint for finer resolution, or the asset-focused endpoint for crypto asset social signals rather than user signals. Best for longitudinal influencer analysis or detecting trend shifts day by day.

## Known failure modes

- Missing required 'granularity' parameter (must be '1d') returns a 400 validation error
- Invalid or unrecognized xUserID returns empty data array or 404
- Date range too broad or no data available for the period returns an empty array
- Payment not provided or insufficient USDC balance returns a 402 Payment Required
- Malformed date strings in start/end fields return a 400 parse error

## How this service works

Get daily X user social signal history.

## Output

An array of daily data points, each containing a timestamp, mindshare score, sentiment score, and engagement score for the specified X user (or all tracked users if no user ID is filtered). Data is returned at 1-day granularity covering the requested date range.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "example": {
  "data": [
   {
    "mindshare": 2.1,
    "timestamp": "2026-01-01T00:00:00Z",
    "sentimentScore": 0.56,
    "engagementScore": 0.47
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/messari-x-user-social-signal-daily-time-series-2322f022/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)
