Concept Flow - Path parameters
Client sends request with URL
FastAPI matches URL path
Extract path parameter value
Pass parameter to function
Function processes parameter
Return response with parameter data
FastAPI takes the part of the URL defined as a path parameter, passes it to your function, and uses it to create a response.