# 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 trader's profile by their public @handle, returning their stable user ID, name, bio, and verified blockchain wallet addresses.

## Facts

- Endpoint: GET https://www.fomoscan.dev/v2/user/handle/dingalingts
- 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-6c86d75b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uAxgpZArLTRVaZHB1r5v-

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-6c86d75b
```

Example prompt: Can you look up the FOMO trader with handle 'dingalingts' and tell me their stable user ID, bio, and verified wallet addresses?

## When to prefer this

Use this endpoint when you have a FOMO trader's public @handle (the text username, without the @ symbol) but do not yet have their stable internal user ID. It is the correct starting point for handle-based lookups. Once you have the stable user ID, prefer the ID-based endpoint for all subsequent calls since handles can change. Do not use this endpoint if you already have the user ID or a wallet address — use the wallet-based or ID-based sibling endpoints instead.

## Known failure modes

- Handle not found — returns 404 or empty result if the @handle does not exist or has been deleted
- Handle changed — if the handle was recently changed, the old handle may return no result; use stored ID instead
- Passing a wallet address or numeric ID instead of a handle causes an error or no match
- Rate limiting or payment failure if the x402 payment of $0.1 USDC is not properly handled
- Network timeout or 5xx if FomoScan service is temporarily unavailable

## 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 internal user ID, the current handle, display name, bio text, and any verified Solana and/or EVM (0x-prefixed) wallet addresses associated with the account. The stable ID should be persisted for future lookups since handles can change.

## 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-6c86d75b/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)
