# FomoScan User Lookup by Handle

> FomoScan User Lookup by Handle is a paid API for AI agents from www.fomoscan.dev, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Resolves a FOMO platform trader profile by their public @handle, returning stable user ID, display name, bio, and verified wallet addresses.

## Facts

- Endpoint: GET https://www.fomoscan.dev/v2/user/handle/0xOuroboros
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fomoscan-user-lookup-by-handle-4d52f4e5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_htU3Q-nzHdcyElmil2QG2

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-user-lookup-by-handle-4d52f4e5
```

Example prompt: Look up the FOMO trader with the handle 0xOuroboros and get me their stable user ID, bio, and any verified wallet addresses linked to their account.

## When to prefer this

Use this endpoint when you have a FOMO trader's public @handle (not their numeric ID or wallet address) and need to resolve it to a stable user ID or retrieve their profile details. Prefer the stable-ID endpoint for repeat lookups once you have the ID, as handles can change. Use the wallet-resolution endpoint instead if you only have an on-chain address.

## Known failure modes

- Handle not found — returns 404 if the @name does not exist or has been deleted
- Handle changed — if the user renamed, the old handle returns 404; cached IDs remain valid
- Passing a wallet address or numeric ID instead of a plain handle causes a lookup failure
- Rate limiting or payment failure may return 402 or 429 errors
- Unverified users may have null wallet address fields in the response

## How this service works

Resolve a FOMO trader by public handle (the @name on FOMO, without @). Use when you have a handle and not a stored user id. Returns id, handle, name, bio, and verified solanaAddress/evmAddress. Persist id — handles can change. Do not pass a wallet or numeric id.

## Output

Returns a JSON object containing the trader's stable numeric user ID, current handle, display name, bio text, and any verified Solana address and/or EVM (0x-prefixed) address linked to their FOMO account.

## 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-user-lookup-by-handle-4d52f4e5/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)
