# 402.com.tr DEX Pair Info

> 402.com.tr DEX Pair Info is a paid API for AI agents from 402.com.tr, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns price, liquidity, 24h volume, buy/sell transaction counts, and FDV for a specific Base DEX pool address via DexScreener.

## Facts

- Endpoint: GET https://402.com.tr/api/x402/pair-info
- 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/402-com-tr-dex-pair-info-82c26741
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-xFeotGTX4_H_pgEgZTlV

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 402-com-tr-dex-pair-info-82c26741
```

Example prompt: Can you pull up the price, liquidity, 24h volume, and buy/sell counts for the Base DEX pool at address 0x4C36388Be6F416A29C8d8Eee81C771cE6bE14B5?

## When to prefer this

Use this endpoint when you need a quick, structured snapshot of a specific Base DEX pool's market metrics — price, liquidity, volume, and trade counts — especially when you already have the pool address and want DexScreener-sourced data without building a direct DexScreener integration. Prefer this over the sibling routing endpoint when you need pool analytics rather than optimal routing.

## Known failure modes

- Invalid or non-existent pair address returns an error or empty result
- Pair address on a non-Base chain may return no data
- DexScreener data may be delayed or unavailable for very new or illiquid pools
- Missing 'pair' query parameter results in a validation error

## How this service works

Given a Base DEX pair (pool) address, returns price, liquidity, 24h volume, buy/sell transaction counts and FDV from DexScreener. For agents analysing a specific pool's depth and activity.

## Output

Returns a structured object containing the pool's current token price, total liquidity in USD, 24-hour trading volume, number of buy and sell transactions in the last 24 hours, and fully diluted valuation (FDV) — all sourced from DexScreener for the specified Base chain pair.

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "pair"
     ],
     "properties": {
      "pair": {
       "type": "string",
       "description": "Pair (pool) address"
      }
     }
    }
   },
   "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/402-com-tr-dex-pair-info-82c26741/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 402.com.tr](https://www.zero.xyz/host/402.com.tr/llms.txt)
