# FomoScan User Theses Feed

> FomoScan User Theses Feed is a paid API for AI agents from www.fomoscan.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns a paginated, newest-first list of trade theses written by a specific FOMO trader, identified by their stable user ID.

## Facts

- Endpoint: GET https://www.fomoscan.dev/v2/thesis/user/aefe2ddd-c580-5245-a2f5-e4ed62f7ef10
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fomoscan-user-theses-feed-0ed725b0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nQf9kzhqLwysGdHe_5UGd

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-theses-feed-0ed725b0
```

Example prompt: Show me the latest trade theses from the FOMO trader with user ID aefe2ddd-c580-5245-a2f5-e4ed62f7ef10 — grab the newest page from FomoScan.

## When to prefer this

Use this endpoint when you have a trader's stable user ID (from a prior resolve call or from an authorId field in another response) and want their full thesis history, newest first. Prefer the /token/{tokenAddress}/user sibling if you also have a specific token address to narrow results. If you only have a handle, resolve it to a user ID first with the handle-resolution endpoint.

## Known failure modes

- Invalid or non-existent user ID returns an empty list or 404 error
- Passing a handle instead of a stable user ID yields no results — must resolve handle to ID first using the handle-resolution sibling endpoint
- Stale or invalid before cursor causes a 400 or empty response
- Rate limiting or payment failure (x402) if the $0.01 USDC per call is not satisfied
- Network timeout on large thesis histories

## How this service works

Theses written by one FOMO trader, newest first. {id} is the stable user id (User.id / authorId), not a handle — resolve handle→id first if needed. Page with ?before= from nextBefore. Use the /token/{tokenAddress} sibling when you also know the token.

## Output

A paginated array of trade theses authored by the specified FOMO trader, ordered newest first. Each thesis includes the token referenced, the author's details, PnL/holdings data, and the thesis write-up text. The response also includes a nextBefore cursor for fetching older pages and a hasMore flag indicating whether additional pages exist.

## 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",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "properties": {
      "before": {
       "type": "string",
       "description": "Thesis id cursor from the previous page's nextBefore. Omit for the newest page. Pass nextBefore as-is while hasMore is true."
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fomoscan-user-theses-feed-0ed725b0/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)
