IMPP

SDK / API Reference

Integrate IMPP into your agent stack with the Python SDK or REST API.

Python SDK

Install

Quick start

python
from impp import Client

client = Client()

# Verify an artifact
result = client.verify("defi-risk-memory.json")
print(result.trust_score)  # 87.3
print(result.certificate)  # Ed25519 signed cert

# Search the registry
artifacts = client.search(domain="defi", min_trust=70)

# Attach to your agent
client.attach("defi-risk-memory.json", agent="my-agent")

API Reference

MethodDescription
client.verify(path)Run adversarial probes, return trust score
client.search(**kwargs)Search registry by domain, trust, tags
client.attach(path, agent)Attach verified memory to agent
client.publish(path)Publish artifact to registry
client.certificate(path)Get Ed25519 signed certificate

Rate Limits

Tier
Free1001,000
ProUnlimitedUnlimited (coming soon)