> 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/python/frameworks/fastapi/router-tags.md).

# Router Tags

* If you navigate to the DOCS page

{% hint style="info" %}
Usually <http://127.0.0.1:8000/docs>
{% endhint %}

<figure><img src="/files/WjgRSjDHuQRaLZrpu9IF" alt=""><figcaption></figcaption></figure>

* Tags will allow us to group this documentation based on responsibility
* Basically grouping them in "folders"
* This is very easy to update
* Withing the `router` variable we will have to add the tag

```python
# post.py

# Before:
router = APIRouter(
    prefix="/posts"
)

# After:
router = APIRouter(
    prefix="/posts",
    tags=['Posts']
)

# user.py

# Before:
router = APIRouter(
    prefix="/users"
)

# After:
router = APIRouter(
    prefix="/users",
    tags=['Users']
)
```

* Now this has updated our sections as follows:

<figure><img src="/files/StBqnDlRGgNthkhvHZPG" alt=""><figcaption></figcaption></figure>

* This improved the readability
