# SolEnrich Feed Latest – Trending Solana Token Rankings

> SolEnrich Feed Latest – Trending Solana Token Rankings is a paid API for AI agents from api.solenrich.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns a pre-computed, composite-signal ranked feed of trending Solana tokens, cached 24h with optional poll-shortcircuiting via a since timestamp.

## Facts

- Endpoint: POST https://api.solenrich.com/entrypoints/feed-latest/invoke
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/solenrich-feed-latest-trending-solana-token-rankings-d35abaed
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ut4JXN_-l0oDqvbpTcX_-

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-feed-latest-trending-solana-token-rankings-d35abaed -d '<json body>'
```

Example prompt: Pull the latest trending Solana token rankings from SolEnrich — I last checked at 2025-01-15T08:00:00Z, so skip the response if nothing's changed, and give me the results in LLM format.

## When to prefer this

Use this endpoint when you need a low-cost, high-frequency polling solution for trending Solana token rankings and want to avoid redundant processing via the since-based short-circuit. Prefer this over direct orchestration endpoints when you need a cached, composite-signal view of the Solana token landscape rather than real-time per-token lookups or wallet-specific signals.

## Known failure modes

- Cache miss on first call may cause slower lazy-population response
- Invalid ISO 8601 format for since parameter returns a validation error
- Unsupported format enum value returns a 400 bad request
- Service unavailable if upstream Solana data sources are unreachable
- Payment failure (x402) if USDC balance is insufficient

## How this service works

Pre-computed ranking of trending Solana tokens with composite-signal scoring. Cached 24h, lazy-populated on cache miss. Designed for recurring polling at lower per-call cost than direct orchestration. Pass `since` (ISO 8601) to short-circuit on no-change polls.

## Output

A ranked list of trending Solana tokens scored by a composite signal, returned as JSON or LLM-ready text (or both). If the since timestamp is provided and the feed has not been updated since then, returns unchanged=true with an empty payload, saving processing overhead. Otherwise returns full ranked token data with trend scores.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "since": {
   "type": "string",
   "format": "date-time",
   "description": "Optional ISO 8601 timestamp of last successful poll. If brief is not newer, response sets unchanged=true with empty payload."
  },
  "format": {
   "enum": [
    "json",
    "llm",
    "both"
   ],
   "type": "string",
   "default": "json"
  }
 }
}
```

## 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-feed-latest-trending-solana-token-rankings-d35abaed/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)
