{
  "description": "Surveillance awareness platform \u2014 shows how many data collection points you encounter in daily life",
  "endpoints": {
    "GET  /api/categories": "All 25+ surveillance categories with descriptions",
    "GET  /api/categories/<id>": "Single category detail",
    "GET  /api/companies": "30+ data collector companies (Google, Meta, Clearview, Acxiom, etc.)",
    "GET  /api/health": "Health check",
    "GET  /api/stats": "Aggregate US surveillance statistics and scenario comparisons",
    "POST /api/analyze-route": "Analyze surveillance along a route (addresses or lat/lng)",
    "POST /api/location-scan": "Nearby surveillance scan for a lat/lng point"
  },
  "example_requests": {
    "analyze_route_by_address": {
      "body": {
        "end_address": "Faneuil Hall, Boston, MA",
        "start_address": "South Station, Boston, MA",
        "transport_mode": "walking"
      },
      "method": "POST",
      "url": "/api/analyze-route"
    },
    "analyze_route_by_coords": {
      "body": {
        "end_lat": 42.36,
        "end_lon": -71.0567,
        "start_lat": 42.3521,
        "start_lon": -71.0552,
        "transport_mode": "walking"
      },
      "method": "POST",
      "url": "/api/analyze-route"
    },
    "location_scan": {
      "body": {
        "address_hint": "Downtown Boston",
        "lat": 42.3601,
        "lon": -71.0589,
        "radius_meters": 500
      },
      "method": "POST",
      "url": "/api/location-scan"
    }
  },
  "service": "ParanoidWatch API",
  "version": "1.0.0"
}
