Pixel lookup
curl --request GET \
--url https://api.audiencelab.io/pixels/{id} \
--header 'X-Api-Key: <api-key>'import requests
url = "https://api.audiencelab.io/pixels/{id}"
headers = {"X-Api-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Api-Key': '<api-key>'}};
fetch('https://api.audiencelab.io/pixels/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.audiencelab.io/pixels/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Api-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.audiencelab.io/pixels/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Api-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.audiencelab.io/pixels/{id}")
.header("X-Api-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.audiencelab.io/pixels/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Api-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"total_records": 500,
"page_size": 100,
"page": 1,
"total_pages": 5,
"events": [
{
"pixel_id": "PIX123456",
"hem_sha256": "a665a45920422f9d417e4867efdc4fb8a04a1f3fff1fa07e998e86f7f7a27ae3",
"event_timestamp": "2024-01-15T10:30:00Z",
"event_type": "page_view",
"ip_address": "192.168.1.1",
"activity_start_date": "2024-01-15T00:00:00Z",
"activity_end_date": "2024-01-15T23:59:59Z",
"referrer_url": "https://example.com/page",
"resolution": {
"UUID": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
"FIRST_NAME": "John",
"LAST_NAME": "Doe",
"PERSONAL_ADDRESS": "123 Main St",
"PERSONAL_CITY": "San Francisco",
"PERSONAL_STATE": "CA",
"PERSONAL_ZIP": "94105",
"PERSONAL_ZIP4": "1234",
"AGE_RANGE": "25-34",
"CHILDREN": "Yes",
"GENDER": "Male",
"HOMEOWNER": "Yes",
"MARRIED": "No",
"NET_WORTH": "$100K-$250K",
"INCOME_RANGE": "$75K-$100K",
"DIRECT_NUMBER": "+14155551234",
"DIRECT_NUMBER_DNC": "No",
"MOBILE_PHONE": "+14155555678",
"MOBILE_PHONE_DNC": "No",
"PERSONAL_PHONE": "+14155559012",
"PERSONAL_PHONE_DNC": "No",
"BUSINESS_EMAIL": "jdoe@acmecorp.com",
"PERSONAL_EMAILS": "john.doe@email.com",
"PERSONAL_VERIFIED_EMAILS": "john.doe@email.com",
"BUSINESS_VERIFIED_EMAILS": "jdoe@acmecorp.com",
"SHA256_PERSONAL_EMAIL": "a665a45920422f9d417e4867efdc4fb8a04a1f3fff1fa07e998e86f7f7a27ae3",
"SHA256_BUSINESS_EMAIL": "b665a45920422f9d417e4867efdc4fb8a04a1f3fff1fa07e998e86f7f7a27ae4",
"JOB_TITLE": "Senior Software Engineer",
"HEADLINE": "Building great software",
"DEPARTMENT": "Engineering",
"SENIORITY_LEVEL": "Senior",
"INFERRED_YEARS_EXPERIENCE": "10",
"COMPANY_NAME_HISTORY": "Previous Corp, Another Inc",
"JOB_TITLE_HISTORY": "Software Engineer, Junior Developer",
"EDUCATION_HISTORY": "Stanford University, BS Computer Science",
"COMPANY_ADDRESS": "456 Business Ave",
"COMPANY_DESCRIPTION": "Technology solutions provider",
"COMPANY_DOMAIN": "acmecorp.com",
"COMPANY_EMPLOYEE_COUNT": "100-500",
"COMPANY_LINKEDIN_URL": "https://linkedin.com/company/acmecorp",
"COMPANY_NAME": "Acme Corp",
"COMPANY_PHONE": "+14155550000",
"COMPANY_REVENUE": "$10M-$50M",
"COMPANY_SIC": "7371",
"COMPANY_NAICS": "541511",
"COMPANY_CITY": "San Francisco",
"COMPANY_STATE": "CA",
"COMPANY_ZIP": "94107",
"COMPANY_INDUSTRY": "Technology",
"LINKEDIN_URL": "https://linkedin.com/in/johndoe",
"TWITTER_URL": "https://twitter.com/johndoe",
"FACEBOOK_URL": "https://facebook.com/johndoe",
"SOCIAL_CONNECTIONS": "500+",
"SKILLS": "Python, Go, JavaScript",
"INTERESTS": "Technology, Startups",
"SKIPTRACE_MATCH_SCORE": 95,
"SKIPTRACE_NAME": "John Doe",
"SKIPTRACE_ADDRESS": "123 Main St",
"SKIPTRACE_CITY": "San Francisco",
"SKIPTRACE_STATE": "CA",
"SKIPTRACE_ZIP": "94105",
"SKIPTRACE_LANDLINE_NUMBERS": "+14155551111",
"SKIPTRACE_WIRELESS_NUMBERS": "+14155552222",
"SKIPTRACE_CREDIT_RATING": "Good",
"SKIPTRACE_DNC": "No",
"SKIPTRACE_EXACT_AGE": "32",
"SKIPTRACE_ETHNIC_CODE": "A",
"SKIPTRACE_LANGUAGE_CODE": "EN",
"SKIPTRACE_IP": "192.168.1.1",
"SKIPTRACE_B2B_ADDRESS": "456 Business Ave",
"SKIPTRACE_B2B_PHONE": "+14155550000",
"SKIPTRACE_B2B_SOURCE": "LinkedIn",
"SKIPTRACE_B2B_WEBSITE": "https://acmecorp.com",
"VALID_PHONES": "+14155551234,+14155555678"
},
"event_data": {}
}
]
}{
"message": "error message"
}{
"message": "error message"
}{
"message": "error message"
}{
"message": "error message"
}{
"message": "error message"
}Pixel
Pixel lookup
Retrieves pixel events. Auto-detects the pixel provider and returns V3 (PixelFetchResponse) or V4 (PixelFetchResponseV4) format accordingly.
GET
/
pixels
/
{id}
Pixel lookup
curl --request GET \
--url https://api.audiencelab.io/pixels/{id} \
--header 'X-Api-Key: <api-key>'import requests
url = "https://api.audiencelab.io/pixels/{id}"
headers = {"X-Api-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Api-Key': '<api-key>'}};
fetch('https://api.audiencelab.io/pixels/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.audiencelab.io/pixels/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Api-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.audiencelab.io/pixels/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Api-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.audiencelab.io/pixels/{id}")
.header("X-Api-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.audiencelab.io/pixels/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Api-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"total_records": 500,
"page_size": 100,
"page": 1,
"total_pages": 5,
"events": [
{
"pixel_id": "PIX123456",
"hem_sha256": "a665a45920422f9d417e4867efdc4fb8a04a1f3fff1fa07e998e86f7f7a27ae3",
"event_timestamp": "2024-01-15T10:30:00Z",
"event_type": "page_view",
"ip_address": "192.168.1.1",
"activity_start_date": "2024-01-15T00:00:00Z",
"activity_end_date": "2024-01-15T23:59:59Z",
"referrer_url": "https://example.com/page",
"resolution": {
"UUID": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
"FIRST_NAME": "John",
"LAST_NAME": "Doe",
"PERSONAL_ADDRESS": "123 Main St",
"PERSONAL_CITY": "San Francisco",
"PERSONAL_STATE": "CA",
"PERSONAL_ZIP": "94105",
"PERSONAL_ZIP4": "1234",
"AGE_RANGE": "25-34",
"CHILDREN": "Yes",
"GENDER": "Male",
"HOMEOWNER": "Yes",
"MARRIED": "No",
"NET_WORTH": "$100K-$250K",
"INCOME_RANGE": "$75K-$100K",
"DIRECT_NUMBER": "+14155551234",
"DIRECT_NUMBER_DNC": "No",
"MOBILE_PHONE": "+14155555678",
"MOBILE_PHONE_DNC": "No",
"PERSONAL_PHONE": "+14155559012",
"PERSONAL_PHONE_DNC": "No",
"BUSINESS_EMAIL": "jdoe@acmecorp.com",
"PERSONAL_EMAILS": "john.doe@email.com",
"PERSONAL_VERIFIED_EMAILS": "john.doe@email.com",
"BUSINESS_VERIFIED_EMAILS": "jdoe@acmecorp.com",
"SHA256_PERSONAL_EMAIL": "a665a45920422f9d417e4867efdc4fb8a04a1f3fff1fa07e998e86f7f7a27ae3",
"SHA256_BUSINESS_EMAIL": "b665a45920422f9d417e4867efdc4fb8a04a1f3fff1fa07e998e86f7f7a27ae4",
"JOB_TITLE": "Senior Software Engineer",
"HEADLINE": "Building great software",
"DEPARTMENT": "Engineering",
"SENIORITY_LEVEL": "Senior",
"INFERRED_YEARS_EXPERIENCE": "10",
"COMPANY_NAME_HISTORY": "Previous Corp, Another Inc",
"JOB_TITLE_HISTORY": "Software Engineer, Junior Developer",
"EDUCATION_HISTORY": "Stanford University, BS Computer Science",
"COMPANY_ADDRESS": "456 Business Ave",
"COMPANY_DESCRIPTION": "Technology solutions provider",
"COMPANY_DOMAIN": "acmecorp.com",
"COMPANY_EMPLOYEE_COUNT": "100-500",
"COMPANY_LINKEDIN_URL": "https://linkedin.com/company/acmecorp",
"COMPANY_NAME": "Acme Corp",
"COMPANY_PHONE": "+14155550000",
"COMPANY_REVENUE": "$10M-$50M",
"COMPANY_SIC": "7371",
"COMPANY_NAICS": "541511",
"COMPANY_CITY": "San Francisco",
"COMPANY_STATE": "CA",
"COMPANY_ZIP": "94107",
"COMPANY_INDUSTRY": "Technology",
"LINKEDIN_URL": "https://linkedin.com/in/johndoe",
"TWITTER_URL": "https://twitter.com/johndoe",
"FACEBOOK_URL": "https://facebook.com/johndoe",
"SOCIAL_CONNECTIONS": "500+",
"SKILLS": "Python, Go, JavaScript",
"INTERESTS": "Technology, Startups",
"SKIPTRACE_MATCH_SCORE": 95,
"SKIPTRACE_NAME": "John Doe",
"SKIPTRACE_ADDRESS": "123 Main St",
"SKIPTRACE_CITY": "San Francisco",
"SKIPTRACE_STATE": "CA",
"SKIPTRACE_ZIP": "94105",
"SKIPTRACE_LANDLINE_NUMBERS": "+14155551111",
"SKIPTRACE_WIRELESS_NUMBERS": "+14155552222",
"SKIPTRACE_CREDIT_RATING": "Good",
"SKIPTRACE_DNC": "No",
"SKIPTRACE_EXACT_AGE": "32",
"SKIPTRACE_ETHNIC_CODE": "A",
"SKIPTRACE_LANGUAGE_CODE": "EN",
"SKIPTRACE_IP": "192.168.1.1",
"SKIPTRACE_B2B_ADDRESS": "456 Business Ave",
"SKIPTRACE_B2B_PHONE": "+14155550000",
"SKIPTRACE_B2B_SOURCE": "LinkedIn",
"SKIPTRACE_B2B_WEBSITE": "https://acmecorp.com",
"VALID_PHONES": "+14155551234,+14155555678"
},
"event_data": {}
}
]
}{
"message": "error message"
}{
"message": "error message"
}{
"message": "error message"
}{
"message": "error message"
}{
"message": "error message"
}Authorizations
Path Parameters
The UUID of the pixel to fetch events for
Query Parameters
Page number (1-indexed)
Required range:
x >= 1Number of items per page (max 1000)
Required range:
1 <= x <= 1000⌘I

