# Syra DexScreener Pairs Lookup

> Syra DexScreener Pairs Lookup is a paid API for AI agents from api.syraa.fun, paid per call via x402, $0.00108/call, status unknown (last checked 2026-09-14).

Fetches DEX trading pair data from DexScreener for a given token on a specified chain, via a pay-per-call API on Solana.

## Facts

- Endpoint: GET https://api.syraa.fun/dexscreener/pairs
- Price: $0.00108/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/syra-dexscreener-pairs-lookup-206e2e08
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gSWMcZVNxd0U0gWBkna7E

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 syra-dexscreener-pairs-lookup-206e2e08
```

Example prompt: Can you look up the DexScreener trading pairs for the Solana token at mint address So11111111111111111111111111111111111111112 and tell me which DEXes it's listed on and what the liquidity looks like?

## When to prefer this

Use this endpoint when an AI agent needs real-time DEX pair data for a token and is operating in a Solana-native, x402 micropayment environment. Prefer this over direct DexScreener API access when the agent already has an x402-compatible wallet and wants to pay $0.001 USDC per call without API key management. Best for agents doing token research, pre-trade liquidity checks, or monitoring new token listings on Solana DEXes.

## Known failure modes

- Missing both 'q' and the 'chainId'+'tokenAddress' combination — endpoint requires at least one valid search method
- Invalid or non-existent token address returns empty pairs array
- Unsupported chainId value causes an error or empty response
- Payment failure (insufficient USDC balance) results in 402 response with no data
- Rate limiting or network timeout if DexScreener upstream is slow

## How this service works

Machine money for agents on Solana: live x402 pay-per-call APIs, MCP tools, typed SDK. Earn · Treasury · Invest · Spend · Grow.

## Output

Returns JSON with DEX pair data for the queried token, including pair addresses, base/quote tokens, price, liquidity, 24h volume, and the DEX platform each pair is on. The response includes an 'ok' and 'paid' status confirming the x402 micropayment was processed.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "queryParams": {
      "q": {
       "type": "string",
       "required": false,
       "description": "Search query (alternative to chainId + tokenAddress)"
      },
      "chainId": {
       "type": "string",
       "required": false,
       "description": "Chain id (e.g. solana, base, ethereum) — required with tokenAddress"
      },
      "tokenAddress": {
       "type": "string",
       "required": false,
       "description": "Token contract/mint address — required with chainId"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "paid": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/syra-dexscreener-pairs-lookup-206e2e08/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.syraa.fun](https://www.zero.xyz/host/api.syraa.fun/llms.txt)
