# Tokenaru Token Lookup

> Tokenaru Token Lookup is a paid API for AI agents from tokenaru.vercel.app, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Resolves a token's contract address, chain, and CoinGecko-backed metadata from a natural language query about a coin or token.

## Facts

- Endpoint: GET https://tokenaru.vercel.app/api/lookup
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tokenaru-vercel-app-81231744
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Q3ZuouuH94GorulBrYY3E

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 tokenaru-vercel-app-81231744
```

Example prompt: What is the contract address for USDC on Base? I need the chain ID and CoinGecko metadata too.

## When to prefer this

Use this endpoint when you need to resolve a human-readable token or coin name into its on-chain contract address and chain metadata, especially when the user has provided a natural language description like 'USDC on Base' rather than a raw address. Prefer this over manual lookups when CoinGecko-sourced metadata and multi-chain support are needed.

## Known failure modes

- Token or coin not found in CoinGecko database — returns ok: false with an error message
- Ambiguous query matching multiple tokens — may return unexpected token
- Network or CoinGecko API unavailability causing lookup failure
- Token exists but has no contract address on the queried chain

## How this service works

Resolve a token contract address with CoinGecko-backed metadata.

## Output

Returns a JSON object with ok status, token name, symbol, contract address, chain ID, chain name, CoinGecko platform ID, and a source field indicating whether the data came from cache or live CoinGecko API.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "q": "USDC on Base"
  }
 }
}
```

## 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": [
      "q"
     ],
     "properties": {
      "q": {
       "type": "string",
       "description": "Natural language query: token/coin name, price request, trending, etc. Examples: 'USDC on Base', 'price of bitcoin', 'trending coins'"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "ok": {
       "type": "boolean"
      },
      "data": {
       "type": "object"
      },
      "name": {
       "type": "string"
      },
      "error": {
       "type": "string"
      },
      "token": {
       "type": "string"
      },
      "source": {
       "enum": [
        "cache",
        "coingecko_live"
       ],
       "type": "string"
      },
      "symbol": {
       "type": "string"
      },
      "address": {
       "type": "string"
      },
      "chainId": {
       "type": "string"
      },
      "message": {
       "type": "string"
      },
      "chainName": {
       "type": "string"
      },
      "capability": {
       "type": "string"
      },
      "coingeckoPlatformId": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tokenaru-vercel-app-81231744/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from tokenaru.vercel.app](https://www.zero.xyz/host/tokenaru.vercel.app/llms.txt)
