API error codes

unauthorized

Unauthorized · HTTP 401

The request addressed a resource that belongs to a signed-in account. The public read-only endpoints described in the OpenAPI document never return this; if you received it, the path you called is not part of the public surface.

Response shape

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

{
  "type": "https://www.stackerscan.com/errors/unauthorized",
  "title": "Unauthorized",
  "status": 401,
  "detail": "…"
}

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

Unauthorized (unauthorized) | StackerScan API errors | StackerScan