Get address auto fill

Get address auto fill

POST https://<Platform-host>/common/address-auto-fill

This endpoint allows you to get address information for helping pre-fill user input fields.

Request Body

Name
Type
Description

address

string

Pre-fill address, minimum length of 3 characters

{
    "data": [
        {
            "street_number": "11",
            "street_name": "Jungle Rd",
            "city": "Leominster",
            "county": "Worcester County",
            "state": "Massachusetts",
            "state_code": "MA",
            "country": "United States",
            "country_code": "US",
            "zip": "01453",
            "formatted_address": "11 Jungle Rd, Leominster, MA 01453, USA",
            "location": {
                "lat": 42.4920805,
                "lng": -71.7297272
            }
        }
    ]
}
{
    "address": "11 Jungle Road"
}

Last updated