Search Your Workspace for Movie APIs
The plugin routes natural language to the right command automatically — you don't need to remember command names.
-
Ask Claude Code:
Is there any API in my workspace that gives me information on movies
-
This runs
/postman:searchunder the hood, searching across your workspaces and drilling into endpoint details. Confirm it surfaces your Movies API collection from Module 1.
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.
-
Ask Claude Code:
Give me a list of animated movies available
-
Confirm Claude Code calls the
GET /movies/animationendpoint on the Movies API and returns the movie list.
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.
-
Ask Claude Code:
Run the tests for my collection, Movies API
-
This runs
/postman:test, executing your Movies API collection, parsing the results, and diagnosing any failures. -
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.