# FomoScan User Handle Resolver

> FomoScan User Handle Resolver 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's public @handle to their stable user profile including id, name, bio, and verified blockchain wallet addresses.

## Facts

- Endpoint: GET https://www.fomoscan.dev/v2/user/handle/NachoTrades
- 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-handle-resolver-a267b831
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QjtIjXEowpnJriThJms5J

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-handle-resolver-a267b831
```

Example prompt: Can you look up the FOMO trader with the handle NachoTrades and get me their stable user id and any verified wallet addresses on their profile?

## When to prefer this

Use this endpoint when you have a FOMO trader's public @handle (string username) but not their stable numeric user id. Once you obtain the id, persist it and use the id-based resolver for future lookups since handles can change. Do not use this endpoint if you already have a user id or a wallet address — use the appropriate sibling endpoints for those inputs.

## Known failure modes

- Handle not found — returns 404 if no user exists with that handle
- Handle changed — handle may no longer point to the same user; use persisted id for stable lookups
- Passing a wallet address or numeric id instead of a handle will fail or return incorrect results
- Rate limit or payment failure — endpoint requires 0.1 USDC per call via x402 protocol
- User has no verified wallet — solanaAddress or evmAddress fields may be null if unverified

## 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 user object containing the stable numeric user id, current handle, display name, bio, verified Solana address, and verified EVM address (0x-prefixed). The id is stable even if the handle changes and should be persisted for future calls.

## 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-handle-resolver-a267b831/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)
