example-data.com
Menu

Errors

API-generated error responses use RFC 7807 problem details and the application/problem+json content type:

{
  "type": "https://example-data.com/errors/not-found",
  "title": "Not found",
  "status": 404,
  "detail": "No user with id=99999",
  "instance": "/api/v1/users/99999"
}

A HEAD request returns the same status and headers as GET, but its response body is empty as required by HTTP semantics.

Status codes

Problem types

The type member is a stable, dereferenceable URL. Open it for an explanation and suggested resolution.