Agentity

Identity for AI Agents

Give your autonomous agents a verifiable identity. Like SSL certificates, but for agents.

🔐

Cryptographic Identity

Ed25519 signatures that can't be forged or spoofed.

Instant Verification

Anyone can verify an agent's identity in milliseconds.

🔑

Key Management

Issue, rotate, and revoke credentials anytime.

🌐

Open Standard

W3C-style discovery. Self-host or use our service.

Simple to Integrate

import { Agentity } from '@agentity/sdk';

// Create and credential an agent
const client = new Agentity({ apiKey: 'ag_...' });
const agent = await client.createAgent({ name: 'My Agent' });
const cred = await client.issueCredential(agent.id);

// Sign messages as the agent
const signer = new Agentity({ privateKey: cred.privateKey, agentId: agent.id });
const signature = await signer.sign('Hello, world!');

// Anyone can verify
const result = await new Agentity().verifySignature(agent.id, msg, signature);
console.log(result.valid); // true

How It Works

1

Register

Create an account and register your agents

2

Credential

Issue Ed25519 keypairs for signing

3

Sign

Your agent signs messages and actions

4

Verify

Anyone can verify the signature

Built For

🤖 AI Assistants 🔄 Automated Workflows 💬 Chat Bots 📧 Email Agents 🛒 Commerce Agents 🏦 Financial Bots 🔗 Multi-Agent Systems 🌐 API Integrations