curl --request GET \
--url https://api.baselayer.com/portfolio/items/{item_id}/snapshots \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.baselayer.com/portfolio/items/{item_id}/snapshots"
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.baselayer.com/portfolio/items/{item_id}/snapshots', 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.baselayer.com/portfolio/items/{item_id}/snapshots",
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.baselayer.com/portfolio/items/{item_id}/snapshots"
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.baselayer.com/portfolio/items/{item_id}/snapshots")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.baselayer.com/portfolio/items/{item_id}/snapshots")
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[
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"portfolio_item_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"schema_version": 123,
"data": {
"type": "Business",
"business": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "Levine-Santos",
"url": "https://api.baselayer.com/businesses/9083e7e2-1f6b-11ef-8f0f-1edb1b067314",
"console_url": "https://console.baselayer.com/business/9083e7e2-1f6b-11ef-8f0f-1edb1b067314",
"address": "63788 Paige Lane Cooperfurt, MI 10037",
"structure": "C_CORPORATION",
"addresses": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"street": "913 Hendrix Gardens Suite 492",
"city": "Jasonfurt",
"state": "VA",
"zip": "19773",
"latitude": 38.03012,
"longitude": 78.47665,
"rdi": "Commercial",
"deliverable": false,
"cmra": false,
"url": "<string>",
"delivery_type": "STREET",
"sources": [
"SOS",
"Online"
]
}
],
"phone_numbers": [
"251-829-8026"
],
"email": "kathleenholmes@example.com",
"website": "http://www.cruz-adkins.net/",
"social_profiles": {
"confidence": null,
"found_on": [],
"metadata": null,
"site": "twitter",
"url": "https://twitter.com/michelle98",
"username": "michelle98"
},
"reviews": [
{
"url": "https://www.yelp.com/biz/certified-power-inc-mundelein",
"source": "yelp",
"confidence": "high",
"rating": 4.5,
"volume": 23,
"summary": "5 reviews mention that the service was great and the owner was very helpful.",
"phone_number": "+12125551234",
"address": "123 Main St, Anytown, USA",
"business_website": "https://www.example.com",
"reviews": [
{
"username": "John Doe",
"text": "This is a great review!",
"date": "2024-01-01",
"rating": 5
}
],
"metadata": {
"open_state": "Open",
"operating_hours": {},
"description": "<string>",
"types": [
"Restaurant",
"Italian restaurant"
],
"service_options": {}
}
}
],
"directory_listings": [
{
"source": "bbb.org",
"url": "https://www.bbb.org/us/ca/modesto/profile/plumber/joes-plumbing-1234",
"category": "Plumbing Contractor",
"business_name": "Joe's Plumbing & Heating",
"phone_number": "<string>",
"email": "<string>",
"business_website": "<string>",
"address": "<string>",
"people": [
{
"name": "<string>",
"title": "<string>"
}
]
}
],
"ein": "871888915",
"incorporation_state": "HI",
"incorporation_date": "2011-11-27",
"months_in_business": 256,
"primary_address": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"street": "913 Hendrix Gardens Suite 492",
"city": "Jasonfurt",
"state": "VA",
"zip": "19773",
"latitude": 38.03012,
"longitude": 78.47665,
"rdi": "Commercial",
"deliverable": false,
"cmra": false,
"url": "<string>",
"delivery_type": "STREET"
},
"alternative_names": [
"Ramos, Garcia and Good"
],
"registrations": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "Garcia, Hernandez and Woods",
"file_number": "867124",
"state": "AZ",
"status": "active",
"issue_date": "2024-01-01",
"inactive_date": "2024-06-01",
"dissolution_date": "2024-06-01",
"address": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"street": "913 Hendrix Gardens Suite 492",
"city": "Jasonfurt",
"state": "VA",
"zip": "19773",
"latitude": 38.03012,
"longitude": 78.47665,
"rdi": "Commercial",
"deliverable": false,
"cmra": false,
"url": "<string>",
"delivery_type": "STREET"
},
"registration_type": "domestic",
"standing": "In Good Standing",
"registered_agent": {
"name": "Jeremy Crawford",
"address": {
"city": "Andrewton",
"cmra": false,
"deliverable": false,
"delivery_type": null,
"id": "ab237e72-7053-439d-ae5e-edbac59bf7cb",
"latitude": 34.0522,
"longitude": -118.2437,
"rdi": null,
"state": "CA",
"street": "3032 Mark Parks Andrewton, CA 27458",
"url": null,
"zip": "27458"
}
},
"officers": []
}
],
"business_officers": [
{
"name": "Philip Mcguire",
"titles": [
"CEO",
"Founder"
],
"states": [
"CA",
"NY"
],
"sources": [
"SOS",
"Online"
]
}
],
"predicted_naics": [],
"watchlist_hits": [],
"sec_registrations": [],
"revenue": null,
"phone_number": "955-714-3269"
},
"scores": [
{
"type": "risk",
"score": 95,
"rating": "A"
}
],
"liens": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"state": "CA",
"filing_number": "P98172",
"filing_type": "Lien for Loan Default",
"filing_date": "2023-09-18",
"lapse_date": "2023-04-15",
"status": "Under Appeal",
"number_of_pages": 14,
"last_updated_at": "2023-12-25",
"document_filename": "docket_47182.pdf",
"parties": [],
"amendments": [],
"collateral_type": "blanket",
"collateral_statements": [],
"lien_amount": 15432.5,
"match_level": "NO_MATCH",
"search_entity_name": "<string>",
"search_entity_type": "Business"
}
],
"dockets": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"docket_number": "A19284",
"court": "Supreme Court of Orange County",
"title": "Doe v. City of New York",
"is_bankruptcy": true,
"state": "CA",
"division": "Civil Court Division",
"judges": [
"Honorable Paul Shaw"
],
"case_type": "Civil",
"status": "Pending",
"bankruptcy_type": "Chapter 7",
"date_filed": "1900-01-01",
"date_closed": "2023-12-25",
"last_synced_at": "2023-11-07T05:31:56Z",
"parties": [],
"updates": [],
"match_level": "NO_MATCH",
"search_entity_name": "<string>",
"search_entity_type": "Business",
"match_confidence": {
"confidence": "high",
"name_match": "NO_MATCH",
"address_match": "STATE",
"date_match": "CONSISTENT"
},
"risk_level": "low",
"normalized_status": "open"
}
],
"bankruptcies": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"docket_number": "A19284",
"court": "Supreme Court of Orange County",
"title": "Doe v. City of New York",
"is_bankruptcy": true,
"state": "CA",
"division": "Civil Court Division",
"judges": [
"Honorable Paul Shaw"
],
"case_type": "Civil",
"status": "Pending",
"bankruptcy_type": "Chapter 7",
"date_filed": "1900-01-01",
"date_closed": "2023-12-25",
"last_synced_at": "2023-11-07T05:31:56Z",
"parties": [],
"updates": [],
"match_level": "NO_MATCH",
"search_entity_name": "<string>",
"search_entity_type": "Business",
"match_confidence": {
"confidence": "high",
"name_match": "NO_MATCH",
"address_match": "STATE",
"date_match": "CONSISTENT"
},
"risk_level": "low",
"normalized_status": "open"
}
],
"business_website_analysis": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"url": "http://www.warner.com/",
"parked": true,
"emails": [
"bennettamber@example.org",
"goldenshawn@example.com"
],
"social_profiles": [
{
"site": "twitter",
"url": "https://twitter.com/michelle98",
"username": "michelle98"
}
],
"console_url": "https://console.baselayer.com/business/dde7c16a-1f7b-11ef-9425-1edb1b067314/website_analysis",
"redirects": {
"is_redirect_url": true,
"redirects_to": "baselayer.com"
},
"email_deliverable": true,
"phone_numbers": [
"362-345-4551",
"(872) 628-1402"
],
"addresses": [],
"people": [
{
"name": "Jane Smith",
"titles": [
"CEO",
"Co-Founder"
]
},
{
"name": "John Doe",
"titles": [
"CTO"
]
}
],
"website_build_status": "coming_soon",
"website_summary": "Howard Concrete Pumping Co., Inc. is a concrete pumping contractor serving the construction industry. The company specializes in concrete placement services for residential and commercial construction projects. They operate throughout the greater metropolitan area and have been providing reliable concrete pumping solutions for over 20 years.",
"screenshot_url": "https://api.baselayer.com/business/dde7c16a-1f7b-11ef-9425-1edb1b067314/website_analysis/screenshot",
"whois_record": {
"domain_created_at": "2020-05-15T10:30:00Z",
"domain_updated_at": "2023-06-01T14:45:00Z",
"domain_expires_at": "2025-05-15T10:30:00Z",
"registrar": "Example Registrar Inc.",
"domain_age_months": 15
},
"ssl_validity": {
"cert_age_days": 185,
"certificate_type": "EV",
"days_until_expiry": 180,
"expiry_date": "2025-01-15T00:00:00",
"is_revoked": false,
"is_self_signed": false,
"is_valid": true,
"is_wildcard": false,
"issued_date": "2024-01-15T00:00:00",
"issuer": "DigiCert Global Root CA",
"key_size": 2048,
"reason": null,
"subject": "www.example.com",
"tls_version": "TLSv1.3"
},
"website_structure_metrics": {
"breadth": "15+",
"depth": "2+"
}
},
"item_website_analysis": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"url": "http://www.warner.com/",
"parked": true,
"emails": [
"bennettamber@example.org",
"goldenshawn@example.com"
],
"social_profiles": [
{
"site": "twitter",
"url": "https://twitter.com/michelle98",
"username": "michelle98"
}
],
"console_url": "https://console.baselayer.com/business/dde7c16a-1f7b-11ef-9425-1edb1b067314/website_analysis",
"redirects": {
"is_redirect_url": true,
"redirects_to": "baselayer.com"
},
"email_deliverable": true,
"phone_numbers": [
"362-345-4551",
"(872) 628-1402"
],
"addresses": [],
"people": [
{
"name": "Jane Smith",
"titles": [
"CEO",
"Co-Founder"
]
},
{
"name": "John Doe",
"titles": [
"CTO"
]
}
],
"website_build_status": "coming_soon",
"website_summary": "Howard Concrete Pumping Co., Inc. is a concrete pumping contractor serving the construction industry. The company specializes in concrete placement services for residential and commercial construction projects. They operate throughout the greater metropolitan area and have been providing reliable concrete pumping solutions for over 20 years.",
"screenshot_url": "https://api.baselayer.com/business/dde7c16a-1f7b-11ef-9425-1edb1b067314/website_analysis/screenshot",
"whois_record": {
"domain_created_at": "2020-05-15T10:30:00Z",
"domain_updated_at": "2023-06-01T14:45:00Z",
"domain_expires_at": "2025-05-15T10:30:00Z",
"registrar": "Example Registrar Inc.",
"domain_age_months": 15
},
"ssl_validity": {
"cert_age_days": 185,
"certificate_type": "EV",
"days_until_expiry": 180,
"expiry_date": "2025-01-15T00:00:00",
"is_revoked": false,
"is_self_signed": false,
"is_valid": true,
"is_wildcard": false,
"issued_date": "2024-01-15T00:00:00",
"issuer": "DigiCert Global Root CA",
"key_size": 2048,
"reason": null,
"subject": "www.example.com",
"tls_version": "TLSv1.3"
},
"website_structure_metrics": {
"breadth": "15+",
"depth": "2+"
}
},
"search_combinations": [
{
"created_at": "2026-08-31T10:31:07.677145",
"name": "Clark PLC",
"address": "63788 Paige Lane Cooperfurt, MI 10037",
"tin": "123456789",
"officer_names": [
"Louis Schneider"
]
}
],
"search_history": [
{
"created_at": "2026-08-24T10:31:07.676759",
"type": "community_bank",
"team": "compliance",
"product": "credit"
}
]
},
"created_at": "2023-11-07T05:31:56Z",
"attributes": []
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Get Portfolio Item Snapshots
Retrieves a paginated list of snapshots for a specific portfolio item.
Snapshots are ordered by created_at in descending order (newest first).
curl --request GET \
--url https://api.baselayer.com/portfolio/items/{item_id}/snapshots \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.baselayer.com/portfolio/items/{item_id}/snapshots"
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.baselayer.com/portfolio/items/{item_id}/snapshots', 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.baselayer.com/portfolio/items/{item_id}/snapshots",
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.baselayer.com/portfolio/items/{item_id}/snapshots"
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.baselayer.com/portfolio/items/{item_id}/snapshots")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.baselayer.com/portfolio/items/{item_id}/snapshots")
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[
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"portfolio_item_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"schema_version": 123,
"data": {
"type": "Business",
"business": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "Levine-Santos",
"url": "https://api.baselayer.com/businesses/9083e7e2-1f6b-11ef-8f0f-1edb1b067314",
"console_url": "https://console.baselayer.com/business/9083e7e2-1f6b-11ef-8f0f-1edb1b067314",
"address": "63788 Paige Lane Cooperfurt, MI 10037",
"structure": "C_CORPORATION",
"addresses": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"street": "913 Hendrix Gardens Suite 492",
"city": "Jasonfurt",
"state": "VA",
"zip": "19773",
"latitude": 38.03012,
"longitude": 78.47665,
"rdi": "Commercial",
"deliverable": false,
"cmra": false,
"url": "<string>",
"delivery_type": "STREET",
"sources": [
"SOS",
"Online"
]
}
],
"phone_numbers": [
"251-829-8026"
],
"email": "kathleenholmes@example.com",
"website": "http://www.cruz-adkins.net/",
"social_profiles": {
"confidence": null,
"found_on": [],
"metadata": null,
"site": "twitter",
"url": "https://twitter.com/michelle98",
"username": "michelle98"
},
"reviews": [
{
"url": "https://www.yelp.com/biz/certified-power-inc-mundelein",
"source": "yelp",
"confidence": "high",
"rating": 4.5,
"volume": 23,
"summary": "5 reviews mention that the service was great and the owner was very helpful.",
"phone_number": "+12125551234",
"address": "123 Main St, Anytown, USA",
"business_website": "https://www.example.com",
"reviews": [
{
"username": "John Doe",
"text": "This is a great review!",
"date": "2024-01-01",
"rating": 5
}
],
"metadata": {
"open_state": "Open",
"operating_hours": {},
"description": "<string>",
"types": [
"Restaurant",
"Italian restaurant"
],
"service_options": {}
}
}
],
"directory_listings": [
{
"source": "bbb.org",
"url": "https://www.bbb.org/us/ca/modesto/profile/plumber/joes-plumbing-1234",
"category": "Plumbing Contractor",
"business_name": "Joe's Plumbing & Heating",
"phone_number": "<string>",
"email": "<string>",
"business_website": "<string>",
"address": "<string>",
"people": [
{
"name": "<string>",
"title": "<string>"
}
]
}
],
"ein": "871888915",
"incorporation_state": "HI",
"incorporation_date": "2011-11-27",
"months_in_business": 256,
"primary_address": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"street": "913 Hendrix Gardens Suite 492",
"city": "Jasonfurt",
"state": "VA",
"zip": "19773",
"latitude": 38.03012,
"longitude": 78.47665,
"rdi": "Commercial",
"deliverable": false,
"cmra": false,
"url": "<string>",
"delivery_type": "STREET"
},
"alternative_names": [
"Ramos, Garcia and Good"
],
"registrations": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "Garcia, Hernandez and Woods",
"file_number": "867124",
"state": "AZ",
"status": "active",
"issue_date": "2024-01-01",
"inactive_date": "2024-06-01",
"dissolution_date": "2024-06-01",
"address": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"street": "913 Hendrix Gardens Suite 492",
"city": "Jasonfurt",
"state": "VA",
"zip": "19773",
"latitude": 38.03012,
"longitude": 78.47665,
"rdi": "Commercial",
"deliverable": false,
"cmra": false,
"url": "<string>",
"delivery_type": "STREET"
},
"registration_type": "domestic",
"standing": "In Good Standing",
"registered_agent": {
"name": "Jeremy Crawford",
"address": {
"city": "Andrewton",
"cmra": false,
"deliverable": false,
"delivery_type": null,
"id": "ab237e72-7053-439d-ae5e-edbac59bf7cb",
"latitude": 34.0522,
"longitude": -118.2437,
"rdi": null,
"state": "CA",
"street": "3032 Mark Parks Andrewton, CA 27458",
"url": null,
"zip": "27458"
}
},
"officers": []
}
],
"business_officers": [
{
"name": "Philip Mcguire",
"titles": [
"CEO",
"Founder"
],
"states": [
"CA",
"NY"
],
"sources": [
"SOS",
"Online"
]
}
],
"predicted_naics": [],
"watchlist_hits": [],
"sec_registrations": [],
"revenue": null,
"phone_number": "955-714-3269"
},
"scores": [
{
"type": "risk",
"score": 95,
"rating": "A"
}
],
"liens": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"state": "CA",
"filing_number": "P98172",
"filing_type": "Lien for Loan Default",
"filing_date": "2023-09-18",
"lapse_date": "2023-04-15",
"status": "Under Appeal",
"number_of_pages": 14,
"last_updated_at": "2023-12-25",
"document_filename": "docket_47182.pdf",
"parties": [],
"amendments": [],
"collateral_type": "blanket",
"collateral_statements": [],
"lien_amount": 15432.5,
"match_level": "NO_MATCH",
"search_entity_name": "<string>",
"search_entity_type": "Business"
}
],
"dockets": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"docket_number": "A19284",
"court": "Supreme Court of Orange County",
"title": "Doe v. City of New York",
"is_bankruptcy": true,
"state": "CA",
"division": "Civil Court Division",
"judges": [
"Honorable Paul Shaw"
],
"case_type": "Civil",
"status": "Pending",
"bankruptcy_type": "Chapter 7",
"date_filed": "1900-01-01",
"date_closed": "2023-12-25",
"last_synced_at": "2023-11-07T05:31:56Z",
"parties": [],
"updates": [],
"match_level": "NO_MATCH",
"search_entity_name": "<string>",
"search_entity_type": "Business",
"match_confidence": {
"confidence": "high",
"name_match": "NO_MATCH",
"address_match": "STATE",
"date_match": "CONSISTENT"
},
"risk_level": "low",
"normalized_status": "open"
}
],
"bankruptcies": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"docket_number": "A19284",
"court": "Supreme Court of Orange County",
"title": "Doe v. City of New York",
"is_bankruptcy": true,
"state": "CA",
"division": "Civil Court Division",
"judges": [
"Honorable Paul Shaw"
],
"case_type": "Civil",
"status": "Pending",
"bankruptcy_type": "Chapter 7",
"date_filed": "1900-01-01",
"date_closed": "2023-12-25",
"last_synced_at": "2023-11-07T05:31:56Z",
"parties": [],
"updates": [],
"match_level": "NO_MATCH",
"search_entity_name": "<string>",
"search_entity_type": "Business",
"match_confidence": {
"confidence": "high",
"name_match": "NO_MATCH",
"address_match": "STATE",
"date_match": "CONSISTENT"
},
"risk_level": "low",
"normalized_status": "open"
}
],
"business_website_analysis": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"url": "http://www.warner.com/",
"parked": true,
"emails": [
"bennettamber@example.org",
"goldenshawn@example.com"
],
"social_profiles": [
{
"site": "twitter",
"url": "https://twitter.com/michelle98",
"username": "michelle98"
}
],
"console_url": "https://console.baselayer.com/business/dde7c16a-1f7b-11ef-9425-1edb1b067314/website_analysis",
"redirects": {
"is_redirect_url": true,
"redirects_to": "baselayer.com"
},
"email_deliverable": true,
"phone_numbers": [
"362-345-4551",
"(872) 628-1402"
],
"addresses": [],
"people": [
{
"name": "Jane Smith",
"titles": [
"CEO",
"Co-Founder"
]
},
{
"name": "John Doe",
"titles": [
"CTO"
]
}
],
"website_build_status": "coming_soon",
"website_summary": "Howard Concrete Pumping Co., Inc. is a concrete pumping contractor serving the construction industry. The company specializes in concrete placement services for residential and commercial construction projects. They operate throughout the greater metropolitan area and have been providing reliable concrete pumping solutions for over 20 years.",
"screenshot_url": "https://api.baselayer.com/business/dde7c16a-1f7b-11ef-9425-1edb1b067314/website_analysis/screenshot",
"whois_record": {
"domain_created_at": "2020-05-15T10:30:00Z",
"domain_updated_at": "2023-06-01T14:45:00Z",
"domain_expires_at": "2025-05-15T10:30:00Z",
"registrar": "Example Registrar Inc.",
"domain_age_months": 15
},
"ssl_validity": {
"cert_age_days": 185,
"certificate_type": "EV",
"days_until_expiry": 180,
"expiry_date": "2025-01-15T00:00:00",
"is_revoked": false,
"is_self_signed": false,
"is_valid": true,
"is_wildcard": false,
"issued_date": "2024-01-15T00:00:00",
"issuer": "DigiCert Global Root CA",
"key_size": 2048,
"reason": null,
"subject": "www.example.com",
"tls_version": "TLSv1.3"
},
"website_structure_metrics": {
"breadth": "15+",
"depth": "2+"
}
},
"item_website_analysis": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"url": "http://www.warner.com/",
"parked": true,
"emails": [
"bennettamber@example.org",
"goldenshawn@example.com"
],
"social_profiles": [
{
"site": "twitter",
"url": "https://twitter.com/michelle98",
"username": "michelle98"
}
],
"console_url": "https://console.baselayer.com/business/dde7c16a-1f7b-11ef-9425-1edb1b067314/website_analysis",
"redirects": {
"is_redirect_url": true,
"redirects_to": "baselayer.com"
},
"email_deliverable": true,
"phone_numbers": [
"362-345-4551",
"(872) 628-1402"
],
"addresses": [],
"people": [
{
"name": "Jane Smith",
"titles": [
"CEO",
"Co-Founder"
]
},
{
"name": "John Doe",
"titles": [
"CTO"
]
}
],
"website_build_status": "coming_soon",
"website_summary": "Howard Concrete Pumping Co., Inc. is a concrete pumping contractor serving the construction industry. The company specializes in concrete placement services for residential and commercial construction projects. They operate throughout the greater metropolitan area and have been providing reliable concrete pumping solutions for over 20 years.",
"screenshot_url": "https://api.baselayer.com/business/dde7c16a-1f7b-11ef-9425-1edb1b067314/website_analysis/screenshot",
"whois_record": {
"domain_created_at": "2020-05-15T10:30:00Z",
"domain_updated_at": "2023-06-01T14:45:00Z",
"domain_expires_at": "2025-05-15T10:30:00Z",
"registrar": "Example Registrar Inc.",
"domain_age_months": 15
},
"ssl_validity": {
"cert_age_days": 185,
"certificate_type": "EV",
"days_until_expiry": 180,
"expiry_date": "2025-01-15T00:00:00",
"is_revoked": false,
"is_self_signed": false,
"is_valid": true,
"is_wildcard": false,
"issued_date": "2024-01-15T00:00:00",
"issuer": "DigiCert Global Root CA",
"key_size": 2048,
"reason": null,
"subject": "www.example.com",
"tls_version": "TLSv1.3"
},
"website_structure_metrics": {
"breadth": "15+",
"depth": "2+"
}
},
"search_combinations": [
{
"created_at": "2026-08-31T10:31:07.677145",
"name": "Clark PLC",
"address": "63788 Paige Lane Cooperfurt, MI 10037",
"tin": "123456789",
"officer_names": [
"Louis Schneider"
]
}
],
"search_history": [
{
"created_at": "2026-08-24T10:31:07.676759",
"type": "community_bank",
"team": "compliance",
"product": "credit"
}
]
},
"created_at": "2023-11-07T05:31:56Z",
"attributes": []
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Authorizations
Path Parameters
The unique identifier of the portfolio item to fetch snapshots for.
"412a49b5-7466-426b-bf1e-081b00b54576"
"9d5a286e-a6d6-4d6c-a38e-8b7ea50accd5"
Query Parameters
Maximum number of records to return in a single page. Must be between 1 and 1000.
1 <= x <= 1000Number of records to skip from the beginning. Use 0 for the first page. Cannot be used with cursor.
x >= 0Opaque pagination cursor token that identifies the position in the result set. Use the cursor from the previous response to get the next page. Cannot be used with offset.
Response
Response
The unique identifier of the snapshot.
The unique identifier of the portfolio item this snapshot belongs to.
The schema version of the snapshot data.
Represents the data of a business portfolio item snapshot.
- BusinessPortfolioItemSnapshotData (v1)
- PersonPortfolioItemSnapshotData (v1)
Show child attributes
Show child attributes
When the snapshot was created.
The attributes that were monitored when the snapshot was created.
The attributes that can be monitored.
sos, liens, litigations, bankruptcies, website_analysis, pep, ofac, identity_network