The prompts only the Postman AI Engineer can answer Postman's AI Engineer, a natural-language layer over the Postman Context Graph, can trace data across APIs, collections, monitors, and frontend code, as demonstrated by five prompts that reveal hidden bugs and existing APIs. The tool's three-way drift detection compares OpenAPI specs, collection bodies, and live monitor responses, catching issues like a server returning 'amount' as a string when the spec says number. This capability addresses specification-vs-code drift that traditional two-way validation misses. The prompts only the Postman AI Engineer can answer The Postman AI Engineer https://blog.postman.com/introducing-the-ai-engineer/ is a natural-language layer over the Postman Context Graph https://blog.postman.com/managing-downstream-dependencies-with-the-ai-engineer/ , a live index of every API, Postman Collection https://learning.postman.com/docs/collections/collections-overview/ , monitor, mock server, and connected repo you have access to. You type a question in plain English. The AI Engineer walks the graph and answers. The first time I ran a real question through it, I got back an annotated chain across four systems no single tool I have ever used has been able to touch at once. I stared at it for a minute. Then I ran the other prompts I had been carrying around as thought experiments. Most of them worked too. Here are the five I use most. The one I run first: tracing a value across your entire stack We have an identifier called employee id . It’s defined in the HR API, referenced by Payroll and Finance, and rendered in a React dashboard the internal tools team owns. It also gets renamed to employeeId in one service and emp-id in a legacy URL. Nobody has the whole map in their head. Trace an employee id value from the HR module through Payroll, Finance, and the frontend Dashboard component. Show me every hop, every rename, and every place it's persisted. The answer comes back as a chain: employee id HR API | ├─ HR OpenAPI file: defined on the Employee schema | ├─ Payroll collection: GET /employees/{employee id}, stored as variable | └─ Payroll monitor staging, hourly : last 24 runs saw the field | ├─ Finance API: renamed to employeeId inside GetPayrollSummary | └─ Legacy endpoint served at /finance/emp-id/{emp-id} | └─ Frontend repo dashboard : rendered by