Authentication

To access the API, the request has to be authenticated with a token that we have provided for you.

Tokens can be retrieved from Self Service Portal > Licenses.

The token is used as the Auth_Token value within the request. The Auth_Token HTTP request header has to be passed with both the GET and the POST request. For example:

GET https://els.experianinteractive.com/els/rest/enrich/v1/search?FIRST_NAME=JANE&LAST_NAME= DOE&ZIP=12345
Auth-Token: 1f234b5-7c38-4b29-ad12-aa12e9f27c74

Test your token to ensure it works before proceeding. For example, using cURL:

curl -XGET -k --header "Auth-Token: c1f234b5-7c38-4b29-ad12-aa12e9f27c74" "https://els.experianinteractive.com/els/rest/enrich/v1/search?FIRST_NAME=JANE&LAST_NAME=DOE&ZIP=12345"