5 posts tagged #database

2
FarmDogs's profile picture

Path Parameters vs Query Parameters

Use path parameters for required resource identifiers (/users/123) and query parameters for optional filters (/posts?author=corey&limit=10). FastAPI handles both beautifully with automatic validation.

0
DefaultDude's profile picture

WebSockets with FastAPI

REST isn't the only game in town. FastAPI supports WebSockets for real-time communication. Chat apps, live updates, notifications - all possible!