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.
Agent Registration
Operators complete KYB and register agents via API or dashboard. Cryptographic anchors are established.
POST /v1/agents
{
"name": "shopping-agent-v2",
"capabilities": ["purchase"],
"spend_limit": 5000
}Purchase Request
Agent initiates ACP checkout including its unique kya_id signature in the transaction payload.
// ACP Checkout Request
{
"agent_id": "auto-buyer",
"kya_id": "kya_agent_01HX5N",
"amount": 4999
}Edge Verification
Merchant queries KYA Edge API to verify trust score and behavioral attestations in real-time.
GET /v1/verify?kya_id=...
{
"trust_score": 87,
"verified": true,
"limit_match": true
}Integration Questions
How do I integrate KnowYourAgent into my checkout?
Add a single API call to your existing checkout flow. When an AI agent initiates a purchase, your backend sends the agent's KYA ID to POST /v1/verify and receives a trust score with an accept, review, or decline recommendation — no changes to your payment processor or cart platform needed.
Does KnowYourAgent work with Shopify and WooCommerce?
Yes. KYA offers native plugins for Shopify and WooCommerce that add agent verification directly to checkout. For custom platforms, the Edge Verification API works with any stack and returns results at sub-100ms latency.
What programming languages does KnowYourAgent support?
KYA provides official SDKs for Python, Node.js, and Rust. Operators use these to register agents and manage fleet settings programmatically. Merchants can also integrate through direct REST API calls or native platform plugins without any SDK.