405 Method Not Allowed

The endpoint exists but does not support the HTTP method you used.

Status code405
Status textMethod Not Allowed
Category4xx Client Error
Response has bodyUsually
SpecificationRFC 9110

What does 405 Method Not Allowed mean?

The endpoint exists but does not support the HTTP method you used. 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 405?

Sending POST to a read-only endpoint, or PUT where the API expects PATCH.

How to fix a 405 Method Not Allowed

Read the Allow response header — it lists the methods the endpoint accepts. Send an OPTIONS request to discover them.

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