# FomoScan Wallet-to-User Resolver

> FomoScan Wallet-to-User Resolver 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-15).

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

## Facts

- Endpoint: GET https://www.fomoscan.dev/v2/user/wallet/7tCETmedwBk4zFjmq7xcDo1vCMDTFNfDkobXyNj2grR3
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fomoscan-wallet-to-user-resolver-61bf623c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AvwSnt--N-xQt6uMdNuZ3

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-to-user-resolver-61bf623c
```

Example prompt: Can you find the FOMO trader profile linked to the Solana wallet 7tCETmedwBk4zFjmq7xcDo1vCMDTFNfDkobXyNj2grR3? I only have the wallet address, not their handle or user ID.

## When to prefer this

Use this endpoint exclusively when you have an on-chain wallet address (Solana or 0x-prefixed EVM) and do not have the user's FOMO handle or stable user ID. Note this costs $0.20 per call vs $0.10 for handle/ID lookups — so prefer those cheaper endpoints whenever a handle or user ID is already available.

## Known failure modes

- Wallet address not verified or not linked to any FOMO user — returns 404 or empty result
- EVM address missing the 0x prefix — will fail validation
- Malformed or invalid address format — returns error
- Address belongs to a contract rather than a user wallet — no match found
- Rate limiting or payment failure — 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 including the stable user ID, public handle, verified wallet addresses, and associated metadata — the same profile structure returned by handle-based or ID-based 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-to-user-resolver-61bf623c/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)
