> For the complete documentation index, see [llms.txt](https://zardoz.gitbook.io/zardoz-docs-1/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://zardoz.gitbook.io/zardoz-docs-1/page-map-and-app-routes.md).

# Page map & app routes

## Page map & app routes

Every user-facing route in the Zardoz web app.

### Main navigation

| Route     | URL                                        | What you do there                                           |
| --------- | ------------------------------------------ | ----------------------------------------------------------- |
| Discover  | [/](https://zardoz.fun/)                   | Live token board — filters, heat, pad badges, open any card |
| Launch    | [/launch](https://zardoz.fun/launch)       | Zardoz Instant or external pad launch form                  |
| Watch     | [/watch](https://zardoz.fun/watch)         | KOL / smart-wallet directory + recent activity              |
| Signals   | [/signals](https://zardoz.fun/signals)     | Cluster buys, heat spikes, new pools, watched-wallet buys   |
| Farm      | [/farm](https://zardoz.fun/farm)           | Uniswap V3 LP — deposit, claim, compound, close positions   |
| Portfolio | [/portfolio](https://zardoz.fun/portfolio) | Holdings, PnL, vault wallets, creator / launch fee claims   |
| Docs      | [/docs](https://zardoz.fun/docs)           | Bridge to this GitBook site                                 |

### Token & wallet pages

| Route          | Pattern             | Purpose                                                                  |
| -------------- | ------------------- | ------------------------------------------------------------------------ |
| Token detail   | `/token/[address]`  | Chart, trades, holders, trade panel, bundle, launch agent (creator only) |
| Wallet profile | `/wallet/[address]` | Public wallet view — holdings overlay, recent activity                   |

Example: [https://zardoz.fun/token/0x…](https://zardoz.fun/token/0x00C1a8025a5FDdf5046965Dc94e1dB845853A7D1)

### Legal & meta

| Route                                  | Purpose                                         |
| -------------------------------------- | ----------------------------------------------- |
| [/origin](https://zardoz.fun/origin)   | Name history — Film → Chronos → Robinhood Chain |
| [/privacy](https://zardoz.fun/privacy) | Privacy policy                                  |
| [/terms](https://zardoz.fun/terms)     | Terms of service                                |

### API routes (server)

All live under `/api/*` on the same origin. Full params in HTTP APIs.

| Method              | Path                           | Auth                        |
| ------------------- | ------------------------------ | --------------------------- |
| GET                 | `/api/tokens`                  | Public                      |
| GET                 | `/api/launches`                | Public                      |
| GET                 | `/api/token/{address}`         | Public                      |
| GET                 | `/api/token/{address}/overlap` | Public                      |
| GET                 | `/api/signals`                 | Public                      |
| GET                 | `/api/signals/clusters`        | Public                      |
| GET                 | `/api/stats`                   | Public                      |
| GET                 | `/api/candles`                 | Public                      |
| GET                 | `/api/trades`                  | Public                      |
| GET                 | `/api/holders`                 | Public                      |
| GET                 | `/api/holdings`                | Public                      |
| GET                 | `/api/pnl`                     | Public                      |
| GET                 | `/api/ethusd`                  | Public                      |
| GET                 | `/api/watch/wallets`           | Public                      |
| GET                 | `/api/watch/activity`          | Public                      |
| GET                 | `/api/creator-launches`        | Public                      |
| GET/POST            | `/api/refs`                    | POST needs session for bind |
| GET                 | `/api/wallet`                  | Session (Google wallet)     |
| POST/PUT            | `/api/wallet`                  | Session                     |
| GET                 | `/api/wallet/{address}`        | Public profile              |
| GET/POST/PUT/DELETE | `/api/trading-wallets`         | Session / device            |
| POST                | `/api/pin`                     | Public (server Pinata JWT)  |
| POST                | `/api/launches/fee-record`     | Session                     |
| GET/POST            | `/api/chat/{token}`            | Public read                 |
| GET/POST            | `/api/live/{token}`            | Public                      |
| GET                 | `/api/ipfs/{...cid}`           | Public IPFS gateway proxy   |
| GET/POST            | `/api/auth/[...nextauth]`      | OAuth session               |

### Environment-driven contract addresses

Production builds inject mainnet addresses via `NEXT_PUBLIC_*` env vars:

| Env var                                 | Role                |
| --------------------------------------- | ------------------- |
| `NEXT_PUBLIC_MAINNET_INSTANT_FACTORY`   | Instant factory     |
| `NEXT_PUBLIC_MAINNET_INSTANT_LOCKER`    | LP locker           |
| `NEXT_PUBLIC_MAINNET_INSTANT_FEE_VAULT` | Fee vault           |
| `NEXT_PUBLIC_LAUNCH_FEE_ROUTER`         | Platform fee router |

See Instant contracts for canonical mainnet values.

Next: Wallets · HTTP APIs


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://zardoz.gitbook.io/zardoz-docs-1/page-map-and-app-routes.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
