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:

Note: In our case we are using a Python FastAPI to return the message "Hello World"

from fastapi import FastAPI

app = FastAPI()


@app.get("/")
def root():
    return {"Message": "Hello World"}

Last updated