Connectivity Interface
Integrate KYA into
Your Platform
Whether you're an AI agent operator or a merchant, KYA provides simple integration paths for the Agentic Commerce Protocol.
Protocol Lifecycle
The journey from agent registration to trusted transaction.
01
Agent Registration
Operators complete KYB and register agents via API or dashboard. Cryptographic anchors are established.
Active Protocol
POST /v1/agents
{
"name": "shopping-agent-v2",
"capabilities": ["purchase"],
"spend_limit": 5000
}02
Purchase Request
Agent initiates ACP checkout including its unique kya_id signature in the transaction payload.
Active Protocol
// ACP Checkout Request
{
"agent_id": "auto-buyer",
"kya_id": "kya_agent_01HX5N",
"amount": 4999
}03
Edge Verification
Merchant queries KYA Edge API to verify trust score and behavioral attestations in real-time.
Active Protocol
GET /v1/verify?kya_id=...
{
"trust_score": 87,
"verified": true,
"limit_match": true
}