← All status codes
2xx Success
204 No Content

The request succeeded but there is no content to return.

What it means

A 204 No Content response confirms the request was processed successfully, but there is intentionally no response body. This is common for DELETE operations or PUT updates where the result is implicit.

Common causes

  • A DELETE request successfully removed a resource.
  • A PUT request updated a resource and the server has nothing new to return.

How to fix it

  • No action needed. This is a successful response.

Test a URL and see its actual status code now.

Open the checker →