API error codes

not-found

Not found · HTTP 404

No resource exists at the requested path, or the identifier in the path matches nothing. For an unknown path, the OpenAPI document lists every path this API serves.

Response shape

Returned as application/problem+json per RFC 9457. status is the HTTP status actually returned, which may differ from the 404 above where an endpoint has a more specific one.

{
  "type": "https://www.stackerscan.com/errors/not-found",
  "title": "Not found",
  "status": 404,
  "detail": "…"
}

Every path the API serves is listed in its OpenAPI document.

Not found (not-found) | StackerScan API errors | StackerScan