Python TEST Example
import json
import requests
user = 'username'
password = 'password'
url = 'https://int.lightspeeddataservices.com/lsapi/Dealer'
from requests.auth import HTTPBasicAuth
response = requests.get(url, auth=HTTPBasicAuth(user, password))
print(response.content)