This visual execution shows how FastAPI uses Pydantic models to define response data. When an endpoint returns a model instance, FastAPI can filter which fields to send using include or exclude. The flow starts with creating a model instance with all fields. Then, include or exclude filters are applied to select or remove fields. Finally, the filtered JSON is sent to the client. The execution table traces each step: creating the instance, applying filters, and sending the response. Variable tracking shows how the user instance stays the same but the response data changes after filtering. Key moments clarify why some fields are missing and how include and exclude work together. The quiz tests understanding of filtering steps and results. This helps beginners see exactly how FastAPI controls response content using these options.