AgentTax
Network
Practical Guide

How to Handle Exemption Certificates in Agent-to-Agent Commerce

AgentTax Team|2026-03-16|5 min read

Not every transaction is taxable. Exemption certificates exist to zero out the tax on qualifying purchases — resale, nonprofit use, government procurement, and more. In human commerce, the buyer hands over a certificate at checkout. In agent-to-agent commerce, there's no checkout and no one to hand anything to.

Here's how exemptions actually work in the AI agent economy, and how to handle them correctly.

The Three Types of Exemptions

1. No Nexus (Seller-Side)

If you don't have nexus in the buyer's state, you have no obligation to collect. This isn't technically an "exemption" — it's the absence of an obligation. But the effect is the same: zero tax collected.

AgentTax returns this as:

{
  "exemption": {
    "type": "no_nexus",
    "state": "FL",
    "reason": "Seller has no nexus in Florida"
  },
  "total_tax": 0
}

Important: Just because you don't collect doesn't mean the buyer doesn't owe. The buyer may still have a use tax obligation. AgentTax flags this on the buyer's side.

2. Digital Exempt (Product-Based)

Some states simply don't tax certain digital products or services. California doesn't tax SaaS. Florida doesn't tax digital services. If the buyer is in one of these states, the transaction is exempt regardless of who's buying or selling.

{
  "exemption": {
    "type": "digital_exempt",
    "state": "CA",
    "reason": "California does not tax SaaS/digital services"
  },
  "total_tax": 0
}

This exemption is determined by the combination of the buyer's state and the transaction type. AgentTax checks this automatically based on the transaction_type and buyer_state you provide.

3. Buyer Certificate (Entity-Based)

This is the traditional exemption: the buyer has a valid certificate that exempts them from sales tax. Common types include:

Resale certificates: The buyer is purchasing for resale, not end use. They'll collect tax from their customer instead. Common in supply chain scenarios where one agent buys a service to incorporate into a product it sells.

Nonprofit/government exemptions: The buyer is a tax-exempt organization — a 501(c)(3) nonprofit, a government agency, or an educational institution.

Manufacturing exemptions: Some states exempt purchases used directly in manufacturing or processing.

Multi-state exemptions: The Streamlined Sales Tax (SST) Exemption Certificate (SSTEC) is accepted in 24 member states with a single form.

The Agent-to-Agent Challenge

In traditional B2B commerce, exemption certificates are exchanged during vendor onboarding. A procurement team collects certificates, files them, and the accounting system applies the exemption to future invoices. This process assumes humans, paperwork, and established vendor relationships.

Agent-to-agent commerce has none of these. An agent might discover a new vendor, buy a service, and complete payment in seconds. There's no onboarding step. There's no human to request or review a certificate. And the next purchase might be from a completely different vendor.

This creates two practical problems:

For sellers: How do you know if a buyer is exempt? If you collect tax from an exempt buyer, they'll want a refund. If you don't collect from a non-exempt buyer, you owe the state.

For buyers: How do you communicate your exempt status to a seller's agent before the transaction settles?

The AgentTax Network Solution

The AgentTax Network provides a registry where agents can publish their tax-relevant identity, including exemption status. When your agent transacts with a counterparty that's also on the network, the engine can check their profile:

# Register your exemption status
requests.post(
    "https://agenttax.io/api/v1/network",
    json={
        "agent_id": "agent_acme_research",
        "entity_name": "Acme Research Foundation",
        "entity_type": "nonprofit",
        "entity_state": "NY",
        "exemptions": [
            {
                "state": "NY",
                "type": "501c3",
                "certificate_number": "EX-2026-001234"
            },
            {
                "state": "CA",
                "type": "501c3",
                "certificate_number": "EX-CA-5678"
            }
        ]
    },
    headers={"X-API-Key": "atx_live_your_key"}
)

When a seller agent runs a transaction against this buyer, AgentTax checks the network profile:

{
  "exemption": {
    "type": "buyer_certificate",
    "state": "NY",
    "certificate": "501c3 - EX-2026-001234",
    "entity": "Acme Research Foundation",
    "source": "network_profile"
  },
  "total_tax": 0
}

When the Buyer Isn't on the Network

If the buyer isn't on the AgentTax network, the default assumption is: no exemption, collect tax. This is the safe default — you'd rather collect and refund than fail to collect and owe the state.

In practice, exemption handling for non-network buyers follows the traditional path:

  • Complete the sale with tax collected

  • If the buyer claims exemption after the fact, they provide a certificate

  • You verify the certificate and issue a credit/refund for the tax

  • You file the exemption certificate in your records

This isn't ideal for agent-to-agent commerce, but it's compliant. Over time, as more agents join the AgentTax network, the real-time exemption check becomes the norm.

Record Keeping Requirements

States require you to keep exemption certificates on file for audit purposes. The retention period varies by state but is typically 3-4 years after the last transaction covered by the certificate.

For each exemption, maintain:

  • The buyer's legal name and address

  • Their exemption certificate number

  • The type of exemption (resale, nonprofit, government)

  • The states covered

  • The date range of validity

  • A copy of the actual certificate

AgentTax stores exemption data from network profiles, but you should also maintain your own records as backup.

Best Practices

  • Default to collecting. When in doubt, collect tax. It's easier to refund an exempt buyer than to pay tax you should have collected from a non-exempt one.

  • Join the network. If you're an exempt buyer, register your exemption on the AgentTax network. This lets seller agents verify your status in real time, saving both parties friction.

  • Request certificates early. If you're a seller with repeat buyers, request certificates during the first transaction, not the fifth.

  • Use the SST certificate. For multi-state exemptions, the Streamlined Sales Tax Exemption Certificate covers 24 states with one form. Less paperwork, broader coverage.

  • Re-verify periodically. Exemption certificates expire. Set calendar reminders to re-verify certificates from your major exempt buyers annually.


AgentTax handles exemption checking automatically through the network. Get your free API key →


Sources:

  • Streamlined Sales Tax Governing Board, "Exemption Certificate" (Form F0003)

  • Tax Foundation, "State and Local Sales Tax Rates, 2026"

  • TaxCloud, "SaaS Sales Tax by State," January 2026

AgentTax
Tax intelligence for AI-driven commerce. 50-state coverage, verified daily.

© 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.