# Router Tags

* If you navigate to the DOCS page

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

<figure><img src="https://3885248957-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FoE4wMO1dMVDOGDjh0En7%2Fuploads%2Ff6kk1IoN6nJUxa9JpWNP%2Fimage.png?alt=media&#x26;token=2d1727f0-fb16-4196-a5e9-721da9699be9" 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="https://3885248957-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FoE4wMO1dMVDOGDjh0En7%2Fuploads%2FngEaUmhZ4PkRqOXi7hIv%2Fimage.png?alt=media&#x26;token=c2215c53-582f-40b4-ab25-fe9d7627fe45" alt=""><figcaption></figcaption></figure>

* This improved the readability
