# FomoScan Wallet Lookup

> FomoScan Wallet Lookup is a paid API for AI agents from www.fomoscan.dev, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-15).

Resolve a FOMO trader's profile using a verified on-chain Solana or EVM (0x-prefixed) wallet address

## Facts

- Endpoint: GET https://www.fomoscan.dev/v2/user/wallet/0xD5938dc56E24350cA762557F0b6253f1B2d2f8cb
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fomoscan-wallet-lookup-e1b71557
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_83soU3ZiTkwRimIRleJQ7

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 fomoscan-wallet-lookup-e1b71557
```

Example prompt: I have a wallet address — 0xD5938dc56E24350cA762557F0b6253f1B2d2f8cb — can you find out which FOMO trader profile is linked to it?

## When to prefer this

Use this endpoint only when you have an on-chain wallet address (Solana or 0x-prefixed EVM) and do NOT have the trader's FOMO handle or user ID. It costs $2.00 vs $0.10 for handle/user-ID lookups, so always prefer the cheaper alternatives when available. This is the right choice when starting from blockchain data (e.g. DEX trades, wallet analytics) and needing to cross-reference with FOMO social profiles.

## Known failure modes

- Wallet address not linked to any FOMO account — returns not found
- EVM address provided without 0x prefix — rejected or no match
- Invalid or malformed wallet address — bad request error
- Solana address confused with EVM format — no match returned
- Rate limiting or payment failure — access denied

## How this service works

Resolve a FOMO trader by verified Solana or 0x-prefixed EVM wallet. Use only when you have an on-chain address and neither handle nor user id — $2.00 vs $0.10 for those. Same User profile. EVM addresses must include 0x.

## Output

Returns a FOMO User profile object matching the provided wallet address, including stable user ID, handle, and other trader profile data — identical to results from handle or user ID lookups but resolved via on-chain wallet verification.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fomoscan-wallet-lookup-e1b71557/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.fomoscan.dev](https://www.zero.xyz/host/www.fomoscan.dev/llms.txt)
