Sample Request and Response

POST Request:

{
    "preferences": {
        "fallbackToGeographic": "true",
        "useGeoTaxAuxiliaryFile": "Y",
        "matchMode": "EXACT",
        "latLongOffset": "40",
        "squeeze": "Y",
        "latLongFormat": "Decimal",
        "defaultBufferWidth": "50",
        "distanceUnits": "Feet",
        "outputCasing": "M",
        "returnCensusFields": "Y",
        "returnLatLongFields": "Y",
        "customPreferences": {
            "FIND_ADDR_POINT_INTERP": "true",
            "FIND_SEARCH_AREA": "1",
            "FIND_ADDRESS_RANGE": "true",
            "FIND_EXPANDED_SEARCH_RADIUS": "50",
            "FIND_ALTERNATE_LOOKUP": "2",
            "FIND_STREET_CENTROID": "true",
            "FIND_FIRST_LETTER_EXPANDED": "true"
        }
    },
    "taxRateAddresses": [
        {
            "mainAddressLine": "2001 Main St, Eagle Butte, SD 57625"
        },
        {
            "mainAddressLine": "39 Sycamore Rd,Stafford 08050, USA"
        }
    ]
}

POST Response:

{
    "taxResponses": [
        {
            "objectId": "1",
            "confidence": 50,
            "jurisdiction": {
                "state": {
                    "code": "46",
                    "name": "SD"
                },
                "county": {
                    "code": "041",
                    "name": "Dewey"
                },
                "place": {
                    "name": "North Eagle Butte",
                    "code": "45548",
                    "gnisCode": "002393151",
                    "classCode": "U1",
                    "incorporatedFlag": "Uninc",
                    "lastAnnexedDate": "01/2010",
                    "lastUpdatedDate": "01/2015",
                    "lastVerifiedDate": "01/2010"
                },
                "spds": [
                    {
                        "districtName": "Cheyenne River Sioux Tribe",
                        "districtCode": "IRD",
                        "districtNumber": "00005",
                        "versionDate": "092006",
                        "effectiveDate": "062007",
                        "compiledDate": "092006",
                        "updateDate": "062016"
                    }
                ]
            },
            "matchedAddress": {
                "formattedAddress": "2001 Main St Eagle Butte, SD  57625",
                "mainAddressLine": "2001 Main St",
                "addressLastLine": "Eagle Butte, SD  57625",
                "placeName": "",
                "areaName1": "SD",
                "areaName2": "",
                "areaName3": "Eagle Butte",
                "areaName4": "",
                "postCode": "57625",
                "postCodeExt": "",
                "country": "USA",
                "addressNumber": "",
                "streetName": "",
                "unitType": "",
                "unitValue": ""
            },
            "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": "StreetCentroid",
                "matchCode": "C",
                "tract": "941500",
                "mcd": {
                    "name": "North Dewey",
                    "code": "45545"
                }
            },
            "latLongFields": {
                "matchCode": "Z",
                "matchLevel": "ZIP",
                "streetMatchCode": "",
                "streetMatchLevel": "",
                "geometry": {
                    "type": "Point",
                    "coordinates": [
                        "-101.234821",
                        "45.008073"
                    ]
                }
            }
        },
        {
            "objectId": "2",
            "confidence": 100,
            "jurisdiction": {
                "state": {
                    "code": "34",
                    "name": "NJ"
                },
                "county": {
                    "code": "029",
                    "name": "Ocean"
                },
                "place": {
                    "name": "Ocean Acres",
                    "code": "54315",
                    "gnisCode": "002389608",
                    "classCode": "U1",
                    "incorporatedFlag": "Uninc",
                    "lastAnnexedDate": "01/2010",
                    "lastUpdatedDate": "02/2012",
                    "lastVerifiedDate": "01/2010"
                },
                "spds": []
            },
            "matchedAddress": {
                "formattedAddress": "39 Sycamore Rd Stafford Twp, NJ  08050-1509",
                "mainAddressLine": "39 Sycamore Rd",
                "addressLastLine": "Stafford Twp, NJ  08050-1509",
                "placeName": "",
                "areaName1": "NJ",
                "areaName2": "",
                "areaName3": "Stafford Twp",
                "areaName4": "",
                "postCode": "08050",
                "postCodeExt": "1509",
                "country": "USA",
                "addressNumber": "",
                "streetName": "",
                "unitType": "",
                "unitValue": ""
            },
            "salesTax": {
                "totalTaxRate": 0.06625,
                "stateTaxRate": 0.06625,
                "countyTaxRate": 0,
                "municipalTaxRate": 0,
                "spdsTax": []
            },
            "useTax": {
                "totalTaxRate": 0.06625,
                "stateTaxRate": 0.06625,
                "countyTaxRate": 0,
                "municipalTaxRate": 0,
                "spdsTax": []
            },
            "census": {
                "cbsa": {
                    "name": "New York-Newark-Jersey City, Ny-Nj-Pa Metropolitan Statistical Area",
                    "code": "35620"
                },
                "matchLevel": "Point",
                "matchCode": "P",
                "tract": "735001",
                "mcd": {
                    "name": "Stafford",
                    "code": "70320"
                }
            },
            "latLongFields": {
                "matchCode": "2",
                "matchLevel": "ZIP+2",
                "streetMatchCode": "",
                "streetMatchLevel": "",
                "geometry": {
                    "type": "Point",
                    "coordinates": [
                        "-074.306570",
                        "39.749530"
                    ]
                }
            }
        }
    ]
}