WEB 1.1 - Module 3: Lesson 4

Learning Outcomes 💫

By the end of this lesson, you should be able to...

Video Companions 🎥

Vid 1 - Using Postman to test Flask routes

Vid 1 - Using Postman to test Flask routes

Exercises 💪

  1. Download the Postman desktop application.
  2. Make a query to the Chuck Norris Joke API by using the API Documentation Page here. Make sure it sends you a response back containing a joke!
  3. Send a screenshot of your request to your instructor.

Written Companion 🗒

<aside> 🤔 What tools can we use to experiment with API's and confirm they work as expected from the user end?

</aside>


Once a API route has been created, it should always be tested in a development environment before rolling out to production. Many tools and techniques exist to test an API quickly—but in this class we will be using a tool called Postman.

Similar to an internet browser, Postman allows developers to make requests and recieve respones. Postman provides additional tools on top of the traditional intenet browser such as the ability to quickly shape the method of request (GET, POST, etc.), the query parameters of the request, and request tracing for easier debugging.