Search⌘ K
AI Features

Interactive API Docs—A Feature of FastAPI

Explore how FastAPI supports automatic interactive API documentation with OpenAPI and Swagger UI. Learn to test API routes, understand parameters, and view responses directly through the built-in UI. This lesson helps you efficiently manage and document your APIs for smoother development and testing.

Introduction to automatic UI documentation

One of the major benefits of FastAPI is that it is fully compatible with open standards for APIs, OpenAPI and JSON Schema. It provides an automatic UI generated for testing our entire API and its different routes. If you’ve previously used Postman, you’ll be able to ...