Q1.What is Postman?
A GUI + CLI tool for building, testing, documenting and monitoring HTTP APIs. Supports REST, GraphQL, gRPC, WebSocket and SOAP.
35+ Postman interview questions for 2026 — collections, environments, variables, scripts, Newman, CI integration, mock servers, monitors and contract testing. With code snippets.
A GUI + CLI tool for building, testing, documenting and monitoring HTTP APIs. Supports REST, GraphQL, gRPC, WebSocket and SOAP.
If you can confidently answer the Postman Basics questions above, you're well prepared for this section of your interview. Move on, or rehearse the trickier ones aloud with our AI mock interviewer.
If you can confidently answer the Environments & Variables questions above, you're well prepared for this section of your interview. Move on, or rehearse the trickier ones aloud with our AI mock interviewer.
A pre-request script on the collection root requests a new token if {{token_expiry}} is past, then sets {{access_token}} for all child requests.
const expiry = pm.environment.get("token_expiry");
if (!expiry || Date.now() > expiry) {
pm.sendRequest({
url: pm.environment.get("auth_url"),
method: "POST",
body: { mode: "urlencoded", urlencoded: [...] }
}, (err, res) => {
const j = res.json();
pm.environment.set("access_token", j.access_token);
pm.environment.set("token_expiry", Date.now() + j.expires_in * 1000);
});
}If you can confidently answer the Authentication questions above, you're well prepared for this section of your interview. Move on, or rehearse the trickier ones aloud with our AI mock interviewer.
If you can confidently answer the Pre-request & Test Scripts questions above, you're well prepared for this section of your interview. Move on, or rehearse the trickier ones aloud with our AI mock interviewer.
If you can confidently answer the Data-Driven Testing questions above, you're well prepared for this section of your interview. Move on, or rehearse the trickier ones aloud with our AI mock interviewer.
Use Ajv inside a test script:
const Ajv = require("ajv");
const schema = { type: "object", required: ["id","email"], properties: { id:{type:"number"}, email:{type:"string"} }};
const valid = new Ajv().validate(schema, pm.response.json());
pm.test("Schema valid", () => pm.expect(valid).to.be.true);If you can confidently answer the JSON Schema Validation questions above, you're well prepared for this section of your interview. Move on, or rehearse the trickier ones aloud with our AI mock interviewer.
If you can confidently answer the Mock Servers & Monitors questions above, you're well prepared for this section of your interview. Move on, or rehearse the trickier ones aloud with our AI mock interviewer.
If you can confidently answer the Newman & CI Integration questions above, you're well prepared for this section of your interview. Move on, or rehearse the trickier ones aloud with our AI mock interviewer.
If you can confidently answer the GraphQL & WebSocket questions above, you're well prepared for this section of your interview. Move on, or rehearse the trickier ones aloud with our AI mock interviewer.
If you can confidently answer the Contract Testing & Documentation questions above, you're well prepared for this section of your interview. Move on, or rehearse the trickier ones aloud with our AI mock interviewer.
Yes (Postman v10+): the Performance tab runs a collection with N virtual users and ramp-up. For heavy load, use JMeter or k6 instead.
If you can confidently answer the Performance Testing in Postman questions above, you're well prepared for this section of your interview. Move on, or rehearse the trickier ones aloud with our AI mock interviewer.
If you can confidently answer the Security & Best Practices questions above, you're well prepared for this section of your interview. Move on, or rehearse the trickier ones aloud with our AI mock interviewer.
Postman is great for exploratory + smoke + monitors. For deep regression, contract and unit-level API tests, use code-based frameworks like RestSharp/RestAssured — see our RestSharp guide.
If you can confidently answer the Scenario-Based Questions questions above, you're well prepared for this section of your interview. Move on, or rehearse the trickier ones aloud with our AI mock interviewer.
Frame each as Situation → Action → Result → Learning. Rehearse out loud in the AI Mock Interview.
If you can confidently answer the Behavioural & Ownership questions above, you're well prepared for this section of your interview. Move on, or rehearse the trickier ones aloud with our AI mock interviewer.