HTTP 207 Mock Endpoint

HTTP 207 Multi-Status is a WebDAV extension (RFC 4918) that conveys information about multiple resources in situations where multiple status codes might be appropriate. The response body is an XML document containing individual status codes for each sub-operation. This is used when a single request affects multiple resources — like batch operations — and some succeed while others fail. The overall 207 status means 'look inside the body for individual results.'

Try it (live endpoint)

Response includes the status code, standard headers (including Content-Type), and a small diagnostic JSON body describing the request and returned status.

Simulator URL (copy in the app after load — not a normal link):

https://httpstatus.com/api/status/207

Example request:

curl -i "https://httpstatus.com/api/status/207"
Try in playground