Create a GET HTTP request
Open the App
Click the
+sign to create a new HTTP Request

Select the method (In our case GET)
Enter the URL and Click Send
Should look something like this:

Last updated
Open the App
Click the + sign to create a new HTTP Request

Select the method (In our case GET)
Enter the URL and Click Send
Should look something like this:

Last updated
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def root():
return {"Message": "Hello World"}