> For the complete documentation index, see [llms.txt](https://docs.arkannis.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.arkannis.net/programming/postman/create-a-get-http-request.md).

# Create a GET HTTP request

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

![](/files/lFe0TS5hYVzdsZvudcjI)

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

Should look something like this:

![](/files/dkYBBHKQL3LTb7BGNvzu)

{% 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 %}
