Script Valley
Postman API Testing: Complete Course
Introduction to Postman and API Fundamentals/Assessment

Practice & Assessment

Test your understanding of Introduction to Postman and API Fundamentals

Multiple Choice Questions

6
1

Which of the following is NOT a core Postman feature?

2

What HTTP status code indicates a resource was successfully created?

3

Where in Postman do you write JavaScript assertions that validate the API response?

4

Which Postman tool shows the actual raw HTTP request and response including all headers?

5

What does 'idempotent' mean for an HTTP method?

6

What keyboard shortcut sends a request in Postman on Windows?

Mini Project

1

Build Your First Postman Collection

Create a complete Postman collection called 'Public API Explorer' that tests three different public APIs: (1) JSONPlaceholder (jsonplaceholder.typicode.com) — add GET requests for users, posts, and comments organized in separate folders. (2) Open Library API (openlibrary.org/api) — search for books by subject. (3) REST Countries API (restcountries.com/v3.1) — fetch country data and filter by region. For each request, verify the status code is 200 using a basic test script. Export the collection as a JSON file.

Easy