# Messari Crypto Mindshare Gainers 7D

> Messari Crypto Mindshare Gainers 7D is a paid API for AI agents from api.messari.io, paid per call via x402, $0.35/call, status unknown (last checked 2026-09-15).

Returns the top cryptocurrency assets that gained the most mindshare (social/narrative attention) over the last 7 days.

## Facts

- Endpoint: GET https://api.messari.io/signal/v1/assets/mindshare-gainers-7d
- Price: $0.35/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/messari-01412e86
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_F_VEWKDw4PCD4P8GoysjJ

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-01412e86
```

Example prompt: Show me the top 20 crypto assets that gained the most mindshare on Messari over the last 7 days, starting from page 1.

## When to prefer this

Use this endpoint when you need a 7-day view of crypto narrative momentum rather than a 24-hour snapshot — ideal for weekly trend reports, portfolio research, or identifying projects gaining sustained attention over multiple days. Prefer over the 24h variant when short-term noise needs to be smoothed out.

## Known failure modes

- Invalid page or limit parameters return a 400 error
- Payment not included or insufficient returns a 402 error
- No data available for the time window returns an empty result set
- Rate limiting may return a 429 response

## How this service works

Get top crypto asset mindshare gainers over the last 7 days.

## Output

A paginated list of cryptocurrency assets ranked by mindshare gain over the prior 7 days, including asset identifiers, names, and mindshare metrics indicating which projects are capturing increasing narrative or social attention.

## Example request

```json
{
 "page": 1,
 "limit": 20
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "page": {
   "type": "integer",
   "minimum": 1
  },
  "limit": {
   "type": "integer",
   "minimum": 1
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "example": {
  "data": [
   {
    "id": "bitcoin",
    "name": "Bitcoin",
    "rank": 1,
    "symbol": "BTC",
    "momentumScore": 0.49,
    "sentimentScore": 0.66,
    "mindshareChange": 1.7
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/messari-01412e86/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)
