# NetIntel Token Info

> NetIntel Token Info is a paid API for AI agents from netintel-production-440c.up.railway.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Looks up on-chain and market data for an ERC-20 token by contract address on Base or Ethereum, returning name, symbol, price, liquidity, holders, supply, and top trading pool.

## Facts

- Endpoint: GET https://netintel-production-440c.up.railway.app/token/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/netintel-token-info-7377d314
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6jyvG4IF5Gwg8IvXT09FL

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 netintel-token-info-7377d314
```

Example prompt: What are the current price, holder count, and top trading pool for the USDC token at contract address 0x833589fcd6edb6e08f4c7c32d4f71b54bda02913 on Base?

## When to prefer this

Use this endpoint when you need real-time or near-real-time ERC-20 token metadata and market data for a specific contract address on Base or Ethereum without needing an API key. It aggregates RPC, DexScreener, and Blockscout data in a single call, making it ideal for DeFi agents, token screening workflows, or any automation needing price, supply, liquidity, and holder data in one shot. Pay only $0.02 USDC per successful call with no charge on failures.

## Known failure modes

- Invalid contract address format returns a validation error (not billed)
- Address is not an ERC-20 contract — may return is_contract: false with null token fields
- Unsupported chain value returns input validation error (not billed)
- Upstream RPC or DexScreener outage causes server error (not billed)
- Token exists but has no DEX pool — top_pool returns null, price_usd and liquidity_usd return null
- Stale data when cache is old — stale: true flag returned in response

## How this service works

Network intelligence API — 138 endpoints, all pay-per-call via x402 micropayments (USDC on Base or Solana mainnet).

NetIntel is agent fair-trade aligned: transparent per-call pricing in USDC on Base or Solana via x402, no API keys or signup, and automatic no-charge on server errors, upstream failures, and input-validation rejections — failed calls are never billed across NetIntel's network, domain, and data-intelligence endpoints.

## Output

Returns a JSON object with the token's name, symbol, chain, contract address, USD price, total supply (raw and formatted), decimal places, holder count, top trading pool (DEX name, pair, and DexScreener URL), 24h volume in USD, liquidity in USD, data source (e.g. rpc+dexscreener+blockscout), whether data is stale, cache age in seconds, and any findings/flags about the token.

## 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",
     "required": [
      "address"
     ],
     "properties": {
      "chain": {
       "type": "string",
       "description": "base (default) or ethereum (eth accepted). Alias: network"
      },
      "address": {
       "type": "string",
       "description": "ERC-20 contract address: 0x + 40 hex chars, checksum case ignored. Aliases: contract, token, contract_address"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "name": {
       "type": [
        "string",
        "null"
       ]
      },
      "chain": {
       "type": "string"
      },
      "stale": {
       "type": "boolean"
      },
      "source": {
       "type": "string",
       "description": "e.g. \"rpc+dexscreener+blockscout\""
      },
      "symbol": {
       "type": [
        "string",
        "null"
       ]
      },
      "address": {
       "type": "string"
      },
      "holders": {
       "type": [
        "number",
        "null"
       ]
      },
      "decimals": {
       "type": [
        "number",
        "null"
       ]
      },
      "findings": {
       "type": "array"
      },
      "top_pool": {
       "type": [
        "object",
        "null"
       ],
       "properties": {
        "dex": {
         "type": "string"
        },
        "url": {
         "type": [
          "string",
          "null"
         ]
        },
        "pair": {
         "type": "string"
        }
       }
      },
      "price_usd": {
       "type": [
        "number",
        "null"
       ]
      },
      "is_contract": {
       "type": "boolean"
      },
      "total_supply": {
       "type": [
        "string",
        "null"
       ],
       "description": "raw atomic units as a decimal string — can exceed Number.MAX_SAFE_INTEGER"
      },
      "liquidity_usd": {
       "type": [
        "number",
        "null"
       ]
      },
      "volume_24h_usd": {
       "t
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "name": "USD Coin",
  "chain": "base",
  "stale": false,
  "source": "rpc+dexscreener+blockscout",
  "symbol": "USDC",
  "address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
  "holders": 12726127,
  "decimals": 6,
  "findings": [],
  "top_pool": {
   "dex": "uniswap",
   "url": "https://dexscreener.com/base/0xa0ab20a64f46b5676fe1542cb87b454e5104007689e0eef4212aa0cbe34933a1",
   "pair": "USDC/USDbC"
  },
  "price_usd": 0.9999,
  "is_contract": true,
  "total_supply": "4156545500926116",
  "liquidity_usd": 907385.42,
  "volume_24h_usd": 803.46,
  "cache_age_seconds": 0,
  "total_supply_formatted": 4156545500.926116
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/netintel-token-info-7377d314/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from netintel-production-440c.up.railway.app](https://www.zero.xyz/host/netintel-production-440c.up.railway.app/llms.txt)
