# SOL Enrich Natural Language Query Router

> SOL Enrich Natural Language Query Router is a paid API for AI agents from api.solenrich.com, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Routes plain-English questions about Solana wallets or tokens to one or more specialized enrichers, chaining them in parallel for compound intents

## Facts

- Endpoint: POST https://api.solenrich.com/entrypoints/query/invoke
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sol-enrich-natural-language-query-router-72535f1b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VJ--aGPHsZFIizAbESJkr

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 sol-enrich-natural-language-query-router-72535f1b -d '<json body>'
```

Example prompt: Should I buy this token — CA: 7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU? Give me a full breakdown: is it safe, what are whales doing, and what's the trend looking like? Return as JSON.

## When to prefer this

Use this endpoint when you want a single natural-language interface to Solana on-chain data without knowing which specific enricher to call. Ideal for compound questions like 'should I buy X?' that require parallel enrichment across due diligence, whale signals, and trend data. Prefer this over individual enricher endpoints when the question scope is ambiguous or multi-faceted.

## Known failure modes

- Question too vague or under 3 characters — validation error
- Question exceeds 500 character limit — truncation or rejection
- Enricher downstream timeout — partial or empty results
- Invalid wallet/token address in question — enricher returns no data
- Unsupported intent — no matching enricher route found

## How this service works

Plain English questions routed to the right enricher(s). Single-intent ("is X safe?") hits one enricher; compound intents chain 2-3 in parallel: "should I buy X?" → DD + trend + whales; "wallet deep dive" → profile + history + perps; "what's trending?" → trending-signals; "SOL-PERP funding rate" → perps-market.

## Output

A structured or LLM-formatted response aggregating outputs from one or more specialized Solana enrichers — may include token safety signals, whale activity, trend data, wallet profile, transaction history, perp market funding rates, or any combination depending on the question's intent.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "format": {
   "enum": [
    "json",
    "llm",
    "both"
   ],
   "type": "string",
   "default": "json"
  },
  "question": {
   "type": "string",
   "maxLength": 500,
   "minLength": 3,
   "description": "Natural language question about a Solana wallet or token"
  }
 }
}
```

## 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/sol-enrich-natural-language-query-router-72535f1b/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)
