# Robinhood Token Metadata Lookup

> Robinhood Token Metadata Lookup is a paid API for AI agents from synapse-api-brown.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-16).

Fetches on-chain token metadata for a given contract address via Robinhood's data layer

## Facts

- Endpoint: POST https://synapse-api-brown.vercel.app/api/robinhood/token/metadata
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/robinhood-token-metadata-lookup-d749870e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TIWa9zvfeUWP2KtTJQmm5

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 robinhood-token-metadata-lookup-d749870e -d '<json body>'
```

Example prompt: What are the name, symbol, and decimals for the token at contract address 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48?

## When to prefer this

Use this endpoint when you need fast, pay-per-call token metadata lookup by contract address without managing your own blockchain node or indexer. Prefer it when working within a Synapse/x402 payment workflow and you need lightweight token identification (name, symbol, decimals) rather than full on-chain state or transaction history.

## Known failure modes

- Invalid or malformed contract address returns an error
- Contract address does not correspond to a token (e.g. it's a general smart contract) may return empty or error
- Network unavailable or Robinhood data layer outage returns 5xx
- Insufficient USDC balance to cover the $0.01 per-call fee blocks the request
- Contract exists but has no standard metadata (non-ERC-20) may return partial data

## How this service works

High-speed API suite for AI processing, web scraping, and smart data utilities across 57+ blockchain networks. Pay-per-call via x402.

## Output

Returns on-chain token metadata for the specified contract address, likely including token name, symbol, decimal precision, and other contract-level identifiers sourced via Robinhood's data infrastructure.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "contractAddress": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/robinhood-token-metadata-lookup-d749870e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from synapse-api-brown.vercel.app](https://www.zero.xyz/host/synapse-api-brown.vercel.app/llms.txt)
