Skip to content

List registry credentials

GET/registry/credentials

Lists stored registry credentials as host + username only — never the secret.

Responses
200 OKOK
RegistryCredentialListResponse
registriesarray | null
items
RegistryCredential
created_atstringdate-time
hoststring
usernamestring
501 Not Implemented
ErrorResponse
errorstring
Authentication
bearerAuthHTTP bearer. Daemon API key. Omit on a keyless loopback daemon.
Request
GET/registry/credentials
cURL
curl '/registry/credentials'
Response
200 OK
{
  "registries": [
    {
      "created_at": "2026-01-02T15:04:05Z",
      "host": "string",
      "username": "string"
    }
  ]
}
Was this page helpful?