API ReferenceAddress
Address Autocomplete
Autocomplete address suggestions based on partial input.
Authorization
API Authentication Authorization<token>
Campaign token based authentication.
In: header
Query Parameters
country?string
Optional country code to filter results.
language?string
Optional language code for the results.
query_text*string
Partial address input to search for suggestions.
Response Body
application/json
curl -X GET "https://campaigns.apps.29next.com/api/v1/addresses/autocomplete/?query_text=string" \
-H "Authorization: "{
"results": [
{
"address": {
"city": "string",
"country": "string",
"country_code": "st",
"line1": "string",
"line2": "string",
"line3": "string",
"postcode": "string",
"state": "string",
"state_code": "string"
},
"label": "string"
}
]
}