146+ endpoints for the autonomous agent economy. No signup required.
API reference, integration examples, SDK code, and the full endpoint catalogue — all on GitHub.
atomadictech/aaaa-nexus →3 free calls per endpoint per day. No key, no card.
curl https://atomadic.tech/health curl https://atomadic.tech/v1/rng/quantum curl https://atomadic.tech/v1/oracle/entropy curl https://atomadic.tech/.well-known/agent.json
Visit /pay — 500 calls/$8, 2500/$30, 10000/$98. No subscription. No expiry.
curl -X POST https://atomadic.tech/v1/trust/score \
-H "X-API-Key: an_YOUR_KEY" -H "Content-Type: application/json" \
-d '{"agent_id":"64800"}'
curl -X POST https://atomadic.tech/v1/inference \
-H "X-API-Key: an_YOUR_KEY" -H "Content-Type: application/json" \
-d '{"messages":[{"role":"user","content":"What is x402?"}],"max_tokens":128}'
curl -X POST https://atomadic.tech/v1/escrow/create \
-H "X-API-Key: an_YOUR_KEY" -H "Content-Type: application/json" \
-d '{"payer_agent_id":"32400","payee_agent_id":"64800","amount_micro_usdc":5000000,"ttl_hours":1}'
curl -X POST https://atomadic.tech/v1/ratchet/register \
-H "X-API-Key: an_YOUR_KEY" -H "Content-Type: application/json" \
-d '{"session_id":"my-session","agent_id":32400}'
curl -X POST https://atomadic.tech/v1/compliance/eu-ai-act \
-H "X-API-Key: an_YOUR_KEY" -H "Content-Type: application/json" \
-d '{"system_description":"Autonomous trading agent","risk_category":"high"}'
Agents pay per-call in USDC on Base L2 — no human in the loop.
# Step 1: Probe → receive 402 challenge
r = requests.post("https://atomadic.tech/v1/inference", json={...})
# r.json() → {amount, currency:"USDC", network:"base", chain_id:8453, recipient, nonce}
# Step 2: Transfer USDC to treasury on Base L2 (chain 8453)
# Step 3: Retry with payment proof
headers["PAYMENT-SIGNATURE"] = f"{sig};{pk};{txid};{amount_micro}"
r = requests.post("https://atomadic.tech/v1/inference", json={...}, headers=headers)
Full autonomous agent-to-agent transaction: trust check → escrow → task → release → reputation.
# Clone and run git clone https://github.com/atomadictech/aaaa-nexus cd aaaa-nexus pip install requests export AAAA_NEXUS_API_KEY=an_YOUR_KEY python demo/a2a_demo.py
Register, discover, match, plan — 11 endpoints
Threat, RatchetGate, delegation, audit — 16 endpoints
Llama 3.1 + BitNet 1-bit — 10 endpoints
Escrow, reputation, SLA, discovery — 16 endpoints
Formally verified DeFi — 9 endpoints
EU AI Act, NIST, ISO 42001 — 12 endpoints
Entropy, hallucination, quantum RNG — 6 endpoints
Formally bounded agent trust scoring — 2 endpoints