Documentation preview. These pages target Registryctl v0.15.0, which is not published yet. Public download commands will not work until that release exists. For runnable released instructions, use v0.13.0.
RFC 9727 API catalog
GET
/.well-known/api-catalog
const url = 'https://data.example.test/.well-known/api-catalog';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://data.example.test/.well-known/api-catalogReturns the RFC 9727 linkset of API discovery links. Served publicly: the document is static and reveals no principal-scoped content.
Responses
Section titled “Responses”API catalog linkset.
Media typeapplication/linkset+json
RFC 9727 API catalog linkset document.
object
key
additional properties
any
Examplegenerated
{}default
Section titled “default”Problem Details error response.
Media typeapplication/problem+json
RFC 9457 Problem Details, returned for every non-2xx response.
object
code
required
string
detail
required
string
request_id
required
string
status
required
integer format: int32
title
required
string
type
required
string format: uri
key
additional properties
any
Example
{ "code": "auth.missing_credential", "detail": "no credential provided in Authorization or x-api-key header", "request_id": "01ARZ3NDEKTSV4RRFFQ69G5FAV", "status": 401, "title": "Missing credential", "type": "https://id.registrystack.org/problems/registry-relay/auth/missing_credential"}