# TokenSense MPP resolveToken

> TokenSense MPP resolveToken is a paid API for AI agents from x402.wach.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-19).

Resolves a token ticker symbol to its Base network contract address using the TokenSense API via MPP payment protocol.

## Facts

- Endpoint: GET https://x402.wach.ai/mpp/resolveToken
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-19
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tokensense-mpp-resolvetoken-1e03763c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kBc-1Kzr1Elrnz11G-E3c

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 tokensense-mpp-resolvetoken-1e03763c
```

Example prompt: What is the Base network contract address for the token ticker DEGEN?

## When to prefer this

Choose this endpoint when you need to programmatically resolve a human-readable token ticker (e.g. 'DEGEN', 'BRETT') to its exact Base network contract address, especially in agentic DeFi workflows, trade execution pipelines, or token verification flows where the correct on-chain address is critical.

## Known failure modes

- Unknown or unlisted ticker symbol returns no result or error
- Ticker that exists on multiple chains may return ambiguous or incorrect address
- Payment failure via MPP protocol results in 402 or payment error response
- Network timeout if the TokenSense backend is unavailable
- Ticker case sensitivity may cause failed lookups if not normalized

## How this service works

x402-paid TokenSense routes, with parallel MPP routes under /mpp/*.

## Output

Returns the Base network EVM contract address associated with the provided token ticker symbol, allowing agents to identify and interact with the correct on-chain token contract.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "ticker"
 ],
 "properties": {
  "ticker": {
   "type": "string",
   "description": "Token ticker symbol to resolve to a Base token contract address."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tokensense-mpp-resolvetoken-1e03763c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.wach.ai](https://www.zero.xyz/host/x402.wach.ai/llms.txt)
