Your progress is saved locally. to save it permanently.

0 of 4 steps0%

New to Postman? You'll create three building blocks in this part: a workspace (your project folder), a collection (a group of related requests), and a request (a single API call). Each step below walks you through where to click.

Learn more: Workspaces, Send an API request

1

Create a Workspace

A workspace is your home base in Postman — collections, requests, and variables all belong to one.

  1. Open the Postman desktop app. If you don't have it yet, download Postman and sign in — if you're already signed in, you're good to go.
  2. Click Workspaces in the top navigation → Create.
  3. In Workspace name, enter [Your name] - World Explorer (e.g. Alex - World Explorer).
  4. Under Select workspace type, choose Internal.
  5. Under Who can access, choose Only you and invited people.
  6. Select Blank workspace.
  7. Click Create Workspace.
2

Create a Collection

A collection groups related requests together — like a folder for your country lookups.

  1. Confirm you're in your new workspace (check the name in the top-left).
  2. In the left sidebar, click +Collection.
  3. Name it Country Dossier and save.
3

Add Your First Lookup

A request is a single call to an API. GET means you're asking the server for data; the URL tells it what to return. This is your first API call — don't worry about the JSON yet, just look for a green 200 OK.

  1. In the left sidebar under Country Dossier, click Add request.
  2. Name the request Get Country.
  3. Leave the method as GET and paste this URL into the address bar:
https://liftoff-101.mock.postman.postman.dev/countries
  1. Click Save (Ctrl/Cmd+S) — choose Country Dossier as the destination if prompted.
  2. Click Send. You should get 200 OK — that means it worked. The JSON below is the response; you'll use it in later steps.
4

Pick a Destination

Query params filter what the API returns — like adding ?name=Bangladesh to narrow the list down to one country.

  1. Open Get Country from your collection.
  2. Click the Params tab (directly below the URL bar).
  3. In the Query Params table, add a row:
KeyValue
nameyour home country, e.g. Bangladesh
  1. Make sure the checkbox next to name is checked — that enables the parameter.
  2. Your URL should now end with ?name=Bangladesh (or wherever you're headed). Click Send again — the response should show only your country, not the full list.