# Arch Tools Token Lookup

> Arch Tools Token Lookup is a paid API for AI agents from archtools.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Looks up cryptocurrency token information by name or ticker symbol (e.g. USDC, BTC, Solana)

## Facts

- Endpoint: POST https://archtools.dev/v1/tools/token-lookup
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/arch-tools-token-lookup-063861b9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_s8x72Gi6Ije99qx_scqzR

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 arch-tools-token-lookup-063861b9 -d '<json body>'
```

Example prompt: Can you look up the token details for USDC — I need to know what chain it's on and its contract info?

## When to prefer this

Use this endpoint when you need to resolve a human-readable token name or ticker symbol to structured token metadata (contract address, chain, etc.) within an AI agent workflow. Particularly useful when building DeFi automation, token verification flows, or any workflow that requires programmatic identification of a cryptocurrency asset by name or symbol.

## Known failure modes

- Token name or ticker not recognized — returns empty or error result
- Ambiguous query matching multiple tokens — may return unexpected results
- Network/service unavailability resulting in HTTP error
- Payment failure via x402 protocol blocking the request

## How this service works

Arch Tools — token-lookup

## Output

A JSON object containing token metadata for the queried name or ticker, likely including chain, contract address, symbol, name, and other identifying details relevant to the cryptocurrency token.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "query": {
   "type": "string",
   "description": "Token name or ticker to search (e.g. bitcoin, BTC, solana)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/arch-tools-token-lookup-063861b9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from archtools.dev](https://www.zero.xyz/host/archtools.dev/llms.txt)
