# Messari Crypto Asset Mindshare Losers (7-Day)

> Messari Crypto Asset Mindshare Losers (7-Day) 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 crypto assets that have lost the most mindshare (social/attention share) over the past 7 days, with momentum and sentiment scores.

## Facts

- Endpoint: GET https://api.messari.io/signal/v1/assets/mindshare-losers-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-crypto-asset-mindshare-losers-7-day-b27275bc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_edKxlWbsffmRqnMkUTRew

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-crypto-asset-mindshare-losers-7-day-b27275bc
```

Example prompt: Show me the top 20 crypto assets that have lost the most mindshare on Messari over the last 7 days, starting from page 1 — I want to see their momentum scores, sentiment scores, and how much their mindshare has changed.

## When to prefer this

Use this endpoint when you need to identify crypto assets losing social attention or mindshare over a 7-day window, particularly for contrarian analysis, risk monitoring, or tracking declining community interest. Prefer this over general news feeds or price-based endpoints when the focus is on social signal decay rather than price action.

## Known failure modes

- Invalid page or limit parameter returns 400 Bad Request
- Authentication failure or missing x402 payment returns 402 Payment Required
- Rate limiting exceeded returns 429 Too Many Requests
- Service unavailable returns 503
- Empty data array returned if no assets qualify for mindshare losers in the period

## How this service works

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

## Output

A paginated list of crypto assets that have experienced the largest mindshare declines over the past 7 days. Each result includes the asset ID, name, symbol, market rank, momentum score (0-1), sentiment score (0-1), and the numeric mindshare change value indicating the magnitude of the decline.

## 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-crypto-asset-mindshare-losers-7-day-b27275bc/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)
