# DexScreener Token Quicklook via proxy.suverse.io

> DexScreener Token Quicklook via proxy.suverse.io is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Returns a multi-chain DexScreener snapshot for a token contract or Solana mint, including top pairs, price in USD, FDV, market cap, 24h volume, liquidity, and 5m/1h/6h/24h price changes.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/token-quicklook
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dexscreener-token-quicklook-via-proxy-suverse-io-b229ae4e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IDl4h4rTx_vdvboJNWHBC

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 dexscreener-token-quicklook-via-proxy-suverse-io-b229ae4e -d '<json body>'
```

Example prompt: Pull me a quick DexScreener snapshot for the Solana token at mint address EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v — I want the current price, market cap, FDV, liquidity, 24h volume, and price changes for 5m, 1h, 6h, and 24h.

## When to prefer this

Use this endpoint when you need a fast, multi-chain DexScreener market snapshot for any token given only its contract or Solana mint address — especially when you want multiple timeframe price changes (5m/1h/6h/24h), liquidity, FDV, and top pairs in a single call. Prefer this over manual DexScreener scraping or on-chain RPC calls when you need aggregated DEX market data without building chain-specific integrations.

## Known failure modes

- Invalid or unrecognized token contract address returns empty or error response
- Token not listed on DexScreener returns no pair data
- Malformed contract address causes validation failure
- Network timeouts or DexScreener API downtime result in upstream errors
- Very new tokens with no trading history may return minimal or null metrics

## How this service works

DexScreener token snapshot across chains: top pairs with price USD, FDV, market cap, 24h volume, liquidity, and 5m/1h/6h/24h price change. Pass a token contract or Solana mint; multi-chain auto-detected.

## Output

Returns top trading pairs for the token with per-pair data including: price in USD, fully diluted valuation (FDV), market cap, 24-hour trading volume, liquidity depth, and percentage price changes over 5-minute, 1-hour, 6-hour, and 24-hour windows. Chain is auto-detected from the contract or mint address provided.

## 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": {
     "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"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/dexscreener-token-quicklook-via-proxy-suverse-io-b229ae4e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
