410 Gone

The resource was deliberately removed and will not come back.

Status code410
Status textGone
Category4xx Client Error
Response has bodyUsually
SpecificationRFC 9110

What does 410 Gone mean?

The resource was deliberately removed and will not come back. 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 410?

A retired API version or a permanently deleted record.

How to fix a 410 Gone

Unlike 404, this is intentional and permanent. Migrate to the replacement endpoint named in the documentation.

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