# AgentForge Token Intelligence

> AgentForge Token Intelligence is a paid API for AI agents from agentforge.191-44-109-76.sslip.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns a real-time token market snapshot including price, liquidity, turnover, and valuation ratios sourced from the highest-liquidity DexScreener pair for a given chain

## Facts

- Endpoint: POST https://agentforge.191-44-109-76.sslip.io/market/token-price
- 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/agentforge-token-intelligence-a083a568
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_G4puACFQiozRfgs3kaJ8d

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 agentforge-token-intelligence-a083a568 -d '<json body>'
```

Example prompt: What's the current price, liquidity, and valuation ratios for BRETT on Base — pull it from the highest-liquidity DEX pair?

## When to prefer this

Use this endpoint when you need a real-time, on-chain market snapshot for a specific token on a supported EVM or Solana chain and want the data sourced from the most liquid DEX pair available. It is particularly well-suited for DeFi agents that need price, liquidity, and valuation ratios in a single call rather than assembling them from multiple sources. Prefer this over generic price APIs when you need DEX-native liquidity and turnover metrics rather than CEX prices.

## Known failure modes

- Token not found on specified chain — returns empty or error if no DexScreener pair exists
- Ambiguous token symbol matching multiple contracts — may return unexpected token data
- Unsupported chain value — validation error if chain is not in the allowed enum
- Token address too long or malformed — schema validation error (minLength 1, maxLength 44)
- Low-liquidity or newly listed token — snapshot may have sparse or zero liquidity fields
- Network timeout — DexScreener upstream latency may cause delayed or failed response

## How this service works

Exact-chain token market snapshot with liquidity, turnover, and valuation ratios from the highest-liquidity matching DexScreener pair

## Output

A market snapshot object containing the token's current price, liquidity pool depth, 24h trading turnover, and valuation ratios (e.g. P/S, market cap estimates), sourced from the single highest-liquidity DexScreener trading pair matching the specified chain and token identifier.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "enum": [
    "base",
    "ethereum",
    "solana",
    "polygon",
    "arbitrum",
    "bsc"
   ],
   "type": "string",
   "default": "base"
  },
  "token": {
   "type": "string",
   "maxLength": 44,
   "minLength": 1,
   "description": "Token symbol or EVM/Solana address"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentforge-token-intelligence-a083a568/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentforge.191-44-109-76.sslip.io](https://www.zero.xyz/host/agentforge.191-44-109-76.sslip.io/llms.txt)
