Sample Request and Response

Request Body

{
    "options": {
        "OutputCasing": "M"
    },
    "Input": {
        "Row": [
            {
                "AddressLine1": "1700 District Ave #300",
                "AddressLine2": "",
                "City": "Burlington",
                "Country": "USA",
                "StateProvince": "MA",
                "PostalCode": "01803",
                "FirmName": "Precisely"
            }
        ]
    }
}

Response

{
    "Output": [
        {
            "AddressLine1": "1700 District Ave Ste 300",
            "City": "Burlington",
            "StateProvince": "MA",
            "PostalCode": "01803-5231",
            "Country": "United States of America",
            "FirmName": "Precisely",
            "BlockAddress": "1700 District Ave Ste 300\nBurlington MA  01803-5231\nUnited States of America",
            "PostalCode.Base": "01803",
            "PostalCode.AddOn": "5231",
            "user_fields": []
        }
    ]
}