Query visitor data via API key
curl --request GET \
--url https://api.aws53.cloud/v1/data \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.aws53.cloud/v1/data"
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.aws53.cloud/v1/data', 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.aws53.cloud/v1/data",
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.aws53.cloud/v1/data"
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.aws53.cloud/v1/data")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.aws53.cloud/v1/data")
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{
"data": [
{
"email": "jsmith@example.com",
"emailHash": "<string>",
"emailHashes": {
"sha256": "<string>",
"sha1": "<string>",
"md5": "<string>"
},
"emails": [
"<string>"
],
"businessEmails": [
"<string>"
],
"personalEmails": [
"<string>"
],
"phones": [
"<string>"
],
"phonesDnc": true,
"firstName": "<string>",
"lastName": "<string>",
"middleName": "<string>",
"fullName": "<string>",
"emailDomain": "<string>",
"allEmails": [
"<string>"
],
"primaryPhone": "<string>",
"allPhones": [
"<string>"
],
"phonesDNC": [
"<string>"
],
"ageRange": "<string>",
"gender": "<string>",
"hasChildren": true,
"isHomeowner": true,
"isMarried": true,
"personalAddress": "<string>",
"personalZip": "<string>",
"city": "<string>",
"state": "<string>",
"country": "<string>",
"countryCode": "<string>",
"personalTimezone": "<string>",
"companyName": "<string>",
"companyDomain": "<string>",
"companyLinkedinUrl": "<string>",
"companyAddress": "<string>",
"companyCity": "<string>",
"companyState": "<string>",
"companyCountry": "<string>",
"companyZipCode": "<string>",
"companyEmployeeCount": 123,
"companyTotalRevenue": 123,
"companySizeRange": "<string>",
"companyRevenueRange": "<string>",
"jobTitle": "<string>",
"headline": "<string>",
"seniority": "<string>",
"seniorityLevel2": "<string>",
"seniorityLevelRaw": "<string>",
"department": "<string>",
"department2": "<string>",
"departmentRaw": "<string>",
"industry": "<string>",
"linkedinUrl": "<string>",
"photoUrl": "<string>",
"linkedinUrn": "<string>",
"skillsSummary": "<string>",
"photoB2Url": "<string>",
"companyLogoB2Url": "<string>",
"company": "<string>",
"companyZip": "<string>",
"companySize": 123,
"companySizeCategory": "<string>",
"companyRevenue": 123,
"companyIndustry": "<string>",
"seniorityRaw": "<string>",
"sessions": 123,
"pageviews": 123,
"pricingPageViews": 123,
"demoPageViews": 123,
"checkoutPageViews": 123,
"enrichmentLevel": "full",
"enrichmentScore": 123,
"intentScore": "high",
"firstSeenAt": "2023-11-07T05:31:56Z",
"lastSeenAt": "2023-11-07T05:31:56Z",
"firstSeen": "2023-11-07T05:31:56Z",
"lastSeen": "2023-11-07T05:31:56Z",
"daysSinceVisit": 123,
"landingPage": "<string>",
"visitedPages": [
"<string>"
],
"referrer": "<string>",
"referrerDomain": "<string>",
"utmSource": "<string>",
"utmMedium": "<string>",
"utmCampaign": "<string>",
"utmTerm": "<string>",
"utmContent": "<string>",
"gclid": "<string>",
"fbclid": "<string>",
"googleGbraid": "<string>",
"googleWbraid": "<string>",
"googleGadSource": "<string>",
"googleCampaignId": "<string>",
"bingClickId": "<string>",
"linkedinClickId": "<string>",
"klaviyoTrackingId": "<string>",
"hubspotAccountId": "<string>",
"hubspotCampaignId": "<string>",
"hubspotNetwork": "<string>",
"msclkid": "<string>",
"liFatId": "<string>",
"gbraid": "<string>",
"wbraid": "<string>",
"channel": "<string>",
"pixels": [
"<string>"
],
"pixelId": "<string>",
"pixelDetails": [
{
"id": "<string>",
"name": "<string>",
"domain": "<string>"
}
],
"domains": [
"<string>"
],
"customAttribution": {
"partnerCustomerId": "customer_123",
"campaign": "summer"
}
}
],
"meta": {
"page": 123,
"limit": 123,
"total": 123,
"totalPages": 123,
"hasMore": true
}
}Visitors
Query visitor data via API key
Read-only access to resolved visitor data. Pass email to get a single visitor journey with sessions. Authenticated via X-API-Key header.
GET
/
v1
/
data
Query visitor data via API key
curl --request GET \
--url https://api.aws53.cloud/v1/data \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.aws53.cloud/v1/data"
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.aws53.cloud/v1/data', 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.aws53.cloud/v1/data",
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.aws53.cloud/v1/data"
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.aws53.cloud/v1/data")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.aws53.cloud/v1/data")
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{
"data": [
{
"email": "jsmith@example.com",
"emailHash": "<string>",
"emailHashes": {
"sha256": "<string>",
"sha1": "<string>",
"md5": "<string>"
},
"emails": [
"<string>"
],
"businessEmails": [
"<string>"
],
"personalEmails": [
"<string>"
],
"phones": [
"<string>"
],
"phonesDnc": true,
"firstName": "<string>",
"lastName": "<string>",
"middleName": "<string>",
"fullName": "<string>",
"emailDomain": "<string>",
"allEmails": [
"<string>"
],
"primaryPhone": "<string>",
"allPhones": [
"<string>"
],
"phonesDNC": [
"<string>"
],
"ageRange": "<string>",
"gender": "<string>",
"hasChildren": true,
"isHomeowner": true,
"isMarried": true,
"personalAddress": "<string>",
"personalZip": "<string>",
"city": "<string>",
"state": "<string>",
"country": "<string>",
"countryCode": "<string>",
"personalTimezone": "<string>",
"companyName": "<string>",
"companyDomain": "<string>",
"companyLinkedinUrl": "<string>",
"companyAddress": "<string>",
"companyCity": "<string>",
"companyState": "<string>",
"companyCountry": "<string>",
"companyZipCode": "<string>",
"companyEmployeeCount": 123,
"companyTotalRevenue": 123,
"companySizeRange": "<string>",
"companyRevenueRange": "<string>",
"jobTitle": "<string>",
"headline": "<string>",
"seniority": "<string>",
"seniorityLevel2": "<string>",
"seniorityLevelRaw": "<string>",
"department": "<string>",
"department2": "<string>",
"departmentRaw": "<string>",
"industry": "<string>",
"linkedinUrl": "<string>",
"photoUrl": "<string>",
"linkedinUrn": "<string>",
"skillsSummary": "<string>",
"photoB2Url": "<string>",
"companyLogoB2Url": "<string>",
"company": "<string>",
"companyZip": "<string>",
"companySize": 123,
"companySizeCategory": "<string>",
"companyRevenue": 123,
"companyIndustry": "<string>",
"seniorityRaw": "<string>",
"sessions": 123,
"pageviews": 123,
"pricingPageViews": 123,
"demoPageViews": 123,
"checkoutPageViews": 123,
"enrichmentLevel": "full",
"enrichmentScore": 123,
"intentScore": "high",
"firstSeenAt": "2023-11-07T05:31:56Z",
"lastSeenAt": "2023-11-07T05:31:56Z",
"firstSeen": "2023-11-07T05:31:56Z",
"lastSeen": "2023-11-07T05:31:56Z",
"daysSinceVisit": 123,
"landingPage": "<string>",
"visitedPages": [
"<string>"
],
"referrer": "<string>",
"referrerDomain": "<string>",
"utmSource": "<string>",
"utmMedium": "<string>",
"utmCampaign": "<string>",
"utmTerm": "<string>",
"utmContent": "<string>",
"gclid": "<string>",
"fbclid": "<string>",
"googleGbraid": "<string>",
"googleWbraid": "<string>",
"googleGadSource": "<string>",
"googleCampaignId": "<string>",
"bingClickId": "<string>",
"linkedinClickId": "<string>",
"klaviyoTrackingId": "<string>",
"hubspotAccountId": "<string>",
"hubspotCampaignId": "<string>",
"hubspotNetwork": "<string>",
"msclkid": "<string>",
"liFatId": "<string>",
"gbraid": "<string>",
"wbraid": "<string>",
"channel": "<string>",
"pixels": [
"<string>"
],
"pixelId": "<string>",
"pixelDetails": [
{
"id": "<string>",
"name": "<string>",
"domain": "<string>"
}
],
"domains": [
"<string>"
],
"customAttribution": {
"partnerCustomerId": "customer_123",
"campaign": "summer"
}
}
],
"meta": {
"page": 123,
"limit": 123,
"total": 123,
"totalPages": 123,
"hasMore": true
}
}Authorizations
Organization API key (sk_...). Get yours from Settings > API Keys in the dashboard.
Query Parameters
Filter by exact email to get visitor journey
Page number (50 results per page)
Required range:
x >= 1Time window filter
Available options:
24h, 7d, 14d, 30d, 90d, all Filter by website domain
Was this page helpful?
⌘I