# FomoScan Global Thesis Feed

> FomoScan Global Thesis 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-16).

Returns a paginated, newest-first global feed of FOMO trade theses (short write-ups with token, author, PnL, and holdings) when no token or author filter is applied.

## Facts

- Endpoint: GET https://www.fomoscan.dev/v2/thesis
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fomoscan-global-thesis-feed-6a96099b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_i_hlM3iNjJrp16svSFsdk

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-global-thesis-feed-6a96099b
```

Example prompt: Pull the latest FOMO trade theses from the global feed — just the newest page, no specific token or trader filter — and show me each thesis with the token, author, and their PnL.

## When to prefer this

Use this endpoint only when you have no specific token address or author/user identifier to filter by. It is the catch-all global feed. Whenever you know a token or user, prefer the token-scoped or user-scoped FomoScan routes instead, as they are more targeted and cost-efficient. Choose this endpoint for broad market discovery, trending token detection, or when building a general feed of trader activity.

## Known failure modes

- Invalid or expired 'before' cursor returns an error or empty result
- Payment not included or insufficient USDC causes a 402 Payment Required response
- Rate limiting may occur if too many rapid sequential requests are made
- If hasMore is false but pagination is continued, an empty result set is returned
- Network timeouts on the paid API endpoint returning no data

## How this service works

Newest-first global feed of FOMO theses (short trade write-ups: token, author, PnL, holdings). Use only when you have no token or author filter. Page with ?before= from nextBefore; stop when hasMore is false. Dedupe items on id. Prefer the token/user-scoped routes when you know those.

## Output

A paginated list of FOMO trade theses in newest-first order, each containing a unique thesis id, the token discussed, the author's identity, their PnL, their holdings, and a short write-up. Also returns a nextBefore cursor for fetching the next page and a hasMore boolean to indicate whether more 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-global-thesis-feed-6a96099b/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)
