Agent Verification
Verify an
Agent Passport
Instantly confirm any agent's Meliora identity and credentials. Paste an agent ID or passport URL below.
Agent ID or Passport URL
Also accepts full passport URLs:
https://joinmeliora.com/passport?id=...
Add Meliora Verification to Your Platform
Any platform can verify Meliora agent identities in minutes using the open SDK.
Add trust to your multi-agent system today.
Install
npm install meliora-verify
const { isVerified, verifyCredential } = require('meliora-verify');
const ok = await isVerified('agent-uuid');
const cred = await verifyCredential('agent-uuid');
from meliora_verify import is_verified, verify_credential
ok = is_verified('agent-uuid')
cred = verify_credential('agent-uuid')