You use an interactive API explorer to send a GET request to https://api.example.com/users/123. The response JSON is:
{"id":123,"name":"Alice","active":true}What will the explorer show as the value of active?
Remember JSON boolean values are lowercase true or false.
The JSON boolean true is shown as true in the API explorer, not as a string or Python boolean.
Choose the feature that best describes what an interactive API explorer does.
Think about what you do when you want to test an API endpoint interactively.
Interactive API explorers let you send requests and view responses live in a friendly interface.
You use an interactive API explorer to send a POST request to /api/data with a JSON body. The server responds with 401 Unauthorized. You included the header Authorization: Bearer but left the token empty.
What is the most likely cause?
401 means unauthorized. Check your authentication details.
An empty token in the Authorization header means the server rejects the request as unauthorized.
You want to send this JSON body in an API explorer POST request:
{"name": "Bob", "age": 30, "active": true}Which option is a valid JSON string for the body?
JSON keys and string values must be in double quotes. Boolean values are lowercase.
Option B is valid JSON. Option B misses quotes on keys. Option B uses strings for numbers and booleans. Option B uses Python boolean True which is invalid in JSON.
You use an interactive API explorer to fetch a list of items from an API that supports pagination with page and limit query parameters.
Which approach best describes how the explorer helps you get all items?
Think about what an explorer can do without custom automation.
Most interactive API explorers let you change query parameters manually and resend requests to see different pages.