Starter
FastAPI Starter
Production-ready Python API template with async support, automatic OpenAPI docs, and Meridian license verification baked in from the first request.
⚡
Async by default
Every endpoint is async-ready. SQLAlchemy 2.0 async sessions, httpx for outbound calls, zero blocking I/O.
🔐
License middleware
Drop-in ASGI middleware that validates Meridian license keys against our API before your route handlers execute.
📖
Auto OpenAPI docs
Swagger UI and ReDoc ship with the template. Your customers get interactive API docs on day one.
Quick start
git clone https://github.com/meridian/starter-fastapi.git
cd starter-fastapi
pip install -r requirements.txt
uvicorn app.main:app --reload