FastAPI

Category:Articles with short descriptionCategory:Short description is different from Wikidata Category:Articles with multiple maintenance issues
FastAPI
Developer(s)Sebastián Ramírez
Initial releaseDecember 5, 2018; 6 years ago (2018-12-05)[1]
Stable release
0.115.12[2] Edit this on Wikidata / 23 March 2025; 51 days ago (23 March 2025)
Repositorygithub.com/tiangolo/fastapi
Written inPython
TypeWeb framework
LicenseMIT
Websitefastapi.tiangolo.com

FastAPI is a high-performance web framework for building HTTP-based service APIs in Python 3.8+.[3] It uses Pydantic and type hints to validate, serialize and deserialize data. FastAPI also automatically generates OpenAPI documentation for APIs built with it.[4] It was first released in 2018.

Components

Pydantic

Pydantic is a data validation library for Python. While writing code in an IDE, Pydantic provides type hints for schema validation and serialization through type annotations.[5]

Starlette

Starlette is a lightweight ASGI framework/toolkit, to support async functionality in Python.[6]

Uvicorn

Uvicorn is a minimal low-level server/application web server for async frameworks, following the ASGI specification. Technically, it implements a multi-process model with one main process, which is responsible for managing a pool of worker processes and distributing incoming HTTP requests to them. The number of worker processes is pre-configured, but can also be adjusted up or down at runtime.[7]

OpenAPI Integration

FastAPI automatically generates OpenAPI documentation for APIs. This documentation includes both Swagger UI and ReDoc, which provide interactive API documentation that you can use to explore and test your endpoints in real time. This is particularly useful for developing, testing, and sharing APIs with other developers or users.[8]

Example

The following code shows a simple web application that displays "Hello World!" when visited:

from fastapi import FastAPI

app = FastAPI()

@app.get("/")
async def read_root():
    return "Hello World!"

See also

References

  1. "fastapi repo". GitHub. 2018-12-05.
  2. "Release 0.115.12". 23 March 2025. Retrieved 24 March 2025.
  3. "FastAPI". fastapi.tiangolo.com. Retrieved 2024-04-10.
  4. Lubanovic, Bill (2019-11-06). Introducing Python: Modern Computing in Simple Packages (2nd ed.). O'Reilly Media, Inc. pp. 397, 418. ISBN 9781492051367.
  5. "Why use Pydantic - Pydantic". docs.pydantic.dev. Retrieved 2023-09-21.
  6. "Starlette". www.starlette.io. Retrieved 2023-09-21.
  7. "Restarting 'uvicorn' Workers with the 'SIGHUP' Signal". bugfactory.io. Retrieved 2024-06-17.
  8. https://fastapi.tiangolo.com/reference/openapi/docs/
Category:2018 software Category:Python (programming language) web frameworks Category:Software using the MIT license Category:Web frameworks
Category:2018 software Category:All articles lacking reliable references Category:All articles with a promotional tone Category:All stub articles Category:Articles lacking reliable references from February 2022 Category:Articles with a promotional tone from February 2022 Category:Articles with multiple maintenance issues Category:Articles with short description Category:Python (programming language) web frameworks Category:Short description is different from Wikidata Category:Software using the MIT license Category:Web frameworks Category:Web software stubs