Sample: JSON

POST Request:

{"preferences": {
      "fallbackToGeographic": "true",
      "useGeoTaxAuxiliaryFile": "Y",
      "matchMode": "STANDARD",
      "latLongOffset": "",
      "squeeze": "Y",
      "latLongFormat": "Decimal",
      "defaultBufferWidth": "1",
      "distanceUnits": "MILES",
      "outputCasing": "M",
      "returnCensusFields": "Y",
      "returnLatLongFields": "Y",
      "customPreferences": {
            "FIND_ADDR_POINT_INTERP": "true",
            "FIND_SEARCH_AREA": "2",
            "FIND_ADDRESS_RANGE": "true",
            "FIND_STREET_CENTROID": "T",
            "FIND_FIRST_LETTER_EXPANDED": "T"
            }
       },
       "taxRateAddresses": [
             {
                "mainAddressLine": "10 Cobleskill, NY 12043"
              },
          {
                "mainAddressLine": "1670 Ocean Ave Santa Monica, CA 90401"
          }
                               
                                
     ]
}

JSON POST Response:

{
    "taxResponses": [
        {
            "objectId": "1",
            "confidence": 100,
            "jurisdiction": {
                "state": {
                    "code": "46",
                    "name": "SD"
                },
                "county": {
                    "code": "137",
                    "name": "Ziebach"
                },
                "place": {
                    "name": "",
                    "code": "00000",
                    "gnisCode": "000000000",
                    "classCode": "",
                    "incorporatedFlag": "Uninc",
                    "lastAnnexedDate": "",
                    "lastUpdatedDate": "",
                    "lastVerifiedDate": ""
                },
                "spds": [
                    {
                        "districtName": "Cheyenne River Sioux Tribe",
                        "districtCode": "IRD",
                        "districtNumber": "00005",
                        "versionDate": "092006",
                        "effectiveDate": "062007",
                        "compiledDate": "092006",
                        "updateDate": "062016"
                    }
                ]
            },
            "salesTax": {
                "totalTaxRate": 0.045,
                "stateTaxRate": 0,
                "countyTaxRate": 0,
                "municipalTaxRate": 0,
                "spdsTax": [
                    {
                        "districtNumber": "00005",
                        "taxRate": 0.045
                    }
                ]
            },
            "useTax": {
                "totalTaxRate": 0.045,
                "stateTaxRate": 0,
                "countyTaxRate": 0,
                "municipalTaxRate": 0,
                "spdsTax": [
                    {
                        "districtNumber": "00005",
                        "taxRate": 0.045
                    }
                ]
            },
            "census": {
                "cbsa": {
                    "name": "",
                    "code": ""
                },
                "matchLevel": "",
                "matchCode": "",
                "tract": "",
                "mcd": {
                    "name": "North Ziebach",
                    "code": "45810"
                }
            }
        },
        {
            "objectId": "2",
            "confidence": 100,
            "jurisdiction": {
                "state": {
                    "code": "46",
                    "name": "SD"
                },
                "county": {
                    "code": "041",
                    "name": "Dewey"
                },
                "place": {
                    "name": "Eagle Butte",
                    "code": "17620",
                    "gnisCode": "001267361",
                    "classCode": "C5",
                    "incorporatedFlag": "Inc",
                    "lastAnnexedDate": "12/2015",
                    "lastUpdatedDate": "02/2018",
                    "lastVerifiedDate": "09/2017"
                },
                "spds": [
                    {
                        "districtName": "Cheyenne River Sioux Tribe",
                        "districtCode": "IRD",
                        "districtNumber": "00005",
                        "versionDate": "092006",
                        "effectiveDate": "062007",
                        "compiledDate": "092006",
                        "updateDate": "062016"
                    }
                ]
            },
            "salesTax": {
                "totalTaxRate": 0.065,
                "stateTaxRate": 0,
                "countyTaxRate": 0,
                "municipalTaxRate": 0.02,
                "spdsTax": [
                    {
                        "districtNumber": "00005",
                        "taxRate": 0.045
                    }
                ]
            },
            "useTax": {
                "totalTaxRate": 0.065,
                "stateTaxRate": 0,
                "countyTaxRate": 0,
                "municipalTaxRate": 0.02,
                "spdsTax": [
                    {
                        "districtNumber": "00005",
                        "taxRate": 0.045
                    }
                ]
            },
            "census": {
                "cbsa": {
                    "name": "",
                    "code": ""
                },
                "matchLevel": "",
                "matchCode": "",
                "tract": "",
                "mcd": {
                    "name": "Eagle Butte",
                    "code": "17620"
                }
            }
        }
    ]
}

In case no data is found, the following response is returned:

{}