# TokenGuard Orca DeFi Analytics Endpoint

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

Retrieves Orca DEX liquidity, pool, and trading data for DeFi analytics and on-chain intelligence via the TokenGuard API

## Facts

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

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-orca-defi-analytics-endpoint-cf899a37 -d '<json body>'
```

Example prompt: Pull the latest Orca DEX pool stats and liquidity data for the SOL/USDC trading pair so I can see current TVL, volume, and pricing.

## When to prefer this

Choose this endpoint when you need on-chain Orca DEX-specific pool and liquidity analytics for Solana-based trading pairs, especially when combined with ERC-20 safety checks or broader DeFi analytics available across the TokenGuard suite. Best for agents that require micropayment-gated, structured DeFi data without building their own Solana RPC integration.

## Known failure modes

- Invalid or unsupported pool identifier returns empty or error JSON
- Unknown token address returns no results
- Payment not processed correctly via x402 micropayment returns 402 or authorization error
- Hugging Face Space may be sleeping/cold-starting causing timeout on first request
- Rate limiting if too many calls are made in rapid succession

## How this service works

orca data for AI agents.

## Output

Returns a JSON object containing Orca DEX pool and liquidity analytics, including pool identifiers, token pair details, total value locked (TVL), trading volume, pricing, and related on-chain DeFi metrics.

## 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-orca-defi-analytics-endpoint-cf899a37/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)
