1. Learn
  2. /
  3. Courses
  4. /
  5. Working with the OpenAI Responses API

Connected

Exercise

Extracting Information from the Response

With your request made and the response received from the OpenAI API, it's time to begin extracting information from it. The response from the Responses API contains more than just the model output, it contains structured outputs for chat applications, and useful metadata for tracking and building a chat history.

A response object is already available for you to investigate as response.

Instructions 1/3

undefined XP
  • 1
    • Extract the number of output tokens from response.
  • 2
    • Extract the ID from response.
  • 3
    • Extract the output in a structured way by unpacking and printing each item in response.