HTTP 403 Mock Endpoint

HTTP 403 Forbidden indicates the server understood the request but refuses to fulfill it. Unlike 401 Unauthorized (which is about missing/invalid authentication), 403 means the server knows who you are but you don't have permission to access this resource. Re-authenticating won't help — the denial is based on authorization policy, not identity verification.

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/403

Example request:

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