Tax Engine
  1. Sales Tax Rates
Tax Engine
  • Getting Started
    • Introduction to Sales Tax Calculation
    • Step By Step - Creating your first transaction
    • Step By Step - Creating VAT / Global Tax Transaction
  • Endpoints
    • Authentication
      • Authentication - Getting Started
      • Create JWT
    • Customers
      • Get to Know
      • Get Customer
      • Get All Customers
      • Upsert Customer
      • Update Customer
    • Exemptions
      • Get to Know
      • Get All Exemptions
      • Post Exemption
      • Update Exemption
      • Patch Exemption
    • Transactions
      • Get to Know
      • The Importance of Shipping Address
      • How to Use Credit Memos
      • Get Transaction (thin)
      • Get Transaction
      • Upsert Transaction
      • Delete Transaction
      • Get All Transactions (thin)
      • Get All Transactions
      • Upsert VAT / GT Transactio
    • Address Validation
      • Address Validation Intro
      • Validate Address
    • Sales Tax Rates
      • Get Sales Tax Rates
        GET
    • Vat Validation
      • Validate Vat
  • Special Features
    • Global Tax Rate
    • Partial Address
    • Discounts
    • Inclusive Tax
    • Vat Validation
    • Post exemptions from CSV
      POST
  • Schemas
    • Schemas
      • Item Response
      • Item Request
      • ExchangeRateInfo
      • shippingAddress Copy
      • transaction Copy
      • transaction (thin)
      • Item (thin)
      • SalesTaxRates (thin)
      • GtRates (thin)
      • ShippingFee (thin)
      • Address Response
      • SalesTaxRates Response
      • Referral
      • Partnership
      • internalTimestamps
      • externalTimestamps
      • ShippingFee
      • billingAddress
      • addressOfCustomer
      • timestamp
      • Certificate
      • Classification
      • Exemption
      • State
      • Status
      • TimestampsDto
      • validationDates
      • ClientTrackingDto
      • EconomicNexusTracker
      • NexusCalculationSummaryDto
      • NexusDto
      • NexusStateRuleDto
      • NexusThresholdDto
      • PhysicalNexusTracker
      • SalesTaxTracking
      • Customer
      • GtRates
      • Item
      • JurisdictionalSalesTaxRules
      • RatesMetaData
      • SalesTax
      • SalesTaxRates
      • SubJurisdictionalTaxRules
      • transaction Request
      • transaction Response
      • transaction
      • shippingAddress
  1. Sales Tax Rates

Get Sales Tax Rates

GET
/v2/sales_tax_rates
The Sales Tax Rates endpoint returns a rate based on the provided input address. Currently, the endpoint supports addresses within the United States only.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params

Responses

🟢200Successful operation
application/json
Body

🟠400Bad Request
🟠401Unauthorized
🟠403Forbidden
🔴500Internal Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://sandbox.complyt.io/v2/sales_tax_rates?country&state&zip&isPartial&city&county&street&effectiveDate' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Success
{
    "id": "414d3ef7-e282-4e29-9c77-ba7d3a349c33",
    "requestAddress": {
        "address": {
            "country": "US",
            "state": "NY",
            "zip": "10001",
            "isPartial": true
        },
        "effectiveDate": "2024-01-01T00:00:00"
    },
    "matchedAddressData": {
        "address": {
            "city": "New York",
            "country": "United States",
            "county": "New York",
            "state": "New York",
            "zip": "10001"
        },
        "scoring": {
            "matchLevel": "EXCELLENT",
            "score": 1,
            "fieldScore": {
                "countryMatch": "EXACT",
                "stateMatch": "EXACT",
                "cityMatch": "NO_MATCH",
                "zipMatch": "EXACT"
            }
        }
    },
    "salesTaxRates": {
        "stateRate": 0.04,
        "countyRate": 0,
        "cityRate": 0.045,
        "spdRate": 0,
        "mtayRate": 0,
        "otherRate": 0,
        "combinedDistrictRate": 0.00375,
        "ratesMetaData": {
            "cityDistrictRate": 0,
            "countyDistrictRate": 0.00375,
            "specialDistrictRate": 0
        },
        "taxRate": 0.08875
    }
}
Modified at 2025-08-29 14:31:43
Previous
Validate Address
Next
Validate Vat
Built with