Unify and manage your data

Address autocomplete Fetch API

Learn more about the Fetch API that integrates with Loqate to search for addresses.

The Address autocomplete feature enables you to quickly find and populate accurate address data by offering real-time suggestions as you type. For more information about the feature and how to enable it, see Address autocomplete .

This Fetch API retrieves full address details for the selected address key. This endpoint provides a precise method to retrieve the complete details of an address using its unique identifier. This is particularly useful after a user has selected an address from a search result and the application needs to fetch comprehensive information about that specific address.

Request

POST api/{tenantId}/address/fetch?ID=IN%7CLP%7CB%7C14161031%7C_ENG

Parameters

ParametersNameRequiredDetails
HeadersAuthorizationYesInformation about authentication access token in format "Bearer <accessToken>" (see details in Authentication API ).
Content-TypeYesShould be "Content-Type: application/json".
Query tenantID YesThe tenant ID.
IDYesThe Unique address identifier returned by Search API.

Request payload sample

curl --location 'https://tst-01.reltio.com/reltio/api/{{tenantId}}/address/fetch?ID=IN|LP|B|14161031|_ENG' \
--header 'Authorization: Bearer {{accessToken}}' \
--header 'Content-Type: application/json' 

Response payload sample

[
   {
	"Id": "IN|LP|B|55231200|_ENG",
	"DomesticId": "55231200",
	"Language": "ENG",
	"LanguageAlternatives": "ENG,HIN,KAN",
	"Company": "Reltio",	
	"Neighbourhood": "AMR Tech Park",
	"District": "Hongasandra",
	"City": "Bengaluru"
	"Line1": "Hongasandra",
	"AdminAreaName": "Bengaluru District",
	"Province": "KA",
	"ProvinceName": "Karnataka",
	"ProvinceCode": "KA",
	"PostalCode": "560068",
	"CountryName": "India",
	"CountryIso2": "IN",
	"CountryIso3": "IND",
	"CountryIsoNumber": "356",
	"Label": "Reltio\n\nBengaluru\n560068\nINDIA",
	"Type": "Unknown",
	"DataLevel": "Premise"
   }
]