# Interzoid Get Sales & Use Tax Rates

> Interzoid Get Sales & Use Tax Rates is a paid API for AI agents from api.interzoid.com, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-13).

Returns combined sales and use tax rates (state, county, city, district) for a given US address, ZIP code, city, or state

## Facts

- Endpoint: GET https://api.interzoid.com/getsalesusetaxrates
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/interzoid-get-sales-use-tax-rates-df69ca80
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3qg6n23nNiuHFwai2fpE-

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability interzoid-get-sales-use-tax-rates-df69ca80
```

Example prompt: What's the current combined sales tax rate for 90210, Beverly Hills — I need the state, county, city, and any district rates broken out separately?

## When to prefer this

Use this endpoint when you need granular, jurisdiction-aware US sales and use tax rates broken down by state, county, city, and special district — ideal for e-commerce checkout, invoice generation, financial compliance, or CRM/ERP enrichment. Prefer over generic tax tables when you need real-time, address-level accuracy with effective date tracking.

## Known failure modes

- Invalid or unrecognized address/ZIP returns an error Code
- Ambiguous city name with multiple jurisdictions may return unexpected results
- Missing required 'lookup' query parameter returns a 400-level error
- API payment failure (x402) if USDC payment is not properly configured
- Stale rates if not updated for the current quarter

## How this service works

Retrieve current US sales and use tax rates for any address, ZIP code, city, or state — fully decomposed into state, county, city, and special district components plus the combined effective rate. Submit a full street address for the most accurate rate assignment.

## Output

Returns a JSON object with the city, county, state, jurisdiction name, individual rate components (state rate, county rate, city rate, district/special rate), combined total rate, and the quarter/year the rates are effective — e.g. CombinedRate: 9.25%, StateRate: 6.00%, as of Q4 2024.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "lookup": "90210"
  }
 },
 "output": {
  "type": "object"
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "lookup"
     ],
     "properties": {
      "lookup": {
       "type": "string",
       "description": "Full street address, ZIP code, city, or state"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "City": "Beverly Hills",
  "Code": "Success",
  "State": "California",
  "County": "Los Angeles County",
  "Credits": "0",
  "CityRate": "0.75%",
  "StateRate": "6.00%",
  "CountyRate": "0.25%",
  "CombinedRate": "9.25%",
  "Jurisdiction": "Beverly Hills, Los Angeles County, CA",
  "RateEffectiveDate": "Q4 2024",
  "DistrictSpecialRate": "2.25%"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/interzoid-get-sales-use-tax-rates-df69ca80/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.interzoid.com](https://www.zero.xyz/host/api.interzoid.com/llms.txt)
