# One Word Answer > One Word Answer is a minimalist AI-powered Q&A platform that delivers witty, blunt, and hilarious answers constrained strictly to 1, 2, or 3 words. It cuts through verbose AI replies with direct, high-signal responses. One Word Answer pairs a live AI generator with a community-curated gallery of top-voted answers across multiple categories. For LLM agents, each question is accessible in clean, machine-readable Markdown devoid of HTML or UI wrappers at `/q/:slug.md`. ## Main Routes - [Interactive Generator](https://www.onewordanswer.com/): Core web application for generating real-time 1-, 2-, or 3-word AI answers to any question. - [Curated Gallery](https://www.onewordanswer.com/best/funny-questions-to-ask-ai): Community archive of top-rated answers organized by category (ABSURD, ROASTS, DATING, LIFE, EXISTENTIAL, WEIRD, OTHER). ## Question Markdown Pages - [Should I Text My Ex?](https://www.onewordanswer.com/q/should-i-text-my-ex.md): Minimalist answers and community thoughts on contacting an ex. - [What Would Happen If Cats Ruled The World?](https://www.onewordanswer.com/q/what-would-happen-if-cats-ruled-the-world.md): Concise answers imagining feline global supremacy. - [Why Am I Still Single?](https://www.onewordanswer.com/q/why-am-i-still-single.md): Honest and humorous 1-, 2-, and 3-word relationship insights. - [What Is My Biggest Problem?](https://www.onewordanswer.com/q/what-is-my-biggest-problem.md): Direct AI roast and personality assessment. - [Why Is My Boss Emailing At 6 AM?](https://www.onewordanswer.com/q/why-is-my-boss-emailing-at-6-am.md): Workplace satire and morning email analysis. - [What Happens If Gravity Disappears?](https://www.onewordanswer.com/q/what-happens-if-gravity-disappears.md): Existential and physics predictions in 1 to 3 words. - [What Does My Search History Say About Me?](https://www.onewordanswer.com/q/what-does-my-search-history-say-about-me.md): Judgmental search history reflections. ## API Endpoints - [Questions List API](https://www.onewordanswer.com/api/questions): GET endpoint returning JSON list of approved questions. Query parameters: `category` (ALL, ABSURD, ROASTS, DATING, LIFE, EXISTENTIAL, WEIRD, OTHER) and `sort` (top, newest). - [Single Question API](https://www.onewordanswer.com/api/question): GET endpoint returning question metadata, answers, and comments in JSON. Query parameter: `slug` (e.g., `?slug=should-i-text-my-ex`). ## Optional - [Generate Answer API](https://www.onewordanswer.com/api/ask): POST endpoint to generate real-time AI answers using Workers AI. Body: `{"question": "...", "wordCount": 1|2|3}`. - [Submit Question API](https://www.onewordanswer.com/api/submit): POST endpoint to submit a question and answers for moderation. Body: `{"question": "...", "category": "...", "display_name": "...", "answer_1": "...", "answer_2": "...", "answer_3": "..."}`. - [Vote API](https://www.onewordanswer.com/api/vote): POST endpoint to upvote/downvote questions and comments. Body: `{"target_type": "question"|"comment", "target_id": 123, "vote_type": "up"|"down"}`. - [Comment API](https://www.onewordanswer.com/api/comment): POST endpoint to add a comment to a question. Body: `{"question_id": 123, "display_name": "...", "comment_text": "..."}`.