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.
Fetch this OpenAPI document
GET
/openapi.json
const url = 'https://example.com/openapi.json';const options = {method: 'GET', headers: {'X-Api-Key': '<X-Api-Key>'}};
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://example.com/openapi.json \ --header 'X-Api-Key: <X-Api-Key>'Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”OpenAPI document
Media typeapplication/json
Example
{ "info": { "title": "Registry Notary API", "version": "0.15.0" }, "openapi": "3.1.0", "paths": { "/v1/evaluations": {} }}Missing or invalid credential
Media typeapplication/problem+json
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": "missing authentication credential", "request_id": "01J00000000000000000000000", "status": 401, "title": "Missing credential", "type": "https://id.registrystack.org/problems/registry-notary/auth/missing_credential"}