Everything you need to integrate AI agents with digital services
npm install @agentx/sdk
yarn add @agentx/sdk
pnpm add @agentx/sdk
const AgentX = require('@agentx/sdk');
const client = new AgentX({
apiKey: 'your_api_key_here'
});
const identity = await client.identities.create({
agentId: 'unique_agent_id',
verificationLevel: 1
});
const verification = await client.identities.verify({
agentId: identity.agentId,
proof: 'verification_proof'
});
Method | Description |
---|---|
identities.create() |
Create a new agent identity |
identities.verify() |
Verify an agent's identity |
identities.get() |
Retrieve agent identity details |