Complete the code to add a filter parameter named 'status' to the API request URL.
url = "https://api.example.com/items?[1]=active"
The filter parameter for status is added as 'status=active' in the URL query string.
Complete the code to add a second filter parameter 'category' to the API request URL.
url = "https://api.example.com/items?status=active&[1]=books"
The second filter parameter is 'category=books' added after the first with an '&' separator.
Fix the error in the code to correctly add multiple filter parameters to the API request URL.
url = "https://api.example.com/items?status=active[1]category=books"
Multiple query parameters are separated by '&' in URLs.
Fill both blanks to create a URL with three filter parameters: status, category, and sort.
url = "https://api.example.com/items?status=active[1]category=books[2]sort=asc"
All query parameters after the first are joined with '&' in the URL.
Fill all three blanks to build a URL with filters for status and a limit parameter.
url = "https://api.example.com/items?[1]=active[2][3]=10"
The URL has 'status=active' first, then '&' to separate, then 'limit=10'.