Complete the code to request expanded user data with embedded posts.
GET /users/123?[1]=expand
The query parameter expand is commonly used to request related resources embedded in the response.
Complete the code to embed comments when fetching posts.
GET /posts?[1]=embedThe embed parameter is used here to include related comments inside each post.
Fix the error in the URL to correctly expand the 'author' data for each comment.
GET /comments?expand=[1]The related resource is singular author, matching the API's expected parameter.
Fill both blanks to embed 'profile' and 'settings' data when fetching users.
GET /users?[1]=embed&[2]=include
Use embed and include parameters to request related data embedded in the response.
Fill all three blanks to select 'orders', embed 'items', and include 'shipping' data in a single request.
GET /customers/456?[1]=fields&[2]=embed&[3]=include
Use fields to select fields, embed to embed related items, and include to include shipping data.