Added

{ New } - Supply Chain Risks

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_monitoring and search-by-domain API permissions.

Request body

FieldTypeDefaultNotes
domainstringRequired. The subject domain to scan.
pageinteger11-based page number.
limitinteger25Partners per page (max 200).
sort_bystringsizesize (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.