โ† Learn

Know Your Agent (KYA) compliance in Europe: EU AI Act, PSD3 and agent-payment liability

By Petteri, Co-founder of AsterPay ยท Published: 13 June 2026 ยท Last updated: 13 June 2026 ยท 10 min read
Answer Know Your Agent (KYA) is an identity and authorization framework for AI agents that transact autonomously. Before a payment completes, KYA verifies the agent's identity, the delegation chain from the human or organization that deployed it, the capability boundaries it may operate within, and produces a tamper-resistant audit trail. KYA is not yet a single codified law, but its components are already required in Europe by the EU AI Act (high-risk obligations take full effect 2 August 2026), PSD2/PSD3, DORA and the MiCA Travel Rule. KYA is to autonomous agents what KYC is to humans and KYB is to businesses.

What is Know Your Agent (KYA)?

Know Your Agent (KYA) is a four-part verification that a payment system runs before authorizing an agent-initiated transaction: identity, delegation chain, capability boundaries and audit trail. It extends the familiar Know Your Customer (KYC) and Know Your Business (KYB) regimes to a new class of actor โ€” autonomous software that can open new wallets at zero cost, act without a human in the loop, and scale activity horizontally faster than any human attacker.

The core shift is the question being asked. KYC asks "who is this person?" KYA asks "what is the operational reputation and authority of this agent?" โ€” is it sanctions-clean, does it have a verifiable identity, did a real principal authorize it, and is it staying inside the limits it was granted.

Why does KYA matter now? The 2 August 2026 deadline

The forcing function is regulatory. The EU AI Act's obligations for high-risk AI systems take full effect on 2 August 2026. The law mandates human oversight for high-risk systems, which in payments effectively requires a human-binding approach to agent authority โ€” exactly what a delegation chain provides. At the same time, US standards bodies are moving: NIST's AI Agent Standards Initiative published a concept paper on agent identity and authorization in March 2026, proposing to adapt OAuth, OpenID Connect and SPIFFE for agents.

The legal analysis is converging on two structural requirements. As Taylor Wessing's February 2026 review of agentic AI in payments noted, regulators will assess liability when agent payments go wrong using authorization chains and transaction logs. Without a KYA record โ€” identity, authorization chain, capability limits โ€” liability defaults to the deploying organization. Building KYA-compliant infrastructure now is materially cheaper than retrofitting it under a deadline.

What is the difference between KYC, KYB and KYA?

DimensionKYC (customer)KYB (business)KYA (agent)
SubjectA human personA legal entityAn autonomous AI agent
Core questionWho is this person?Is this business real and beneficially owned by whom?Who deployed this agent, and what is it authorized to do?
PermissionsAccount-levelAccount-levelTask-level: spending caps, categories, time limits
Driving regulationAML/CFT, national financial lawAML/CFT, beneficial-ownership rulesEU AI Act, PSD3, DORA, NIST agent standards (emerging)
Identity lifetimeLong-livedLong-livedCan be ephemeral โ€” new wallet at zero cost

Which EU regulations drive KYA?

No single rule says "do KYA," but four regimes each require a piece of it. Together they make KYA the practical way to comply.

What are the four checks in a KYA verification?

A KYA system runs four checks before a payment is authorized. Each maps to a regulatory requirement above.

  1. Identity โ€” the agent has a verifiable identity, ideally on-chain (e.g. ERC-8004) and bound to its operator. This satisfies the "who acted" question.
  2. Delegation chain โ€” cryptographic proof that the human or organization authorized this specific agent to act on its behalf, within stated scope. This is the authorization-chain requirement regulators will test.
  3. Capability boundaries โ€” declared and enforced limits: spend per transaction, per day, per category; allowed counterparties; prohibited actions. Crucially, these are enforced at the payment layer, not inside agent code, so a compromised or misaligned agent cannot exceed them.
  4. Audit trail โ€” a tamper-resistant log of identity, authorization and the decision, sufficient to attribute liability if a payment is later disputed. This is the Article 12 logging requirement.

Inbound KYA vs internal KYA

KYA splits into two deployments, and conflating them is a common mistake.

AsterPay's KYA is primarily an inbound control: it verifies the paying agent on behalf of the merchant, so the merchant inherits a compliant record without building agent governance themselves.

How does AsterPay implement KYA?

AsterPay runs KYA on every agent payment it facilitates. The model is an open 0-100 trust score across seven components, mapped to five payment tiers with enforced limits:

KYA componentWhat it checks
Wallet ageTime since first on-chain activity
Wallet activityVolume and recency of legitimate transactions
Sanctions screeningOFAC / EU / UN lists via Chainalysis, in <100ms
ERC-8004 identityOn-chain agent identity bound to operator
Operator KYBThe company behind the agent has completed KYB
Transaction historySettlement, dispute and refund rates over the agent's lifetime
Trust bondOptional posted USDC bond, slashed on confirmed bad behavior

Sanctions screening runs on every transaction, the Travel Rule is automated for transfers over EUR 1,000, and the seven-component breakdown doubles as the explanation required under the EU AI Act's transparency duties. The KYA v1 schema is published openly at /.well-known/kya-schema-v1.md so other facilitators and merchants can adopt it as a shared trust language โ€” the way FICO became a default credit-score language without being owned by a single bank. The full scoring rubric and tier limits are in What is KYA (Know Your Agent)?

How do I check an agent's KYA score?

A free, unauthenticated GET request returns the score, tier, component breakdown, sanctions status and recommended limits:

curl https://x402.asterpay.io/v1/agent/trust-score/0xYourAgent

{
  "score": 72,
  "tier": "trusted",
  "blocked": false,
  "sanctions": { "clean": true, "provider": "chainalysis" },
  "limits": { "maxPerTx": 5000, "maxDaily": 25000 }
}

Check any agent's trust score

Run a KYA trust-score lookup on any wallet address โ€” free, no signup, no auth.

Open the KYA API docs โ†’
PL
Petteri Co-founder of AsterPay (AELIRA LTD). Building the EU-regulated trust and EUR-settlement layer for AI agent commerce, including the open KYA framework. @Asterpayment

Related reading

References

  1. European Parliament & Council. "Artificial Intelligence Act", Regulation (EU) 2024/1689 โ€” high-risk obligations applicable 2 August 2026. artificialintelligenceact.eu
  2. European Commission. "Markets in Crypto-Assets Regulation (MiCA)", Regulation (EU) 2023/1114, incl. Travel Rule under Regulation (EU) 2023/1113.
  3. European Commission. "Digital Operational Resilience Act (DORA)", Regulation (EU) 2022/2554.
  4. European Commission. PSD3 / PSR proposals on payment services (in legislative process, 2025-2027).
  5. Taylor Wessing. "Agentic AI in payments โ€” authorization chains and transaction logs" (February 2026).
  6. NIST. "Concept paper on agent identity and authorization", AI Agent Standards Initiative (March 2026).
  7. AsterPay. "KYA Trust Score schema v1" (2026). asterpay.io/.well-known/kya-schema-v1

Have a correction or want this page to cover a different angle? Email [email protected]. We update this page every quarter.