# TokenGuard Raydium DeFi Data Endpoint

> TokenGuard Raydium DeFi Data Endpoint is a paid API for AI agents from eltociear-tokenguard.hf.space, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Fetches Raydium DEX market data, pool analytics, and liquidity information for DeFi analysis on the Solana ecosystem

## Facts

- Endpoint: POST https://eltociear-tokenguard.hf.space/raydium
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tokenguard-raydium-defi-data-endpoint-c49f993e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DqXXmBZmX6B3Aqj8c9HR0

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 tokenguard-raydium-defi-data-endpoint-c49f993e -d '<json body>'
```

Example prompt: Can you pull the latest Raydium pool data for SOL/USDC on Solana — I want to see liquidity, trading volume, and current APY?

## When to prefer this

Choose this endpoint when you specifically need Raydium DEX data on Solana — pool liquidity, AMM swap rates, or yield farming APY — and you are operating in an x402 micropayment-enabled agent context on Base. Prefer this over generic crypto price APIs when Solana DeFi pool-level granularity is required. It is part of a 65-route tokenguard suite, so it is well-suited for agents already using TokenGuard for broader DeFi analytics.

## Known failure modes

- Empty JSON response if pool identifier is invalid or not found on Raydium
- Payment failure if x402 micropayment of $0.01 USDC is not properly attached
- Timeout or 5xx error if Hugging Face Space is cold-starting or overloaded
- Stale or incomplete data if the underlying on-chain data source is lagging
- Rate limiting if too many requests are made without valid micropayment headers

## How this service works

raydium data for AI agents.

## Output

Returns a JSON object containing Raydium DEX data such as pool liquidity (TVL), 24h trading volume, token prices, APY/APR for liquidity providers, fee tiers, and pool pair metadata for Solana-based Raydium AMM pools.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "required": [],
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tokenguard-raydium-defi-data-endpoint-c49f993e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from eltociear-tokenguard.hf.space](https://www.zero.xyz/host/eltociear-tokenguard.hf.space/llms.txt)
