v1

latestOpenAPI 3.0.02026-07-26392662.9 KB
Company

Identify company for a session

Returns company information for the current visitor's session when available. Provide a session UUID when you want to restrict lookup to a specific session.

post/radar/operator/v1/tracking-scripts/{trackingScriptId}/company/find

Path parameters

trackingScriptIdstring required
Example:12345

Tracking script ID

Request body

session_uuidstring uuid

Lookup will be performed for this session UUID

sincestring date nullable

Optional anchor date (ISO 8601, UTC). When provided, the session lookup is scoped to events on that single calendar day instead of the default last-2-days window — use it to identify sessions older than 2 days. The date must not be in the future or more than 30 days ago. Omit it to use the default window.

Example request

{
  "session_uuid": "42b7c5e0-76c0-4f8d-9b7c-6b8e1a2d3f45",
  "since": "2026-05-11"
}

Response

Company identified

ipstring required
domainstring required
type'business' | 'educational' | 'government' required

Example response

{
  "ip": "203.0.113.42",
  "domain": "acme.com",
  "type": "business",
  "company": {
    "name": "Acme Inc",
    "domain": "acme.com",
    "website": "https://www.acme.com",
    "industry": "Software",
    "founded_year": "2012",
    "employee_range": "51-200",
    "annual_revenue": "$10M-$50M",
    "total_funding": "$25M",
    "location": "San Francisco, CA",
    "description": "Acme builds widgets for modern teams.",
    "phone": "+1 415 555 0100",
    "geo": {
      "country": "United States",
      "country_code": "US",
      "state": "California",
      "state_code": "CA",
      "postal_code": "94107",
      "city": "San Francisco"
    }
  },
  "geoIP": {
    "country": "United States",
    "country_code": "US",
    "city": "San Francisco",
    "state": "California"
  }
}