# Create a GET HTTP request

* Open the App
* Click the `+` sign to create a new HTTP Request

![](https://3885248957-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FoE4wMO1dMVDOGDjh0En7%2Fuploads%2FV9VsSXNkeZSZG2wWwX6h%2Fimage.png?alt=media\&token=d938ecd6-d7a5-4308-abb3-e6524ce8791c)

* Select the method (In our case GET)
* Enter the URL and Click Send

Should look something like this:

![](https://3885248957-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FoE4wMO1dMVDOGDjh0En7%2Fuploads%2FcNzIdpIRl82V9EjD2pvr%2Fimage.png?alt=media\&token=c66c17a2-36f6-4c08-99d2-d7ad326610c2)

{% hint style="info" %}
Note: In our case we are using a Python FastAPI to return the message "Hello World"

```python
from fastapi import FastAPI

app = FastAPI()


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

{% endhint %}
