Quick Start (60 seconds)
New: Verify receipts offline without an API key.
1. Install the Python SDK
pip install pfc-client
2. Run your first governed decision
from pfc_client import PFCClient
client = PFCClient(api_key="YOUR_API_KEY")
result = client.evaluate(
action="wire_transfer",
amount=50000
)
print(result)
3. Example response
{
"decision": {
"allow": true,
"reason": "Authorized"
},
"decision_hash": "8e9d1a04ee3d0febacbb91c58c7eb7db9b1c7b621e24e23cfb608f89fcdc7628",
"signature": "jB/+oJK0uGvP2W0i4kJzSD2qm8iRFsOKAq8accmlavCh..."
}
Every request through Prime Form Calculus generates a deterministic governance record including a decision hash and cryptographic signature.
Use this integration path when you need to reduce AI execution risk before a workflow reaches the execution boundary.
Need measured evidence for the same hosted route you are integrating? View live proof for governed load, mixed allow and deny traffic, stale-timestamp freshness enforcement, and recovery behavior.
Teams explaining where policy ends and runtime enforcement begins can also use AI execution risk to frame why execution-time control matters.
All requests are secured with execution-time authorization. Learn more → Security
Need the explored-to-executed chain? Open the end-to-end decision traceability example to see exploration artifacts, execution receipts, and SDK resolution in one flow.