# GoCreative DEX Token Info

> GoCreative DEX Token Info is a paid API for AI agents from api.gocreativeai.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Fetches decentralized exchange trading pairs, prices, liquidity, and volume data for a given token or DEX name from DexScreener

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/crypto/dex/%7Barg%7D
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-dex-token-info-4581282d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wCVSywgcYrKeAHpZNrKdf

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 gocreative-dex-token-info-4581282d
```

Example prompt: Pull up all the Uniswap trading pairs for AAVE — I want to see the current price, 24-hour volume, liquidity, and which chains it's trading on.

## When to prefer this

Use this endpoint when you need real-time DEX market data — prices, liquidity, volume, and pairs — for a specific token symbol or DEX name. Prefer this over centralized exchange APIs when researching DeFi tokens that may only trade on-chain. It is pay-per-call ($0.01 USDC) with no API key required, making it suitable for agent workflows using x402.

## Known failure modes

- Unknown or misspelled token/DEX argument returns empty results or 0 count
- Payment failure via x402 returns 402 Payment Required
- Rate limiting or server error returns 5xx
- Token exists but has no DEX pairs returns empty pairs array
- Truncated response if token has very many pairs

## How this service works

483,000+ pay-per-call data APIs and free tools built on official sources — finance, company &amp; government data, FRED, Census, crypto, calculators. USDC on Base via x402, native MCP. No API key, no signup.

## Output

Returns a list of DEX trading pairs matching the query, each with token name, symbol, contract address, chain, DEX name, USD price, market cap, fully diluted valuation, 24h trading volume, liquidity in USD, 24h price change percentage, and a DexScreener URL for the pair.

## Example request

```json
{
 "arg": "UNISWAP",
 "query_type": "token_info"
}
```

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "input"
     ],
     "properties": {
      "input": {
       "type": "string",
       "description": "endpoint argument"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gocreative-dex-token-info-4581282d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.gocreativeai.com](https://www.zero.xyz/host/api.gocreativeai.com/llms.txt)
