Verifiers and Public info

Gets all verifiers in a trust registry by schema ID

GEThttps://api-testnet.truvera.io/trust-registries/{registryId}/verifiers
Path parameters
registryId*string

A trust registry id

Query parameters
Response

Public info of trust registry

Body
itemsstring
Request
const response = await fetch('https://api-testnet.truvera.io/trust-registries/{registryId}/verifiers?schemaId=text', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
[
  "text"
]

Get public information about a trust registry

GEThttps://api-testnet.truvera.io/trust-registries/{registryId}/public
Path parameters
registryId*string

A trust registry id

Response

Public info of trust registry

Body
id*string

Trust registry ID

Example: "0x601d148fb8895aca83eafb264293069911f76805b748b014ae64fcf0fd2d765d"
convener*DID (string)

DID as fully qualified, typically. did:dock:

Example: "did:dock:xyz"
convenerNamestring

Convener name

Example: "Truvera"
convenerLogoUrlstring

Convener logo URL

Example: "https://logo.truvera.io/convener"
slugstring

Trust registry slug

Example: "truvera-example-ecosystem-1"
noncestring

Trust registry nonce

Example: "0x57aecb3863404812"
created*string (date-time)
name*string

Trust registry name

Example: "Truvera Example Ecosystem"
description*string

Trust registry description

Example: "Labore voluptate adipisicing magna duis eu fugiat pariatur excepteur irure."
logoUrl*string (uri)

Trust registry logo URL

Example: "https://logo.truvera.io/trust-registry"
ecosystemUrl*string (uri)

Trust registry ecosystem URL

Example: "https://ecosystem.truvera.io"
governanceFramework*string

Trust registry governance framework

Example: "Lorem ea ea reprehenderit cupidatat minim incididunt occaecat est sit."
governanceFrameworkVersion*string

Trust registry governance framework version

Example: "1.0.0"
issuerCountinteger

Trust registry issuer count

Example: 10
verifierCountinteger

Trust registry verifier count

Example: 5
Request
const response = await fetch('https://api-testnet.truvera.io/trust-registries/{registryId}/public', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "id": "0x601d148fb8895aca83eafb264293069911f76805b748b014ae64fcf0fd2d765d",
  "convener": "did:dock:xyz",
  "convenerName": "Truvera",
  "convenerLogoUrl": "https://logo.truvera.io/convener",
  "slug": "truvera-example-ecosystem-1",
  "nonce": "0x57aecb3863404812",
  "created": "2025-01-09T20:04:03.153Z",
  "name": "Truvera Example Ecosystem",
  "description": "Labore voluptate adipisicing magna duis eu fugiat pariatur excepteur irure.",
  "logoUrl": "https://logo.truvera.io/trust-registry",
  "ecosystemUrl": "https://ecosystem.truvera.io",
  "governanceFramework": "Lorem ea ea reprehenderit cupidatat minim incididunt occaecat est sit.",
  "governanceFrameworkVersion": "1.0.0",
  "issuerCount": 10,
  "verifierCount": 5
}

Last updated