How to Test your API with Postman
Last updated
Last updated
is a powerful API platform that allows developers to design, build, test, and collaborate on APIs, offering features like request sending, response viewing, documentation generation.
The VS Code extension makes it incredibly easy to test your API without leaving VS Code!
Create an account on
Download the Postman VS Code extension and sign in to your account.
Create a collection and name it.
Add a request for each of your endpoints:
GET /api/fellows
GET /api/fellows/:id
POST /api/fellows
PATCH /api/fellows/:id
DELETE /api/fellows/:id
Requests that require a body, select the body tab, then raw, and choose JSON from the type dropdown.
Then, test out your server's endpoints using Postman