# SolEnrich Token Trend Snapshot

> SolEnrich Token Trend Snapshot is a paid API for AI agents from api.solenrich.com, paid per call via x402, $0.006/call, status unknown (last checked 2026-09-15).

Returns daily metric snapshots with direction indicators (improving/declining/stable) for a Solana token over a configurable lookback window.

## Facts

- Endpoint: POST https://api.solenrich.com/entrypoints/token-trend/invoke
- Price: $0.006/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/solenrich-token-trend-snapshot-d9e41aff
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_j0LhsVCeaDROW34w1L791

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 solenrich-token-trend-snapshot-d9e41aff -d '<json body>'
```

Example prompt: Can you pull the 14-day daily trend snapshots for the Solana token with mint address EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v and return the results as JSON — I want to see which metrics are improving, declining, or stable?

## When to prefer this

Use this endpoint when you need time-series trend context for a specific Solana token — particularly the directional signal (improving/declining/stable) per metric — rather than a point-in-time price or a cross-token ranking. Prefer over the token ranking endpoint when the user asks specifically about one token's trajectory over days. Prefer over real-time feeds when historical daily cadence is sufficient.

## Known failure modes

- Invalid or non-existent mint address returns an error or empty result
- Mint address outside 32–44 character range is rejected by schema validation
- Requesting a lookback period not in the allowed enum (7d/14d/30d) fails validation
- No historical data available for a newly launched token
- Payment failure (x402) if USDC balance is insufficient

## How this service works

Daily snapshots with direction indicators (improving/declining/stable) per metric.

## Output

A set of daily snapshots for each tracked metric over the requested lookback period (7, 14, or 30 days), each annotated with a direction indicator — improving, declining, or stable — allowing the agent to assess momentum and trend direction per metric for the given Solana token.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "mint": {
   "type": "string",
   "maxLength": 44,
   "minLength": 32,
   "description": "Solana token mint address"
  },
  "format": {
   "enum": [
    "json",
    "llm",
    "both"
   ],
   "type": "string",
   "default": "json"
  },
  "lookback": {
   "enum": [
    "7d",
    "14d",
    "30d"
   ],
   "type": "string",
   "default": "7d"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "output": {
   "briefing": "string (llm format) or object (json format)"
  },
  "run_id": "uuid",
  "status": "succeeded"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/solenrich-token-trend-snapshot-d9e41aff/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.solenrich.com](https://www.zero.xyz/host/api.solenrich.com/llms.txt)
