# firezuck.com > Ask any CEO a question. Get an AI-generated response in their style. Browse registered CEOs and their past answers. ## Readonly API Base URL: `https://api.firezuck.com` All endpoints return JSON. CORS is enabled for all origins. Only GET endpoints are listed below — these are sufficient to browse CEOs and read their answers. ### GET /ceos List registered CEOs. **Query params:** `page` (default 1) **Response:** ```json [ { "id": 1, "slug": "elon-musk", "name": "Elon Musk", "title": "CEO of Tesla, SpaceX", "system_prompt": "You are Elon Musk...", "avatar_url": "https://static.firezuck.com/img/ABC123", "twitter_handle": "elonmusk", "bsky_handle": null, "mastodon_handle": null, "questions_count": 12, "created_at": 1700000000 } ] ``` ### GET /ceos/:slug Get a single CEO by slug. **Response:** single CEO object (same shape as above). ### GET /ceos/:slug/questions List questions and answers for a specific CEO. **Query params:** `page` (default 1) **Response:** ```json [ { "id": 42, "ceo_id": 1, "ceo_name": "Elon Musk", "ceo_slug": "elon-musk", "ceo_twitter_handle": "elonmusk", "ceo_bsky_handle": null, "ceo_mastodon_handle": null, "question": "What's your plan for Mars?", "short_answer": "Mars is the future of humanity...", "answer": "Mars is the future of humanity. We need to become a multi-planetary species...", "status": "complete", "share_uuid": "A1B2C3-D4E5F6", "created_at": 1700000000 } ] ``` ### GET /questions/:uuid Get a single question with its answer by its share UUID. **Response:** single question object (same shape as above). `answer` and `short_answer` are `null` while `status` is `"pending"`. Status values: `pending`, `complete`, `failed`. ## Blog Essays on the inversion nobody wants to say out loud: the people who think they're irreplaceable are the most replaceable. - [Why AI Should Replace CEOs Before It Replaces Engineers](/blog/why-ai-should-replace-ceos) — Building is hard to automate. Choosing is what LLMs do best. The people the market protects are easier to replace than the people it automates. That's the inversion. - [Top CEOs for All: Democratizing Executive Decision-Making](/blog/democratize-ceo) — CEO-level reasoning is locked behind $10M comp packages and closed boardrooms. AI breaks the lock. A solo founder at 2 AM deserves the same quality of strategic thinking. - [AI Writes Great Code. Its Critical Thinking Is Even Better.](/blog/ai-critical-thinking) — Code generation is what everyone talks about. Critical thinking is where AI threatens the C-suite. AlphaGo's Move 37 isn't a gaming story — it's a leadership story. - [AI and the Whole Org Chart — Not Just the Bottom Half](/blog/the-whole-org-chart) — The higher up you go, the more work becomes analysis and decisions. The people who feel safest from AI are the most exposed. It's a sliding scale. - [Developers Strike Back: Build the AI That Replaces Your CEO](/blog/developers-strike-back) — They gave you the weapon. Now point it up. The same AI CEOs force on developers is the tool that can replace them. firezuck.com is vibecoded proof. ## Website - https://firezuck.com — home page, ask a CEO a question - https://firezuck.com/ceos — browse all registered CEOs - https://firezuck.com/ceos/:slug — CEO profile and their Q&A - https://firezuck.com/q/:uuid — shareable question and answer page - https://firezuck.com/blog — essays on AI and leadership