422 Unprocessable Entity

The syntax is valid but the content fails the server's validation rules.

Status code422
Status textUnprocessable Entity
Category4xx Client Error
Response has bodyUsually
SpecificationRFC 9110

What does 422 Unprocessable Entity mean?

The syntax is valid but the content fails the server's validation rules. It belongs to the 4xx Client Error class, which means the request contains bad syntax or cannot be fulfilled. Something about the request needs to change.

When do APIs return 422?

Well-formed JSON that breaks a business rule — an invalid email, a date in the past, a value out of range.

How to fix a 422 Unprocessable Entity

Distinct from 400: your JSON parsed fine, but the data is not acceptable. Read the response body, which usually lists the failing fields, and correct the values.

Reproduce a 422 response

The fastest way to understand a status code is to trigger one and read the full response. Open the API tester and send a request to https://httpbin.org/status/422 — you will see the 422 status along with every response header the server sent. Comparing those headers against a working request is often what reveals the cause.

When you are debugging a real endpoint, check the response headers as carefully as the body, and confirm you are using the right HTTP method for the operation.

Related 4xx status codes