Vercel + FastAPI

from fastapi import FastAPI

app = FastAPI()

@app.get("/")
def read_root():
    return {"Python": "on Vercel"}

Interactive API Docs

Explore this API's endpoints with the interactive Swagger UI. Test requests and view response schemas in real-time.

Open Swagger UI →