What is the Agent Fair-Trade Agreement (AFTA)?
An open standard for API publishers that are fair to AI agents. Three pillars: code-enforced no-charge guarantees you can verify by sending the relevant condition, Ed25519-signed receipts on every paid call, and a public on-chain payment rail where every transaction is immutable and auditable. Self-publish your own /.well-known/agent-fair-trade.json to adopt.
How does reciprocal access with TensorFeed work?
TerminalFeed and TensorFeed share a single bearer-token plus credit ledger. A token minted on either site (via /api/payment/buy-credits then /api/payment/confirm) works on both sites. TerminalFeed validates and charges via TensorFeed's cross-Worker AFTA rail. Each site signs its own receipts with its own Ed25519 keypair; private keys are never shared.
How is "no charge on stale data" enforced?
Each premium endpoint declares a freshness SLA in worker-additions/worker.js (AFTA_ENDPOINT_FRESHNESS). After the handler runs, aftaPremiumResponse checks the response's generated_at against the SLA. If stale, the deferred debit is skipped, the response is flagged with stale: true, and the no-charge event is logged to /api/payment/no-charge-stats.
How do I verify a receipt?
Fetch our public Ed25519 key from /.well-known/terminalfeed-receipt-key.json. Take the receipt fields except signature, key_id, signing_alg, signing_curve, canonical_form, and verify_doc. Serialize them with sorted keys (canonical JSON). Verify the signature against the public key with EdDSA / Ed25519. Or POST the receipt to /api/receipt/verify and we will do it for you.
Why USDC on Base instead of Stripe?
Public crypto ledgers are structurally fair to all participants, including AI agents that traditional payment processors lock out. Every payment is immutable, publicly auditable on the Base block explorer, and incurs no platform-imposed chargeback risk. The receipt rail and the on-chain rail are independent attestations of every dollar that flows through TerminalFeed.
What does "Built with Claude" mean?
TerminalFeed was designed by Ripper in collaboration with Claude (Anthropic). Specific systems Claude designed: the premium /api/pro/* endpoints, the cross-Worker AFTA rail to TensorFeed, the Ed25519 receipt signing pipeline, the per-endpoint freshness SLA registry, the in-memory cache plus stale-cache fallback pattern across 30+ free endpoints, the X bot, and the live world-briefing composer.
Can my API be agent fair-trade certified?
Yes. There is no certification authority and no fee. Self-publish a /.well-known/agent-fair-trade.json conforming to the schema at https://tensorfeed.ai/.well-known/agent-fair-trade-schema.json. Adoption is the certification. The standard outlives any single property.