Ainfera

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 isOne-paragraph definition

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 upAPI · SDK · Audit log

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 exampleWorking snippet

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]RelatedOther concepts · full ontology

Spec alignment

Implements the ATS v1.0 signed-identity envelope; compatible with the AAMC v1.0 advisory for cross-Tenant context exchange.