---
title: "Bigger Applications - Multiple Files - FastAPI"
description: "!https://fastapi.tiangolo.com/tutorial/bigger-applications/#another-module-with-apirouter"
date: 2023-08-24
published: true
tags:
  - api
  - dev
  - fastapi
  - python
  - thought
  - webdev
template: link
---


<div class="embed-card embed-card-external">
  <a href="https://fastapi.tiangolo.com/tutorial/bigger-applications/#another-module-with-apirouter" class="embed-card-link" target="_blank" rel="noopener noreferrer">
    <div class="embed-card-content">
      <div class="embed-card-title">Bigger Applications - Multiple Files - FastAPI</div>
      <div class="embed-card-description">FastAPI framework, high performance, easy to learn, fast to code, ready for production</div>
      <div class="embed-card-meta">fastapi.tiangolo.com</div>
    </div>
  </a>
</div>


 Fastapi lets you tag your `APIRouter`'s so that the swagger docs are grouped according to the router.

``` python
router = APIRouter(tags=['router'])
```

Now all routes in `router` will appear in the router group in the swagger docs.
