Added
{ New } - Supply Chain Risks
about 6 hours ago by Dan Benshitrit
Introduced the Inbound Supply Chain Risks view: given a single domain, get a paginated, ranked list of the third-party "partner" services your organization's accounts are exposed to, discovered from compromised credentials and enriched with company intelligence.
Endpoint
POST /json/v3/search-by-domain/supply-chain-risks Available as a search-by-domain option, alongside /overview, /discovery, and /assessment.
Access
- Requires the
supply_chain_monitoringandsearch-by-domainAPI permissions.
Request body
| Field | Type | Default | Notes |
|---|---|---|---|
domain | string | — | Required. The subject domain to scan. |
page | integer | 1 | 1-based page number. |
limit | integer | 25 | Partners per page (max 200). |
sort_by | string | size | size (company size, largest first), occurrence (most compromised), or name (A→Z). |
Response
{
"success": true,
"domain": "tesla.com",
"total": 167,
"page": 1,
"limit": 25,
"data": [
{
"domain": "salesforce.com",
"source_domain": "tesla.com",
"partner_occurrence": 5,
"name": "salesforce",
"size": "10001+",
"industry": "internet",
"location_locality": "san francisco",
"location_region": "california",
"location_country": "united states",
"compromised_counts": { "employees": 1073, "users": 96923 },
"last_employee_compromised": "2026-05-29T00:00:00.000Z",
"last_employee_uploaded": "2026-06-02T09:50:17.038Z",
"last_user_compromised": "2026-06-01T14:28:53.000Z",
"last_user_uploaded": "2026-06-02T09:55:18.357Z",
"passwords_strength": { "...": "..." },
"applications_found": { "...": "..." },
"antiviruses_stats": { "...": "..." }
}
]
}Notes
- Partners are ranked third-party services that your accounts logged into; partner_occurrence reflects the number of unique compromised logins per partner.
- Company fields (name, size, industry, location, counts, password strength, applications, antivirus stats) are best-effort and may be absent when no company information is available for a partner.
- Default sort is by company size (largest first); page size defaults to 25.
- Results are cached per domain so repeat requests and pagination are fast.
