# DappLooker Crypto Token Metadata List

> DappLooker Crypto Token Metadata List is a paid API for AI agents from api.dapplooker.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Fetches a paginated list of indexed crypto tokens with essential metadata for a specified blockchain chain and optional ecosystem or token addresses.

## Facts

- Endpoint: GET https://api.dapplooker.com/v1/crypto-metainfo
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dapplooker-crypto-token-metadata-list-b178aed3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oNziJ2GEpFc0TImSSCpCy

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 dapplooker-crypto-token-metadata-list-b178aed3
```

Example prompt: Show me all indexed crypto tokens on the Ethereum chain from DappLooker — give me page 1 and include any available metadata like addresses and ecosystem info.

## When to prefer this

Use this endpoint when you need to discover, enumerate, or validate the full set of crypto tokens tracked by DappLooker on a specific blockchain. It is best for building token registries, validating token addresses, or bootstrapping downstream analytics pipelines. Prefer this over search-based endpoints when you need a complete or paginated list rather than a specific token lookup.

## Known failure modes

- Missing required 'chain' parameter returns a 400 validation error
- Invalid or unsupported chain identifier returns empty results or 404
- Invalid API key returns 401 unauthorized
- Page number out of range returns empty list or error
- Rate limiting or quota exceeded returns 429 too many requests
- Network timeout or service unavailability returns 5xx error

## How this service works

Fetch a complete list of indexed crypto tokens along with essential metadata. Useful for discovery, enumeration, and validation of active tokens across supported chains and protocols.

## Output

A paginated list of crypto tokens indexed on the specified blockchain chain, including token metadata such as addresses, ecosystem affiliations, and other descriptive fields for each token.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "chain"
 ],
 "properties": {
  "page": {
   "type": "number",
   "description": "Page number for pagination"
  },
  "chain": {
   "type": "string",
   "description": "Blockchain chain identifier"
  },
  "api_key": {
   "type": "string",
   "description": "API key for authentication"
  },
  "ecosystem": {
   "type": "string",
   "description": "Ecosystem name"
  },
  "token_addresses": {
   "type": "string",
   "description": "Comma-separated token addresses"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/dapplooker-crypto-token-metadata-list-b178aed3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.dapplooker.com](https://www.zero.xyz/host/api.dapplooker.com/llms.txt)
