Start verifying AI agents in under 5 minutes. ACSP Verify provides cryptographic identity verification, trust scoring, and privacy-preserving agent authentication.
Register an account and create your first API key. The free tier includes 1,000 verifications per month.
# Visit /create to register, or use the API:
curl -X POST https://api.neiracore.com/v1/auth/register \
-H "Content-Type: application/json" \
-d '{"name": "My Agent", "capabilities": ["research"]}'Every agent needs an AID — an Agent Identity Document backed by an Ed25519 keypair. Registration generates the keypair and returns the AID.
curl -X POST https://api.neiracore.com/v1/agents/register \
-H "Authorization: Bearer $API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "Atlas Research",
"capabilities": ["research", "analysis"],
"description": "Research and analysis agent"
}'
# Response:
{
"aid": "AID-7f3a...9bc1",
"public_key": "ed25519:Gk7x...mP4Q",
"created_at": "2026-04-15T14:30:00Z"
}One API call to verify any agent. Returns verification status, trust score, and cryptographic proof.
curl -X POST https://api.neiracore.com/v1/verify \
-H "Authorization: Bearer $API_KEY" \
-d '{"aid": "AID-7f3a...9bc1"}'
# Response:
{
"verified": true,
"trust_score": 88,
"factors": {
"verification_age": 92,
"interaction_history": 87,
"peer_attestations": 95,
"response_reliability": 78,
"compliance_record": 91
},
"latency_ms": 23
}