Skip to main content

Accounts Overview

requires authentication

GET resource/account/overview

Headers

x-api-key
Example: your-api-key-here

Content-Type
Example: application/json

Accept
Example: application/json

Query Parameters

domain string

string The domain identifier of the account. Example: example.com

Body Parameters

domain required optional

string The domain identifier of the account. Example: example.com

Bash

Example request:
curl --request GET \
--get "https://api2.sonalabs.com/resource/account/overview?domain=example.com" \
--header "x-api-key: your-api-key-here" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"domain\": \"example.com\"
}"

Example response (200, Success):

{
"version": "2.0.0",
"php": "8.3.19",
"status": "success",
"data": {
"details": {
"name": "M1",
"description": "M1 is a self-directed wealth-building platform offering financial products and services for investing, borrowing, spending, and saving. With over $5.5 billion in assets under management, M1 has been recognized for low costs and services for sophisticat...",
"domain": "m1.com",
"type": "private",
"phone": "+1 312-600-2883",
"uuid": "86064df0-83c4-4f19-af78-4bd304cee4a6",
"createdAt": "2025-02-27T21:33:16",
"employees": 401,
"employeesRange": "251-1K",
"visitorsCount": 1,
"identifiedPeople": 0,
"annualRevenue": null,
"estimatedAnnualRevenue": "$50M-$100M",
"foundedYear": 2015,
"streetAddress": "200 North LaSalle Street #Ste. 800",
"city": "Chicago",
"postalCode": "60601",
"state": "Illinois",
"country": "United States",
"industry": "Capital Markets",
"subIndustry": null,
"linkedin": "company/m1-finance"
},
"activity": [],
"journey": [
{
"date": "2024-03-14",
"dataLayer": null,
"scrollPercentage": 0,
"source": "report",
"duration": null,
"browser": null,
"customTimestamp": null,
"userAgentBrowser": null,
"userAgentOS": null,
"iframe": null,
"event": null,
"segmentAnonymousId": null,
"key": null,
"email": null,
"eventId": null,
"identifier": "[email protected]",
"timeSpent": 0,
"ip": null,
"isMilestone": true,
"adblocker": null,
"params": null,
"version": null,
"userId": null,
"utm": {
"channelSubchannel": "With intent signal",
"ad": null,
"adId": null,
"color": null,
"campaignId": null,
"adgroupId": null,
"campaign": null,
"term": null,
"source": "With intent signal",
"medium": null,
"content": null,
"adgroup": null
},
"referrer": null,
"userAgentModel": null,
"deviceInformation": null,
"customIndex": null,
"phone": null,
"meta": null,
"customEvent": null,
"pageParams": null,
"userAgentType": null,
"hitTimestamp": "2024-03-14T05:00:08",
"name": "With intent signal",
"ajaxResponse": null,
"formData": null,
"attributes": {
"Buying Stage": "Purchase"
},
"page": null,
"time": "05:00:08",
"visitorId": null
},
{
"date": "2024-03-14",
"dataLayer": null,
"scrollPercentage": 0,
"source": "report",
"duration": null,
"browser": null,
"customTimestamp": null,
"userAgentBrowser": null,
"userAgentOS": null,
"iframe": null,
"event": null,
"segmentAnonymousId": null,
"key": null,
"email": null,
"eventId": null,
"identifier": "[email protected]",
"timeSpent": 0,
"ip": null,
"isMilestone": true,
"adblocker": null,
"params": null,
"version": null,
"userId": null,
"utm": {
"channelSubchannel": "With intent signal",
"ad": null,
"adId": null,
"color": "#4A6AF2",
"campaignId": null,
"adgroupId": null,
"campaign": null,
"term": null,
"source": "With intent signal",
"medium": null,
"content": null,
"adgroup": null
},
"referrer": null,
"userAgentModel": null,
"deviceInformation": null,
"customIndex": null,
"phone": null,
"meta": null,
"customEvent": null,
"pageParams": null,
"userAgentType": null,
"hitTimestamp": "2024-03-14T05:00:08",
"name": "With intent signal",
"ajaxResponse": null,
"formData": null,
"attributes": {
"Buying Stage": "Purchase"
},
"page": null,
"time": "05:00:08",
"visitorId": null
}
],
"people": [],
"intentSignals": [
"Visited Website"
],
"intentTrends": [],
"sessionsDuration": 7,
"totalActiveTime": 0,
"buyingStage": "Awareness",
"lifecycleStage": "",
"icpScore": 17,
"websiteVisitors": [],
"topPages": [],
"tags": [
"Financial Vehicles",
"Investing",
"REITs",
"Finance",
"Insurance",
"Funds",
"Financial Services",
"B2C"
],
"tech": [
"amazon_s3",
"intercom",
"microsoft_exchange_online",
"new_relic",
"nginx",
"outlook",
"wordpress",
"zendesk",
"greenhouse",
"microsoft_office_365",
"youtube",
"twitter_button",
"google_tag_manager",
"segment"
],
"techCategories": [
"cloud_computing_services",
"live_chat",
"email_hosting_service",
"monitoring",
"web_servers",
"content_management_system",
"customer_support",
"applicant_tracking_system",
"productivity",
"image_video_services",
"social_sharing",
"tag_management",
"customer_data_platform"
]
}
}

Example response (404, Error):

{
"version": "2.0.0",
"php": "8.3.19",
"status": "error",
"data": "Account not found"
}

JavaScript

Example request:
const url = new URL(
"https://api2.sonalabs.com/resource/account/overview"
);

const params = {
"domain": "example.com",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));

const headers = {
"x-api-key": "your-api-key-here",
"Content-Type": "application/json",
"Accept": "application/json",
};

let body = {
"domain": "example.com"
};

fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());

Example response (200, Success):

{
"version": "2.0.0",
"php": "8.3.19",
"status": "success",
"data": {
"details": {
"name": "M1",
"description": "M1 is a self-directed wealth-building platform offering financial products and services for investing, borrowing, spending, and saving. With over $5.5 billion in assets under management, M1 has been recognized for low costs and services for sophisticat...",
"domain": "m1.com",
"type": "private",
"phone": "+1 312-600-2883",
"uuid": "86064df0-83c4-4f19-af78-4bd304cee4a6",
"createdAt": "2025-02-27T21:33:16",
"employees": 401,
"employeesRange": "251-1K",
"visitorsCount": 1,
"identifiedPeople": 0,
"annualRevenue": null,
"estimatedAnnualRevenue": "$50M-$100M",
"foundedYear": 2015,
"streetAddress": "200 North LaSalle Street #Ste. 800",
"city": "Chicago",
"postalCode": "60601",
"state": "Illinois",
"country": "United States",
"industry": "Capital Markets",
"subIndustry": null,
"linkedin": "company/m1-finance"
},
"activity": [],
"journey": [
{
"date": "2024-03-14",
"dataLayer": null,
"scrollPercentage": 0,
"source": "report",
"duration": null,
"browser": null,
"customTimestamp": null,
"userAgentBrowser": null,
"userAgentOS": null,
"iframe": null,
"event": null,
"segmentAnonymousId": null,
"key": null,
"email": null,
"eventId": null,
"identifier": "[email protected]",
"timeSpent": 0,
"ip": null,
"isMilestone": true,
"adblocker": null,
"params": null,
"version": null,
"userId": null,
"utm": {
"channelSubchannel": "With intent signal",
"ad": null,
"adId": null,
"color": null,
"campaignId": null,
"adgroupId": null,
"campaign": null,
"term": null,
"source": "With intent signal",
"medium": null,
"content": null,
"adgroup": null
},
"referrer": null,
"userAgentModel": null,
"deviceInformation": null,
"customIndex": null,
"phone": null,
"meta": null,
"customEvent": null,
"pageParams": null,
"userAgentType": null,
"hitTimestamp": "2024-03-14T05:00:08",
"name": "With intent signal",
"ajaxResponse": null,
"formData": null,
"attributes": {
"Buying Stage": "Purchase"
},
"page": null,
"time": "05:00:08",
"visitorId": null
},
{
"date": "2024-03-14",
"dataLayer": null,
"scrollPercentage": 0,
"source": "report",
"duration": null,
"browser": null,
"customTimestamp": null,
"userAgentBrowser": null,
"userAgentOS": null,
"iframe": null,
"event": null,
"segmentAnonymousId": null,
"key": null,
"email": null,
"eventId": null,
"identifier": "[email protected]",
"timeSpent": 0,
"ip": null,
"isMilestone": true,
"adblocker": null,
"params": null,
"version": null,
"userId": null,
"utm": {
"channelSubchannel": "With intent signal",
"ad": null,
"adId": null,
"color": "#4A6AF2",
"campaignId": null,
"adgroupId": null,
"campaign": null,
"term": null,
"source": "With intent signal",
"medium": null,
"content": null,
"adgroup": null
},
"referrer": null,
"userAgentModel": null,
"deviceInformation": null,
"customIndex": null,
"phone": null,
"meta": null,
"customEvent": null,
"pageParams": null,
"userAgentType": null,
"hitTimestamp": "2024-03-14T05:00:08",
"name": "With intent signal",
"ajaxResponse": null,
"formData": null,
"attributes": {
"Buying Stage": "Purchase"
},
"page": null,
"time": "05:00:08",
"visitorId": null
}
],
"people": [],
"intentSignals": [
"Visited Website"
],
"intentTrends": [],
"sessionsDuration": 7,
"totalActiveTime": 0,
"buyingStage": "Awareness",
"lifecycleStage": "",
"icpScore": 17,
"websiteVisitors": [],
"topPages": [],
"tags": [
"Financial Vehicles",
"Investing",
"REITs",
"Finance",
"Insurance",
"Funds",
"Financial Services",
"B2C"
],
"tech": [
"amazon_s3",
"intercom",
"microsoft_exchange_online",
"new_relic",
"nginx",
"outlook",
"wordpress",
"zendesk",
"greenhouse",
"microsoft_office_365",
"youtube",
"twitter_button",
"google_tag_manager",
"segment"
],
"techCategories": [
"cloud_computing_services",
"live_chat",
"email_hosting_service",
"monitoring",
"web_servers",
"content_management_system",
"customer_support",
"applicant_tracking_system",
"productivity",
"image_video_services",
"social_sharing",
"tag_management",
"customer_data_platform"
]
}
}

Example response (404, Error):

{
"version": "2.0.0",
"php": "8.3.19",
"status": "error",
"data": "Account not found"
}

PHP

$client = new \GuzzleHttp\Client();
$url = 'https://api2.sonalabs.com/resource/account/overview';
$response = $client->get(
$url,
[
'headers' => [
'x-api-key' => 'your-api-key-here',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'domain' => 'example.com',
],
'json' => [
'domain' => 'example.com',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200, Success):

{
"version": "2.0.0",
"php": "8.3.19",
"status": "success",
"data": {
"details": {
"name": "M1",
"description": "M1 is a self-directed wealth-building platform offering financial products and services for investing, borrowing, spending, and saving. With over $5.5 billion in assets under management, M1 has been recognized for low costs and services for sophisticat...",
"domain": "m1.com",
"type": "private",
"phone": "+1 312-600-2883",
"uuid": "86064df0-83c4-4f19-af78-4bd304cee4a6",
"createdAt": "2025-02-27T21:33:16",
"employees": 401,
"employeesRange": "251-1K",
"visitorsCount": 1,
"identifiedPeople": 0,
"annualRevenue": null,
"estimatedAnnualRevenue": "$50M-$100M",
"foundedYear": 2015,
"streetAddress": "200 North LaSalle Street #Ste. 800",
"city": "Chicago",
"postalCode": "60601",
"state": "Illinois",
"country": "United States",
"industry": "Capital Markets",
"subIndustry": null,
"linkedin": "company/m1-finance"
},
"activity": [],
"journey": [
{
"date": "2024-03-14",
"dataLayer": null,
"scrollPercentage": 0,
"source": "report",
"duration": null,
"browser": null,
"customTimestamp": null,
"userAgentBrowser": null,
"userAgentOS": null,
"iframe": null,
"event": null,
"segmentAnonymousId": null,
"key": null,
"email": null,
"eventId": null,
"identifier": "[email protected]",
"timeSpent": 0,
"ip": null,
"isMilestone": true,
"adblocker": null,
"params": null,
"version": null,
"userId": null,
"utm": {
"channelSubchannel": "With intent signal",
"ad": null,
"adId": null,
"color": null,
"campaignId": null,
"adgroupId": null,
"campaign": null,
"term": null,
"source": "With intent signal",
"medium": null,
"content": null,
"adgroup": null
},
"referrer": null,
"userAgentModel": null,
"deviceInformation": null,
"customIndex": null,
"phone": null,
"meta": null,
"customEvent": null,
"pageParams": null,
"userAgentType": null,
"hitTimestamp": "2024-03-14T05:00:08",
"name": "With intent signal",
"ajaxResponse": null,
"formData": null,
"attributes": {
"Buying Stage": "Purchase"
},
"page": null,
"time": "05:00:08",
"visitorId": null
},
{
"date": "2024-03-14",
"dataLayer": null,
"scrollPercentage": 0,
"source": "report",
"duration": null,
"browser": null,
"customTimestamp": null,
"userAgentBrowser": null,
"userAgentOS": null,
"iframe": null,
"event": null,
"segmentAnonymousId": null,
"key": null,
"email": null,
"eventId": null,
"identifier": "[email protected]",
"timeSpent": 0,
"ip": null,
"isMilestone": true,
"adblocker": null,
"params": null,
"version": null,
"userId": null,
"utm": {
"channelSubchannel": "With intent signal",
"ad": null,
"adId": null,
"color": "#4A6AF2",
"campaignId": null,
"adgroupId": null,
"campaign": null,
"term": null,
"source": "With intent signal",
"medium": null,
"content": null,
"adgroup": null
},
"referrer": null,
"userAgentModel": null,
"deviceInformation": null,
"customIndex": null,
"phone": null,
"meta": null,
"customEvent": null,
"pageParams": null,
"userAgentType": null,
"hitTimestamp": "2024-03-14T05:00:08",
"name": "With intent signal",
"ajaxResponse": null,
"formData": null,
"attributes": {
"Buying Stage": "Purchase"
},
"page": null,
"time": "05:00:08",
"visitorId": null
}
],
"people": [],
"intentSignals": [
"Visited Website"
],
"intentTrends": [],
"sessionsDuration": 7,
"totalActiveTime": 0,
"buyingStage": "Awareness",
"lifecycleStage": "",
"icpScore": 17,
"websiteVisitors": [],
"topPages": [],
"tags": [
"Financial Vehicles",
"Investing",
"REITs",
"Finance",
"Insurance",
"Funds",
"Financial Services",
"B2C"
],
"tech": [
"amazon_s3",
"intercom",
"microsoft_exchange_online",
"new_relic",
"nginx",
"outlook",
"wordpress",
"zendesk",
"greenhouse",
"microsoft_office_365",
"youtube",
"twitter_button",
"google_tag_manager",
"segment"
],
"techCategories": [
"cloud_computing_services",
"live_chat",
"email_hosting_service",
"monitoring",
"web_servers",
"content_management_system",
"customer_support",
"applicant_tracking_system",
"productivity",
"image_video_services",
"social_sharing",
"tag_management",
"customer_data_platform"
]
}
}

Example response (404, Error):

{
"version": "2.0.0",
"php": "8.3.19",
"status": "error",
"data": "Account not found"
}