✨ Generative AI
Structured Output — Getting JSON from AI
Sometimes you need AI to return structured data (not just text) so you can use it in your code. Ask the AI to respond with JSON and parse it with JSON.parse(). Modern AI APIs also support 'response_format: json_object' mode. This is powerful for building apps!
3 min 10 XP Lesson 6 of 7

Sometimes you need AI to return structured data (not just text) so you can use it in your code. Ask the AI to respond with JSON and parse it with JSON.parse(). Modern AI APIs also support 'response_format: json_object' mode. This is powerful for building apps!
Quick Quiz
Why ask AI to respond in JSON?