# Hyperview > Real-time prediction market analysis, event tracking, and market insights. ## About Hyperview is a prediction-market news feed built on Polymarket data. Agents can fetch any page as Markdown or JSON via the `Accept` header, with no need to scrape HTML. ## Agent-readable pages Send `Accept: text/markdown` (or `application/json`) to any page: - [Home feed](https://hyperview.xyz/) — most active markets with probabilities and volume - [Event detail](https://hyperview.xyz/event/{slug}) — a single event and all its markets - [Markets API](https://hyperview.xyz/api/markets) — JSON snapshot of the full feed - [Search API](https://hyperview.xyz/api/search?q=bitcoin) — market search as JSON ## Endpoints - `GET /` — home feed (HTML, or Markdown/JSON per `Accept`) - `GET /event/{slug}` — event detail (HTML, or Markdown/JSON per `Accept`) - `GET /api/markets` — JSON array of feed markets - `GET /api/search?q={query}` — market search, returns JSON ## Examples Fetch the home feed as Markdown: ```bash curl -H "Accept: text/markdown" https://hyperview.xyz/ ``` Fetch an event as JSON: ```bash curl -H "Accept: application/json" https://hyperview.xyz/event/{slug} ```