fromfastapiimportFastAPI,Responseapp=FastAPI()@app.get("/headers-and-object/")defget_headers(response:Response):response.headers["X-Cat-Dog"]="alone in the world"return{"message":"Hello World"}
fromfastapiimportFastAPIfromfastapi.responsesimportJSONResponseapp=FastAPI()@app.get("/headers/")defget_headers():content={"message":"Hello World"}headers={"X-Cat-Dog":"alone in the world","Content-Language":"en-US"}returnJSONResponse(content=content,headers=headers)