Marked as helpful by the asker
Identical bodies, different headers. Your frontend sends Content-Type: text/plain (fetch does that for string bodies without a header), so FastAPI does not parse JSON. Add headers: { 'Content-Type': 'application/json' }. The 422 body tells you: value is not a valid dict.