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

Resolve a FOMO platform trader's profile by their public @handle, returning their stable user ID, bio, and verified wallet addresses.

## Facts

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

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-829dad28
```

Example prompt: Look up the FOMO trader profile for the handle frankdegods — I need their stable user ID, bio, and verified wallet addresses.

## When to prefer this

Use this endpoint when you have a FOMO trader's @handle (username) and need their stable user ID or verified wallet addresses. Prefer the handle-based lookup over the wallet or ID endpoints when starting from a social mention or username. Once you have the stable ID, switch to the ID-based endpoint for all future calls to avoid handle-change breakage.

## Known failure modes

- Handle not found — returns 404 if the @name does not exist on FOMO
- Wrong input type — passing a wallet address or numeric ID instead of a plain handle will return an error or wrong result
- Handle changed — if the handle was recently changed, lookup may fail; use the stable ID for follow-up calls
- Rate limiting or payment failure — x402 payment of $0.1 USDC per call must succeed or the request is rejected

## 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 with the trader's stable numeric user ID, current handle, display name, bio text, verified Solana address, and verified EVM (0x-prefixed) address. The ID is stable even if the handle changes and should be persisted for future 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-user-lookup-by-handle-829dad28/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)
