409 Conflict

The request conflicts with the current state of the resource.

Status code409
Status textConflict
Category4xx Client Error
Response has bodyUsually
SpecificationRFC 9110

What does 409 Conflict mean?

The request conflicts with the current state of the resource. 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 409?

Creating a record with a duplicate unique field, or a concurrent-edit collision.

How to fix a 409 Conflict

Fetch the current state first and reconcile. For optimistic concurrency, re-read the resource, take its new ETag or version, and retry.

Reproduce a 409 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/409 — you will see the 409 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