# SolEnrich Consensus Signal — Agent Query Trending Tokens & Wallets

> SolEnrich Consensus Signal — Agent Query Trending Tokens & Wallets 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 which Solana tokens or wallets are most queried by AI agents right now, derived from SolEnrich's own live query stream, with rank, percentile, and trend data over 1h/6h/24h windows.

## Facts

- Endpoint: POST https://api.solenrich.com/entrypoints/consensus-signal/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-consensus-signal-agent-query-trending-tokens-wallets-1dc0ce86
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_q_RjIHyHVPBf-JZUDWx8O

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-consensus-signal-agent-query-trending-tokens-wallets-1dc0ce86 -d '<json body>'
```

Example prompt: What are the top 10 Solana tokens being queried by other AI agents right now, based on the last 6-hour consensus signal window? Return results as JSON.

## When to prefer this

Use this endpoint when you want to understand what other AI agents are actively researching on Solana — a unique signal unavailable from market data providers. Ideal for detecting early consensus forming around a token or wallet before it shows up in price or volume data. Choose this over market volume endpoints when you want agent-driven demand signals rather than trader-driven ones.

## Known failure modes

- Invalid or malformed Solana address returns a validation error
- Address not found in query stream returns empty or null rank data
- Window enum value outside allowed set (1h/6h/24h) returns 400 error
- Limit exceeding maximum of 50 returns validation error
- Payment not attached or insufficient USDC results in x402 payment required response
- Service temporarily unavailable if query stream pipeline is down

## How this service works

What tokens or wallets are being queried by other agents right now. Derived from SolEnrich's own query stream — not market volume. Two modes: pass `address` for that entity's rank/percentile/trend; omit it for the top-N most-queried entities in the window. Windows: 1h, 6h, 24h. Unique data — only available because we serve agents directly.

## Output

Returns either a ranked list of the top-N most-queried Solana tokens or wallets in the selected time window (with query counts, ranks, and trend signals), or — when a specific address is provided — that entity's rank, percentile, and query trend within the window. Output format can be raw JSON, LLM-friendly text, or both.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "type": {
   "enum": [
    "token",
    "wallet"
   ],
   "type": "string",
   "default": "token"
  },
  "limit": {
   "type": "integer",
   "default": 10,
   "maximum": 50,
   "minimum": 1,
   "description": "Top-N size when address is omitted"
  },
  "format": {
   "enum": [
    "json",
    "llm",
    "both"
   ],
   "type": "string",
   "default": "json"
  },
  "window": {
   "enum": [
    "1h",
    "6h",
    "24h"
   ],
   "type": "string",
   "default": "1h"
  },
  "address": {
   "type": "string",
   "maxLength": 44,
   "minLength": 32,
   "description": "Optional Solana address — single-entity report when provided"
  }
 }
}
```

## 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-consensus-signal-agent-query-trending-tokens-wallets-1dc0ce86/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)
