# 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-14).

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

## Facts

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

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-722d8cde
```

Example prompt: Look up the FOMO trader behind the Solana wallet address 498g1rVnFcnjBjpfw1xyqA1WvgQXUU8RWuELjxkjAayQ — I only have the wallet, not their handle or user ID.

## When to prefer this

Use this endpoint only when you have a raw on-chain wallet address (Solana or 0x-prefixed EVM) and no FOMO handle or user id. If you already have a handle, prefer the handle-lookup endpoint ($0.10) and if you have a user id, prefer the user-id endpoint — both are cheaper. This endpoint costs $2.00 and is the right choice specifically when bridging on-chain identity to FOMO social identity.

## Known failure modes

- Wallet address not found or not linked to any FOMO account — returns 404 or empty result
- EVM address submitted without 0x prefix — may return error or no match
- Invalid or malformed wallet address format — returns validation error
- Address is valid but trader has no FOMO account — no result returned
- Rate limiting or payment failure for x402 micropayment — returns 402 or 429

## 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 for the trader associated with the given wallet address, including their stable user id, handle, and other profile fields — the same User object returned by handle or user-id lookups.

## 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-722d8cde/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)
