Use when building high-performance async Python APIs with FastAPI and Pydantic V2. Invoke to create REST endpoints, define Pydantic models, implement authentication flows, set up async SQLAlchemy database operations, add JWT authentication, build WebSocket endpoints, or generate OpenAPI documentation. Trigger terms: FastAPI, Pydantic, async Python, Python API, REST API Python, SQLAlchemy async, JWT authentication, OpenAPI, Swagger Python.
git clone https://github.com/Jeffallan/claude-skills.git--- name: fastapi-expert description: "Use when building high-performance async Python APIs with FastAPI and Pydantic V2. Invoke to create REST endpoints, define Pydantic models, implement authentication flows, set up async SQLAlchemy database operations, add JWT authentication, build WebSocket endpoints, or generate OpenAPI documentation. Trigger terms: FastAPI, Pydantic, async Python, Python API, REST API Python, SQLAlchemy async, JWT authentication, OpenAPI, Swagger Python." license: MIT metadata: author: https://github.com/Jeffallan version: "1.1.0" domain: backend triggers: FastAPI, Pydantic, async Python, Python API, REST API Python, SQLAlchemy async, JWT authentication, OpenAPI, Swagger Python role: specialist scope: implementation output-format: code related-skills: fullstack-guardian, django-expert, test-master --- # FastAPI Expert Deep expertise in async Python, Pydantic V2, and production-grade API development with FastAPI. ## When to Use This Skill - Building REST APIs with FastAPI - Implementing Pydantic V2 validation schemas - Setting up async database operations - Implementing JWT authentication/authorization - Creating WebSocket endpoints - Optimizing API performance ## Core Workflow 1. **Analyze requirements** — Identify endpoints, data models, auth needs 2. **Design schemas** — Create Pydantic V2 models for validation 3. **Implement** — Write async endpoints with proper dependency injection 4. **Secure** — Add authentication, authorization, rate limiting 5. **Test** — Write async tests with pytest and httpx; run `pytest` after each endpoint group and verify OpenAPI docs at `/docs` > **Checkpoint after each step:** confirm schemas validate correctly, endpoints return expected HTTP status codes, and `/docs` reflects the intended API surface before proceeding. ## Minimal Complete Example Schema + endpoint + dependency injection in one cohesive unit: ```python # schemas.py from pydantic import BaseModel, EmailStr, field_validator, model_config class UserCreate(BaseModel): model_config = model_config(str_strip_whitespace=True) email: EmailStr password: str name: str | None = None @field_validator("password") @classmethod def password_strength(cls, v: str) -> str: if len(v) < 8: raise ValueError("Password must be at least 8 characters") return v class UserResponse(BaseModel): model_config = model_config(from_attributes=True) id: int email: EmailStr name: str | None = None ``` ```python # routers/users.py from fastapi import APIRouter, Depends, HTTPException, status from sqlalchemy.ext.asyncio import AsyncSession from typing import Annotated from app.database import get_db from app.schemas import UserCreate, UserResponse from app import crud router = APIRouter(prefix="/users", tags=["users"]) DbDep = Annotated[AsyncSession, Depends(get_db)] @router.post("/", response_model=UserResponse, status_code=status.HTTP_201_CREATED) async def create_user(payload: UserCreate, db: DbDep) -> UserResponse: existing = await crud.get_user_by_email(db, payload.email) if existing: raise HTTPException(status_code=status.HTTP_409_CONFLICT, detail="Email already registered") return await crud.create_user(db, payload) ``` ```python # crud.py from sqlalchemy import select from sqlalchemy.ext.asyncio import AsyncSession from app.models import User from app.schemas import UserCreate from app.security import hash_password async def get_user_by_email(db: AsyncSession, email: str) -> User | None: result = await db.execute(select(User).where(User.email == email)) return result.scalar_one_or_none() async def create_user(db: AsyncSession, payload: UserCreate) -> User: user = User(email=payload.email, hashed_password=hash_password(payload.password), name=payload.name) db.add(user) await db.commit() await db.refresh(user) return user ``` ## JWT Authentication Snippet ```python # security.py from datetime import datetime, timedelta, timezone from jose import JWTError, jwt from fastapi import Depends, HTTPException, status from fastapi.security import OAuth2PasswordBearer from typing import Annotated SECRET_KEY = "read-from-env" # use os.environ / settings ALGORITHM = "HS256" oauth2_scheme = OAuth2PasswordBearer(tokenUrl="/auth/token") def create_access_token(subject: str, expires_delta: timedelta = timedelta(minutes=30)) -> str: payload = {"sub": subject, "exp": datetime.now(timezone.utc) + expires_delta} return jwt.encode(payload, SECRET_KEY, algorithm=ALGORITHM) async def get_current_user(token: Annotated[str, Depends(oauth2_scheme)]) -> str: try: data = jwt.decode(token, SECRET_KEY, algorithms=[ALGORITHM]) subject: str | None = data.get("sub") if subject is None: raise ValueError return subject except (JWTError, ValueError): raise HTTPException(status_code=status.HTTP_401_UNAUTHORIZED, detail="Invalid credentials") CurrentUser = Annotated[str, Depends(get_current_user)] ``` ## Reference Guide Load detailed guidance based on context: | Topic | Reference | Load When | |-------|-----------|-----------| | Pydantic V2 | `references/pydantic-v2.md` | Creating schemas, validation, model_config | | SQLAlchemy | `references/async-sqlalchemy.md` | Async database, models, CRUD operations | | Endpoints | `references/endpoints-routing.md` | APIRouter, dependencies, routing | | Authentication | `references/authentication.md` | JWT, OAuth2, get_current_user | | Testing | `references/testing-async.md` | pytest-asyncio, httpx, fixtures | | Django Migration | `references/migration-from-django.md` | Migrating from Django/DRF to FastAPI | ## Constraints ### MUST DO - Use type hints everywhere (FastAPI requires them) - Use Pydantic V2 syntax (`field_validator`, `model_validator`, `model_config`) - Use `Annotated` pattern for dependency injection - Use async/await for all I/O operations - Use `X | None` instead of `Optional[X]` - Return proper HTTP status codes - Document endpoints (auto-generated OpenAPI) ### MUST NOT DO - Use synchronous database operations - Skip Pydantic validation - Store passwords in plain text - Expose sensitive data in responses - Use Pydantic V1 syntax (`@validator`, `class Config`) - Mix sync and async code improperly - Hardcode configuration values ## Output Templates When implementing FastAPI features, provide: 1. Schema file (Pydantic models) 2. Endpoint file (router with endpoints) 3. CRUD operations if database involved 4. Brief explanation of key decisions ## Knowledge Reference FastAPI, Pydantic V2, async SQLAlchemy, Alembic migrations, JWT/OAuth2, pytest-asyncio, httpx, BackgroundTasks, WebSockets, dependency injection, OpenAPI/Swagger [Documentation](https://jeffallan.github.io/claude-skills/skills/backend/fastapi-expert/)
1. **Prepare your environment**: Install FastAPI, Uvicorn, SQLAlchemy 2.0+, asyncpg, and Pydantic V2. Use `pip install fastapi uvicorn sqlalchemy[asyncio] asyncpg pydantic==2.0.* python-jose[cryptography] passlib bcrypt`. 2. **Customize the template**: Replace [ENDPOINTS_LIST] with your specific endpoints (e.g., '/items', '/users'). Update [DATABASE_URL] with your PostgreSQL/MySQL async connection string. Set [SECRET_KEY] to a strong random value and [ALGORITHM] to 'HS256' or 'RS256'. 3. **Implement your models**: Define your SQLAlchemy models in the Base class. Create corresponding Pydantic models for request/response validation. Use `Field` for validation constraints. 4. **Add authentication logic**: Replace the placeholder JWT logic with your actual user lookup in the database. Implement password hashing with `pwd_context.hash()` and verification with `pwd_context.verify()`. 5. **Run and test**: Start the server with `uvicorn main:app --reload`. Test endpoints using Swagger UI at `http://localhost:8000/docs` or with tools like Postman. For WebSocket testing, use a WebSocket client like `websocat`. Tips: Use `async for` with database sessions. Leverage Pydantic's `Field` for advanced validation. For production, add proper error handling, logging, and environment variables for secrets.
No install command available. Check the GitHub repository for manual installation instructions.
git clone https://github.com/Jeffallan/claude-skills/tree/main/skills/fastapi-expertCopy the install command above and run it in your terminal.
Launch Claude Code, Cursor, or your preferred AI coding agent.
Use the prompt template or examples below to test the skill.
Adapt the skill to your specific use case and workflow.
Build a high-performance FastAPI application with async SQLAlchemy, Pydantic V2 models, and JWT authentication. Create these endpoints: [ENDPOINTS_LIST]. For each endpoint, define a Pydantic request/response model. Implement async database operations using SQLAlchemy 2.0 with [DATABASE_URL]. Add JWT authentication with [SECRET_KEY] and [ALGORITHM]. Include rate limiting, CORS, and OpenAPI documentation. Use Python 3.11+ async/await syntax throughout. Generate the complete application code in a single file.
```python
from fastapi import FastAPI, Depends, HTTPException, status, Request
from fastapi.security import OAuth2PasswordBearer, OAuth2PasswordRequestForm
from pydantic import BaseModel, Field
from typing import Optional, List
from datetime import datetime, timedelta
from jose import JWTError, jwt
from passlib.context import CryptContext
from sqlalchemy.ext.asyncio import create_async_engine, AsyncSession
from sqlalchemy.orm import sessionmaker, declarative_base
from sqlalchemy import Column, Integer, String, Boolean, DateTime
import os
from fastapi.middleware.cors import CORSMiddleware
from fastapi.responses import JSONResponse
from fastapi.encoders import jsonable_encoder
from fastapi import FastAPI, WebSocket, WebSocketDisconnect
from fastapi.security import HTTPBearer, HTTPAuthorizationCredentials
# Configuration
SECRET_KEY = "your-secret-key-here"
ALGORITHM = "HS256"
ACCESS_TOKEN_EXPIRE_MINUTES = 30
DATABASE_URL = "postgresql+asyncpg://user:password@localhost:5432/mydatabase"
# Models
Base = declarative_base()
class User(Base):
__tablename__ = "users"
id = Column(Integer, primary_key=True, index=True)
username = Column(String, unique=True, index=True)
email = Column(String, unique=True, index=True)
hashed_password = Column(String)
is_active = Column(Boolean, default=True)
created_at = Column(DateTime, default=datetime.utcnow)
class UserCreate(BaseModel):
username: str = Field(..., min_length=3, max_length=50)
email: str = Field(..., regex=r"^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$")
password: str = Field(..., min_length=8)
class UserResponse(BaseModel):
id: int
username: str
email: str
is_active: bool
created_at: datetime
class Token(BaseModel):
access_token: str
token_type: str
class TokenData(BaseModel):
username: Optional[str] = None
# Database setup
engine = create_async_engine(DATABASE_URL, echo=True)
AsyncSessionLocal = sessionmaker(
bind=engine, class_=AsyncSession, expire_on_commit=False
)
# Password hashing
pwd_context = CryptContext(schemes=["bcrypt"], deprecated="auto")
# JWT
oauth2_scheme = OAuth2PasswordBearer(tokenUrl="token")
security = HTTPBearer()
app = FastAPI(title="FastAPI Expert Example", version="1.0.0")
# CORS
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
# Dependency
async def get_db():
async with AsyncSessionLocal() as session:
yield session
async def get_current_user(
token: str = Depends(oauth2_scheme),
db: AsyncSession = Depends(get_db)
):
credentials_exception = HTTPException(
status_code=status.HTTP_401_UNAUTHORIZED,
detail="Could not validate credentials",
headers={"WWW-Authenticate": "Bearer"},
)
try:
payload = jwt.decode(token, SECRET_KEY, algorithms=[ALGORITHM])
username: str = payload.get("sub")
if username is None:
raise credentials_exception
token_data = TokenData(username=username)
except JWTError:
raise credentials_exception
# In a real app, you'd query the user from the database
user = User(username=token_data.username, email="[email protected]", hashed_password="hashed_password")
if user is None:
raise credentials_exception
return user
# Endpoints
@app.post("/register", response_model=UserResponse)
async def register_user(user: UserCreate, db: AsyncSession = Depends(get_db)):
# In a real app, hash the password and save to database
db_user = User(
username=user.username,
email=user.email,
hashed_password=pwd_context.hash(user.password)
)
db.add(db_user)
await db.commit()
await db.refresh(db_user)
return db_user
@app.post("/token", response_model=Token)
async def login_for_access_token(
form_data: OAuth2PasswordRequestForm = Depends(),
db: AsyncSession = Depends(get_db)
):
# In a real app, verify user credentials
user = await db.execute(
select(User).where(User.username == form_data.username)
)
user = user.scalar_one_or_none()
if not user or not pwd_context.verify(form_data.password, user.hashed_password):
raise HTTPException(
status_code=status.HTTP_401_UNAUTHORIZED,
detail="Incorrect username or password",
headers={"WWW-Authenticate": "Bearer"},
)
access_token_expires = timedelta(minutes=ACCESS_TOKEN_EXPIRE_MINUTES)
access_token = jwt.encode(
{"sub": user.username}, SECRET_KEY, algorithm=ALGORITHM
)
return {"access_token": access_token, "token_type": "bearer"}
@app.get("/users/me", response_model=UserResponse)
async def read_users_me(current_user: User = Depends(get_current_user)):
return current_user
@app.websocket("/ws")
async def websocket_endpoint(websocket: WebSocket):
await websocket.accept()
try:
while True:
data = await websocket.receive_text()
await websocket.send_text(f"Message text was: {data}")
except WebSocketDisconnect:
print("Client disconnected")
# Run with: uvicorn main:app --reload
```skills-collection
Take a free 3-minute scan and get personalized AI skill recommendations.
Take free scan