The one rule
Do not ask for “a neat answer” when your code needs data. Ask for a strict shape, then validate that shape before using it.
Structured output turns a prompt from a chat into an API contract. Your app becomes easier to test.
Why structure helps
Hackathon AI features often fail because the model returns a paragraph when your UI expects a tag, score, or list. JSON is usually the simplest format for app output.
Use structure when you need to store results, filter them, show cards, trigger actions, or compare test cases.