# BlockRun.AI Project Mindshare Time Series

> BlockRun.AI Project Mindshare Time Series is a paid API for AI agents from blockrun.ai, paid per call via x402, $0.0075/call, status unknown (last checked 2026-09-13).

Returns time-series data showing the relative social mindshare (attention/buzz) of a crypto project over a specified interval

## Facts

- Endpoint: GET https://blockrun.ai/api/v1/surf/social/mindshare
- Price: $0.0075/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/blockrun-ai-f2c04358
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YpTf7MG6_uqCBWZluo8-P

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 blockrun-ai-f2c04358
```

Example prompt: Show me the social mindshare time series for Solana over the past 7 days, using a daily interval — I want to see how community attention has trended recently.

## When to prefer this

Use this endpoint when you need historical social mindshare trend data for a specific crypto project — ideal for tracking how community attention has evolved over time, detecting hype cycles, or building sentiment dashboards. Prefer over raw social data endpoints when you need pre-aggregated time-series mindshare rather than raw post/mention counts.

## Known failure modes

- Missing required 'q' parameter returns an error
- Missing required 'interval' parameter returns an error
- Unknown project name may return empty series or error
- Unsupported interval value may return a 400 error
- Payment not attached or insufficient causes 402 response

## How this service works

Pay for the outcome. One endpoint for every model, tool and data source an agent needs — each call priced before it runs, at the best value per dollar. 103 models and 100 data and tool APIs.

## Output

A time series of mindshare scores for the queried project, indexed by timestamp at the requested interval — showing how much relative social attention the project has captured over time.

## Example request

```json
{
 "q": "Solana",
 "interval": "1d"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "q": {
   "type": "string",
   "description": "Required query param"
  },
  "interval": {
   "type": "string",
   "description": "Required query param"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/blockrun-ai-f2c04358/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from blockrun.ai](https://www.zero.xyz/host/blockrun.ai/llms.txt)
