204 No Content

The request succeeded and there is deliberately no response body.

Status code204
Status textNo Content
Category2xx Success
Response has bodyNo
SpecificationRFC 9110

What does 204 No Content mean?

The request succeeded and there is deliberately no response body. It belongs to the 2xx Success class, which means the request was received, understood and accepted.

When do APIs return 204?

Common for DELETE, and for PUT/PATCH when the API does not echo the updated resource.

How to fix a 204 No Content

Nothing to fix. An empty response body here is correct, not a bug — do not try to parse it as JSON.

Reproduce a 204 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/204 — you will see the 204 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 2xx status codes