List registry packages owned by the given handle
GET/api/owners/{handle}/packages
listOwnerPackages
Packages are workspace-owned (ADR 0097), so this is the only surface an *unlinked* package appears on — one with no repo link has no repo page. Each package is filtered through the same authorization the pull path uses, so this list can never show a name its caller would be refused at `/v2/`.
Authentication is not described for this operation in the spec — that does not mean it is public. Check tokens and scopes.
curl
curl -X GET 'https://neosource.dev/api/owners/HANDLE/packages'fetch
fetch("https://neosource.dev/api/owners/HANDLE/packages", {
method: "GET",
});Path parameters
handlerequiredHandle of the owner — either a user account or an organization.
Responses
200Package list
application/json
403Forbidden — one of: forbidden, needs_scope
application/json
Standard errors
Bodies documented once for the whole API — see standard errors.
- 400Bad Request — one of: invalid_input
- 404Not Found — one of: not_found
- 429Rate limited — retry after the `Retry-After` header
- 500Internal server error
- 503Service temporarily unavailable / at capacity — retry after the `Retry-After` header
- 504Gateway timeout — the request exceeded the server's handling budget
Schemas
Referenced above. Listed here rather than expanded inline, so the same definition is not repeated at every level.
RepoVisibilityInput
"public""internal""private"