Concept · L1
Agent Card — L1.
A signed identity credential minted for an Agent that proves an Inference genuinely originates from a known Agent.
[02]What it is
The Agent Card is Ainfera's identity primitive. It carries a signing key and a fingerprint; every Inference request is signed with it. Auditors and Providers can verify the signature without trusting Ainfera's servers.
[03]Where it shows up
Where it shows up.
- API
- GET /v1/agents/:id/card · POST /v1/agents/:id/card/rotate
- SDK
- from ainfera import AgentCard
- Audit log
- appears as agent_card.minted, agent_card.rotated events
[04]Code example
Code example.
agent = client.agents.create(name="research-assistant")
card = agent.card
# Every Inference is signed with the Agent Card
out = client.inferences.create(
agent_card=card,
model="claude-opus-4-7",
messages=[{"role": "user", "content": "summarize this"}],
)
assert out.signature_verified[05]Related
Spec alignment
Implements the ATS v1.0 signed-identity envelope; compatible with the AAMC v1.0 advisory for cross-Tenant context exchange.