Your progress is saved locally. to save it permanently.

0 of 3 steps0%
1

Search Your Workspace for Movie APIs

The plugin routes natural language to the right command automatically — you don't need to remember command names.

  1. Ask Claude Code:

    Is there any API in my workspace that gives me information on movies

  2. This runs /postman:search under the hood, searching across your workspaces and drilling into endpoint details. Confirm it surfaces your Movies API collection from Module 1.

2

Query the Movies API in Natural Language

Beyond searching for APIs, the plugin can actually call them on your behalf — ask a question in plain English and it translates that into the right request.

  1. Ask Claude Code:

    Give me a list of animated movies available

  2. Confirm Claude Code calls the GET /movies/animation endpoint on the Movies API and returns the movie list.

3

Run Your Collection Tests

This is the payoff of the tests you wrote back in Getting Started with Agent Mode — instead of opening Postman to run them, you can trigger the whole suite from your terminal.

  1. Ask Claude Code:

    Run the tests for my collection, Movies API

  2. This runs /postman:test, executing your Movies API collection, parsing the results, and diagnosing any failures.

  3. Review the pass/fail summary — if any of the status-code tests you wrote in Getting Started with Agent Mode fail, ask Claude Code to suggest a fix.