geehaad / FastApi

What you need to know to start building APIs using FastAPI

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

End Point Methods

  • GET - Get/Return An Information.
  • POST - Create Something New. (eg. Create New Object)
  • PUT - Update.
  • DELETE - Delete Something.

End Point Parameters to pass information to a web server in the URL of an HTTP request

1. Path Parameters: Mandatory, They are essential for routing and determining which part of the application should handle the request.
2. Query Parameters: Not Mandatory, providing extra information that does not directly identify the resource itself.

About

What you need to know to start building APIs using FastAPI


Languages

Language:Python 100.0%