Bird
Raised Fist0
FastAPIframework~20 mins

Custom error response models in FastAPI - Practice Problems & Coding Challenges

Choose your learning style10 modes available

Start learning this pattern below

Jump into concepts and practice - no test required

or
Recommended
Test this pattern10 questions across easy, medium, and hard to know if this pattern is strong
Challenge - 5 Problems
🎖️
FastAPI Custom Error Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
component_behavior
intermediate
2:00remaining
What is the output when a custom error response model is used in FastAPI?

Consider this FastAPI endpoint with a custom error response model:

from fastapi import FastAPI, HTTPException
from pydantic import BaseModel

app = FastAPI()

class ErrorResponse(BaseModel):
    detail: str

@app.get("/items/{item_id}", responses={404: {"model": ErrorResponse}})
async def read_item(item_id: int):
    if item_id != 42:
        raise HTTPException(status_code=404, detail="Item not found")
    return {"item_id": item_id, "name": "The Answer"}

What will the client receive if they request /items/1?

FastAPI
from fastapi import FastAPI, HTTPException
from pydantic import BaseModel

app = FastAPI()

class ErrorResponse(BaseModel):
    detail: str

@app.get("/items/{item_id}", responses={404: {"model": ErrorResponse}})
async def read_item(item_id: int):
    if item_id != 42:
        raise HTTPException(status_code=404, detail="Item not found")
    return {"item_id": item_id, "name": "The Answer"}
A{"error": "Item not found"} with status code 404
B{"detail": "Item not found"} with status code 404
C{"detail": "Not Found"} with status code 404
D{"message": "Item not found"} with status code 404
Attempts:
2 left
💡 Hint

Look at the ErrorResponse model and the detail field.

📝 Syntax
intermediate
2:00remaining
Which option correctly defines a custom error response model in FastAPI?

Which of the following code snippets correctly defines a custom error response model for a 400 error in FastAPI?

A
@app.get("/users/{user_id}", responses={400: {"model": ErrorModel}})
async def get_user(user_id: int):
    pass

class ErrorModel(BaseModel):
    error: str
B
class ErrorModel(BaseModel):
    error: str

@app.get("/users/{user_id}", responses={"400": {"model": ErrorModel}})
async def get_user(user_id: int):
    pass
C
@app.get("/users/{user_id}", responses={"400": {"model": ErrorModel}})
async def get_user(user_id: int):
    pass

class ErrorModel(BaseModel):
    error: str
D
class ErrorModel(BaseModel):
    error: str

@app.get("/users/{user_id}", responses={400: {"model": ErrorModel}})
async def get_user(user_id: int):
    pass
Attempts:
2 left
💡 Hint

Remember to define the model before using it in the decorator.

🔧 Debug
advanced
2:00remaining
Why does this FastAPI custom error response model not show the expected field?

Given this code:

from fastapi import FastAPI, HTTPException
from pydantic import BaseModel

app = FastAPI()

class ErrorResponse(BaseModel):
    message: str

@app.get("/data", responses={404: {"model": ErrorResponse}})
async def get_data():
    raise HTTPException(status_code=404, detail="Data missing")

When requesting /data, the response JSON is {"detail": "Data missing"} instead of {"message": "Data missing"}. Why?

FastAPI
from fastapi import FastAPI, HTTPException
from pydantic import BaseModel

app = FastAPI()

class ErrorResponse(BaseModel):
    message: str

@app.get("/data", responses={404: {"model": ErrorResponse}})
async def get_data():
    raise HTTPException(status_code=404, detail="Data missing")
AThe custom error response model is ignored unless you manually catch the exception and return it.
BThe ErrorResponse model must have a 'detail' field to match the HTTPException detail key.
CFastAPI uses the HTTPException detail field as 'detail' key by default, ignoring the custom model's field name.
DThe responses dictionary must use string keys for status codes to work properly.
Attempts:
2 left
💡 Hint

Think about how FastAPI formats HTTPException responses by default.

state_output
advanced
2:00remaining
What is the output of this FastAPI endpoint with a custom error response model and manual exception handling?

Analyze this FastAPI code:

from fastapi import FastAPI, Request
from fastapi.responses import JSONResponse
from pydantic import BaseModel

app = FastAPI()

class ErrorResponse(BaseModel):
    message: str

@app.exception_handler(KeyError)
async def key_error_handler(request: Request, exc: KeyError):
    return JSONResponse(
        status_code=400,
        content={"message": f"Missing key: {exc.args[0]}"}
    )

@app.get("/items/{item_id}")
async def read_item(item_id: int):
    data = {"1": "apple", "2": "banana"}
    return {"item": data[str(item_id)]}

What will be the JSON response and status code if the client requests /items/3?

FastAPI
from fastapi import FastAPI, Request
from fastapi.responses import JSONResponse
from pydantic import BaseModel

app = FastAPI()

class ErrorResponse(BaseModel):
    message: str

@app.exception_handler(KeyError)
async def key_error_handler(request: Request, exc: KeyError):
    return JSONResponse(
        status_code=400,
        content={"message": f"Missing key: {exc.args[0]}"}
    )

@app.get("/items/{item_id}")
async def read_item(item_id: int):
    data = {"1": "apple", "2": "banana"}
    return {"item": data[str(item_id)]}
A{"message": "Missing key: 3"} with status code 400
B{"detail": "KeyError"} with status code 400
C500 Internal Server Error with no JSON response
D{"item": null} with status code 200
Attempts:
2 left
💡 Hint

Consider what happens when the key is missing in the dictionary and how the exception handler works.

🧠 Conceptual
expert
2:00remaining
Which statement best describes the role of custom error response models in FastAPI?

Choose the most accurate description of how custom error response models work in FastAPI.

AThey serve primarily as documentation and validation for error responses, but actual response content depends on exception handling.
BThey automatically transform raised exceptions into JSON responses matching the model's fields without extra code.
CThey replace the default HTTPException behavior and require no manual exception handlers to customize error output.
DThey enforce that all error responses must have the exact fields defined in the model, or else FastAPI raises an error.
Attempts:
2 left
💡 Hint

Think about what FastAPI does automatically and what requires manual coding.

Practice

(1/5)
1. What is the main purpose of using custom error response models in FastAPI?
easy
A. To define a clear and consistent structure for error messages returned by the API
B. To speed up the API response time
C. To automatically fix errors in the API code
D. To hide all error messages from the client

Solution

  1. Step 1: Understand error response models

    Custom error response models define how error messages look, making them clear and consistent.
  2. Step 2: Identify the purpose in FastAPI

    FastAPI uses these models to send structured error info to clients, improving API usability.
  3. Final Answer:

    To define a clear and consistent structure for error messages returned by the API -> Option A
  4. Quick Check:

    Custom error models = clear error messages [OK]
Hint: Custom error models shape error messages clearly [OK]
Common Mistakes:
  • Thinking they speed up API responses
  • Believing they fix code errors automatically
  • Assuming they hide errors completely
2. Which of the following is the correct way to define a custom error response model using Pydantic in FastAPI?
easy
A. class ErrorResponse: message = str; code = int
B. class ErrorResponse(BaseModel): message: str; code: int
C. ErrorResponse = {'message': str, 'code': int}
D. def ErrorResponse(message: str, code: int): return {'message': message, 'code': code}

Solution

  1. Step 1: Recognize Pydantic model syntax

    Pydantic models are defined as classes inheriting from BaseModel with typed attributes.
  2. Step 2: Match correct syntax

    class ErrorResponse(BaseModel): message: str; code: int correctly defines a class with typed fields using BaseModel.
  3. Final Answer:

    class ErrorResponse(BaseModel): message: str; code: int -> Option B
  4. Quick Check:

    Pydantic model = class with BaseModel [OK]
Hint: Use class with BaseModel and typed fields [OK]
Common Mistakes:
  • Defining models as functions
  • Using plain dictionaries instead of classes
  • Missing BaseModel inheritance
3. Given this FastAPI code snippet, what will be the response when a ValueError is raised?
from fastapi import FastAPI, Request
from fastapi.responses import JSONResponse
from pydantic import BaseModel

app = FastAPI()

class ErrorResponse(BaseModel):
    detail: str

@app.exception_handler(ValueError)
async def value_error_handler(request: Request, exc: ValueError):
    return JSONResponse(
        status_code=400,
        content=ErrorResponse(detail=str(exc)).dict()
    )

@app.get("/test")
async def test():
    raise ValueError("Invalid input")
medium
A. Empty response with status 204
B. Plain text 'Invalid input' with status 500
C. {"detail": "Invalid input"} with status 400
D. JSON with key 'error' and message 'Invalid input' with status 400

Solution

  1. Step 1: Understand exception handler behavior

    The handler catches ValueError and returns JSONResponse with ErrorResponse model content and status 400.
  2. Step 2: Check response content and status

    The content is the dict form of ErrorResponse with detail set to the exception message, so JSON has key 'detail' with 'Invalid input'.
  3. Final Answer:

    {"detail": "Invalid input"} with status 400 -> Option C
  4. Quick Check:

    Exception handler returns JSON with detail key [OK]
Hint: Exception handler returns model dict as JSON with status [OK]
Common Mistakes:
  • Expecting plain text instead of JSON
  • Confusing status codes
  • Assuming different JSON key names
4. Identify the error in this FastAPI custom error handler code:
from fastapi import FastAPI, Request
from fastapi.responses import JSONResponse
from pydantic import BaseModel

app = FastAPI()

class ErrorResponse(BaseModel):
    message: str

@app.exception_handler(KeyError)
async def key_error_handler(request: Request, exc: KeyError):
    return JSONResponse(
        status_code=404,
        content=ErrorResponse(message=exc).dict()
    )
medium
A. Missing BaseModel inheritance in ErrorResponse
B. Exception handler must be synchronous, not async
C. Using status code 404 instead of 400
D. Passing the exception object directly instead of converting to string

Solution

  1. Step 1: Check how exception is passed to model

    The code passes exc (KeyError object) directly to message field which expects a string.
  2. Step 2: Identify correct usage

    It should convert exc to string with str(exc) to avoid type errors.
  3. Final Answer:

    Passing the exception object directly instead of converting to string -> Option D
  4. Quick Check:

    Exception message must be string [OK]
Hint: Convert exception to string before passing to model [OK]
Common Mistakes:
  • Passing exception object without str()
  • Confusing async/sync handler rules
  • Incorrect status code choice
5. You want to create a FastAPI app that returns a custom error response with fields error_code (int) and error_msg (str) whenever a RuntimeError occurs. Which of the following code snippets correctly implements this behavior?
hard
A. class CustomError(BaseModel): error_code: int; error_msg: str @app.exception_handler(RuntimeError) async def runtime_error_handler(request: Request, exc: RuntimeError): return JSONResponse(status_code=500, content=CustomError(error_code=1001, error_msg=str(exc)).dict())
B. class CustomError(BaseModel): error_code: str; error_msg: int @app.exception_handler(RuntimeError) async def runtime_error_handler(request: Request, exc: RuntimeError): return JSONResponse(status_code=400, content=CustomError(error_code='1001', error_msg=exc).dict())
C. class CustomError: def __init__(self, error_code, error_msg): self.error_code = error_code self.error_msg = error_msg @app.exception_handler(RuntimeError) async def runtime_error_handler(request: Request, exc: RuntimeError): return JSONResponse(status_code=500, content=CustomError(1001, str(exc)))
D. @app.exception_handler(RuntimeError) async def runtime_error_handler(request: Request, exc: RuntimeError): return JSONResponse(status_code=500, content={'error_code': 1001, 'error_msg': str(exc)})

Solution

  1. Step 1: Define correct Pydantic model

    class CustomError(BaseModel): error_code: int; error_msg: str @app.exception_handler(RuntimeError) async def runtime_error_handler(request: Request, exc: RuntimeError): return JSONResponse(status_code=500, content=CustomError(error_code=1001, error_msg=str(exc)).dict()) defines CustomError inheriting from BaseModel with correct field types (int and str).
  2. Step 2: Implement exception handler properly

    class CustomError(BaseModel): error_code: int; error_msg: str @app.exception_handler(RuntimeError) async def runtime_error_handler(request: Request, exc: RuntimeError): return JSONResponse(status_code=500, content=CustomError(error_code=1001, error_msg=str(exc)).dict())'s handler returns JSONResponse with status 500 and content as dict from CustomError instance, converting exception to string.
  3. Step 3: Check other options for errors

    class CustomError(BaseModel): error_code: str; error_msg: int @app.exception_handler(RuntimeError) async def runtime_error_handler(request: Request, exc: RuntimeError): return JSONResponse(status_code=400, content=CustomError(error_code='1001', error_msg=exc).dict()) swaps types incorrectly and passes exc without str(); class CustomError: def __init__(self, error_code, error_msg): self.error_code = error_code self.error_msg = error_msg @app.exception_handler(RuntimeError) async def runtime_error_handler(request: Request, exc: RuntimeError): return JSONResponse(status_code=500, content=CustomError(1001, str(exc))) uses plain class not BaseModel and returns object not dict; @app.exception_handler(RuntimeError) async def runtime_error_handler(request: Request, exc: RuntimeError): return JSONResponse(status_code=500, content={'error_code': 1001, 'error_msg': str(exc)}) skips model usage.
  4. Final Answer:

    Option A correctly defines model and handler returning proper JSON response -> Option A
  5. Quick Check:

    Use BaseModel with typed fields and dict() in handler [OK]
Hint: Use BaseModel and dict() for error response content [OK]
Common Mistakes:
  • Swapping field types in model
  • Not converting exception to string
  • Returning model instance instead of dict
  • Skipping Pydantic model for error response