Menu
Coddy logo textTech

API Methods

Lesson 2 of 10 in Coddy's API in Python course.

API usually has 4 types of methods. Those are:

  1. GET
  2. POST
  3. PUT
  4. DELETE

But usually, we mostly use the GET and POST methods. 

 

The GET method is used to retrieve the data from the API.

Similarly, the POST method is used to send the data to the API.

Try it yourself

This lesson doesn't include a code challenge.

All lessons in API in Python