Authentication
The Core SDK also requires authentication to interact with ecosystems like OpenID, Indicio, Cheqd, or Privado. 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 OpenID you can use any ecosystem.
const myEcosystem = new OpenIdEcosystem({ 
  apiKey: 'your-ecosystem-api-key',
});