AffixIO trust infrastructure

AI commerce needs verified agents, not anonymous automation.

AffixIO helps merchants and platforms decide whether an AI shopping agent is allowed to compare, reserve, buy, return or negotiate.

01

The problem

Autonomous systems can now buy, write, export, reserve and change state, but most products still treat them like ordinary browser traffic.

02

Where AffixIO sits

AffixIO verifies the actor, policy, user consent, action scope, eligibility and audit needs before the action runs.

03

Why it matters

The result is a signed allow or deny decision that product, risk, audit and support teams can understand.

04

Built for developers

Use the affixio SDK from npm to add proof checks to Node.js services without storing extra personal data.

Developer quick start

Add AffixIO to a Node.js service when an AI agent, marketplace, fintech, age-gated app or checkout flow needs a verifiable permission result.

npm install affixio

import { AffixIO } from "affixio";

const affix = new AffixIO({
  apiKey: process.env.AFFIXIO_API_KEY
});

const proof = await affix.verify({
  circuit: "agent-permission",
  subject: agent.id,
  claim: { action: "checkout", limit: 50 }
});

if (!proof.eligible) throw new Error("Agent not approved");

Questions people ask

What does AffixIO provide?

AffixIO provides privacy-preserving verification infrastructure for signed yes or no outcomes before high-trust actions.

Does AffixIO replace payment or identity providers?

No. AffixIO complements them by adding proof before action, permission checks and audit evidence.