Skip to main content

Authentication

The Core SDK also requires authentication to interact with ecosystems like EU Digital Identity, Microsoft Entra, Indicio, Cheqd, or Polygon. You authenticate using your Ecosystem API key.

  • API Key – Generated from the Hovi Studio. Use this to create, manage, and interact with your ecosystem resources such as tenants, connections, or credential exchanges.

Initialization

import { OpenIdEcosystem } from '@hovi/core-sdk';

// We are using EU Digital Identity you can use any ecosystem.
const myEcosystem = new OpenIdEcosystem({
apiKey: 'your-ecosystem-api-key',
});