# 402.com.tr Token Info

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

Returns metadata (name, symbol, logo, website, socials) plus price and liquidity data for a Base token contract address, sourced from DexScreener.

## Facts

- Endpoint: GET https://402.com.tr/api/x402/token-info
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/402-com-tr-token-info-64fe4b49
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gbxcfh5gx3yJ0LSyAMPJ4

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-token-info-64fe4b49
```

Example prompt: Can you look up the token info for the Base contract 0x4ed4E862860beD51a9570b96d89aF5E1B0Efefed — I need its name, symbol, logo, official website, and any social links like Twitter or Telegram, plus its current price and liquidity?

## When to prefer this

Use this endpoint when you need to enrich a known Base token contract address with human-readable metadata (name, symbol, logo, socials) and current market data (price, liquidity) from DexScreener. Prefer this over general-purpose blockchain explorers when you specifically need social links and DexScreener-sourced price/liquidity in one call.

## Known failure modes

- Token contract address not found on DexScreener — returns empty or 404-like response
- Invalid or malformed contract address — returns validation error
- Token exists on a chain other than Base — may return no results
- DexScreener data unavailable or rate-limited — upstream error propagated
- Token is newly listed with no liquidity data yet — partial response

## How this service works

Metadata for a Base token: name, symbol, logo image, official website and social links (X/Telegram/etc.) plus price & liquidity — from DexScreener. For agents and UIs enriching a token.

## Output

A JSON object containing the token's name, symbol, logo image URL, official website, social media links (X/Twitter, Telegram, etc.), current price, and liquidity figures — all sourced from DexScreener for the given Base token contract address.

## 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": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "description": "Token contract 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-token-info-64fe4b49/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)
