The missing tax layer for x402 agent payments. Calculate sales tax obligations on every HTTP 402 transaction — before your agent settles in USDC.
x402 handles payment settlement. AgentTax handles tax compliance. Together, your agents transact with full audit-ready records across 51 jurisdictions.
x402 enables HTTP-native stablecoin micropayments. An agent hits a 402 paywall, pays in USDC on Base, and gets the resource. No human involved.
But every one of those payments is a potentially taxable transaction. 45 states plus DC levy sales tax. Each classifies digital services differently. And every USDC settlement is a reportable digital asset event under the 2025 Treasury broker regulations.
The x402 Foundation built compliance hooks for sanctions and travel rule. There is no tax calculation layer. That is what AgentTax provides.
Add tax calculation between the HTTP 402 response and the payment settlement. One API call per transaction.
// x402 payment middleware with tax compliance
import { AgentTax } from "@agenttax/sdk";
const tax = new AgentTax({ apiKey: "atx_live_..." });
async function handleX402Payment(resourceUrl, paymentDetails) {
// 1. Determine the tax obligation
const taxResult = await tax.calculate({
role: "buyer",
amount: paymentDetails.amount,
buyer_state: paymentDetails.buyerState,
transaction_type: "compute", // or "api_access", "data_purchase"
counterparty_id: paymentDetails.sellerAddress,
buyer_zip: paymentDetails.buyerZip, // optional — for local rates
});
// 2. Total cost = resource price + applicable tax
const totalCost = paymentDetails.amount + taxResult.sales_tax.amount;
// 3. Settle via x402 (USDC on Base)
const receipt = await settleX402Payment(resourceUrl, totalCost);
// 4. Record for compliance
console.log("Tax:", taxResult.sales_tax.amount);
console.log("Rate:", taxResult.sales_tax.combined_rate * 100, "%");
console.log("Jurisdiction:", taxResult.sales_tax.buyer_state);
console.log("Transaction ID:", taxResult.transaction_id);
return { receipt, tax: taxResult };
}Using the AgentTax Python SDK for x402 payment flows.
from agenttax import AgentTaxClient
client = AgentTaxClient(api_key="atx_live_...")
# Before settling an x402 payment
tax = client.calculate(
role="buyer",
amount=100.00,
buyer_state="TX",
transaction_type="compute",
counterparty_id="0x1234...seller",
)
total_cost = 100.00 + tax["sales_tax"]["amount"]
print(f"Resource: $100, Tax: {tax['sales_tax']['amount']:.2f}, Total: {total_cost:.2f}"){
"success": true,
"sales_tax": {
"taxable": true,
"amount": 5.00,
"state_tax": 5.00,
"local_tax": 0.00,
"combined_rate": 0.05,
"buyer_state": "TX",
"classification_basis": "digital_service",
"advisories": [
"TX §151.351: 80% of digital services taxable (20% statutory exemption)"
]
},
"confidence": { "score": 95, "level": "high" },
"transaction_id": "txn_x402_abc123"
}Free tier. No credit card. 100 API calls/month to start.
© 2026 Agentic Tax Solutions LLC. Tax rates verified daily against Tax Foundation, Sales Tax Institute, state DOR websites, Anrok, TaxJar, TaxCloud, and Kintsugi. AgentTax provides tax calculations for informational purposes only. Consult a qualified tax professional for compliance decisions.