Domain Account List
Fetch comprehensive data on companies identified from visitor information for targeted engagement.
curl --location 'https://api.maximise.ai/v1/whitelabel-api/visitor-accounts?id=EH1K7dtMJqf8V-ZMMX&page=1&limit=50&startDate&endDate' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json'
const axios = require('axios');
axios.get('https://api.maximise.ai/v1/whitelabel-api/visitor-accounts?did=EH1K7dtMJqf8V-ZMMX&page=1&limit=50&startDate&endDate', {
headers: {accept: 'application/json', Authorization: 'Bearer <token>'}
})
.then(response => {
console.log(response.data);
})
.catch(error => {
console.log(error);
});
import requests
import json
url = "https://api.maximise.ai/v1/whitelabel-api/visitor-accounts?did=EH1K7dtMJqf8V-ZMMX&page=1&limit=50&startDate&endDate"
payload = {}
headers = {
'Authorization': 'Bearer <token>',
'Content-Type': 'application/json'
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
OkHttpClient client = new OkHttpClient().newBuilder()
.build();
MediaType mediaType = MediaType.parse("text/plain");
RequestBody body = RequestBody.create(mediaType, "");
Request request = new Request.Builder()
.url("https://api.maximise.ai/v1/whitelabel-api/visitor-accounts?did=EH1K7dtMJqf8V-ZMMX&page=1&limit=50&startDate&endDate")
.method("GET", body)
.addHeader("Authorization", "Bearer <token>")
.build();
Response response = client.newCall(request).execute();
require "uri"
require "json"
require "net/http"
url = URI("https://api.maximise.ai/v1/whitelabel-api/visitor-accounts?did=EH1K7dtMJqf8V-ZMMX&page=1&limit=50&startDate&endDate")
https = Net::HTTP.new(url.host, url.port)
https.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = "Bearer <token>"
request["Content-Type"] = "application/json"
response = https.request(request)
puts response.read_body
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://api.maximise.ai/v1/whitelabel-api/visitor-accounts?did=EH1K7dtMJqf8V-ZMMX&page=1&limit=50&startDate&endDate',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'GET',
CURLOPT_HTTPHEADER => array(
'Authorization: Bearer <token>',
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
Example response
Status Code: 200 OK
{
"visitorCompanies": [
{
"uid": "abc123def456ghi789jkl012",
"company": {
"site": {
"phoneNumbers": [
"+1 555-123-4567",
"+44 7700 900123",
"+1 555-987-6543",
"+49 30 12345678",
"+1 555-234-5678",
"+1 555-345-6789",
"+44 7700 900124",
"+44 203 1234567",
"+44 7700 900125",
"+44 7700 900126"
],
"emailAddresses": [
"[email protected]",
"[email protected]",
"[email protected]",
"[email protected]",
"[email protected]",
"[email protected]"
]
},
"category": {
"sector": "Healthcare",
"industryGroup": "Biotechnology",
"industry": "Pharmaceuticals",
"subIndustry": "Drug Development",
"gicsCode": "35102010",
"sicCode": "2834",
"sic4Codes": [
"2834"
],
"naicsCode": "325412",
"naics6Codes": [
"325412"
],
"naics6Codes2022": [
"325412"
]
},
"geo": {
"streetNumber": "123",
"streetName": "Main Street",
"subPremise": "Suite 200",
"streetAddress": "123 Main Street Suite 200",
"city": "Springfield",
"postalCode": "62704",
"state": "Illinois",
"stateCode": "IL",
"country": "United States",
"countryCode": "US",
"lat": 39.7817,
"lng": -89.6501
},
"facebook": {
"handle": "dummycompanyFB"
},
"linkedin": {
"handle": "company/dummycompany"
},
"twitter": {
"handle": "dummycompany",
"id": "123456789",
"bio": "Dummy Company provides innovative solutions in the pharmaceutical industry.",
"followers": 10234,
"following": 500,
"location": "Springfield, IL",
"site": "https://t.co/dummy",
"avatar": "https://dummyimage.com/avatar.jpg"
},
"crunchbase": {
"handle": "organization/dummycompany"
},
"metrics": {
"alexaUsRank": 12345,
"alexaGlobalRank": 54321,
"trafficRank": "medium",
"employees": 250,
"employeesRange": "201-500",
"raised": 5000000,
"estimatedAnnualRevenue": "$10M-$20M"
},
"_id": "abc123def456ghi789jkl012",
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "Dummy Company",
"legalName": "Dummy Company LLC",
"domain": "dummycompany.com",
"domainAliases": [
"dummyco.net",
"dummycompany.io",
"dummycompany.biz"
],
"tags": [
"Healthcare",
"Biotechnology",
"Pharmaceuticals",
"Research",
"Development",
"Innovation"
],
"description": "Dummy Company specializes in the development of innovative pharmaceutical solutions to improve global health.",
"foundedYear": 2005,
"location": "123 Main Street Suite 200, Springfield, IL 62704, USA",
"timeZone": "America/Chicago",
"utcOffset": -6,
"logo": "https://logo.maximise.com/dummycompany.com",
"emailProvider": false,
"type": "private",
"identifiers": {
"usEIN": "12-3456789"
},
"phone": "+1 555-123-4567",
"indexedAt": "2024-09-20T10:30:00.000Z",
"tech": [
"wordpress",
"google_analytics",
"microsoft_exchange",
"new_relic",
"apache",
"youtube",
"office_365",
"google_ads",
"hubspot",
"mysql",
"postgresql",
"mongodb",
"aws",
"gitlab",
"jira",
"slack"
],
"techCategories": [
"content_management_system",
"analytics",
"email_hosting_service",
"monitoring",
"web_servers",
"video_services",
"productivity",
"advertising",
"crm",
"database",
"cloud_services",
"version_control",
"project_management_software",
"communication"
],
"createdAt": "2024-09-01T08:00:00.000Z",
"updatedAt": "2024-09-15T09:00:00.000Z"
},
"profileCount": 5,
"firstSeen": "2024-09-10T12:00:00.000Z",
"lastSeen": "2024-10-07T15:30:00.000Z",
"role": "Director of Operations at Dummy Company",
"seniority": ["Director"],
"position": "Director of Operations at Dummy Company",
"city": "Springfield",
"country": "United States",
"location": "Springfield, United States",
"totalSessionDuration": 3600,
"totalPagesVisited": 50
}
]
}
Last updated