Skip to main content
POST
/
v1
/
radars
/
companies
Create a company radar
curl --request POST \
  --url https://api.tamradar.com/v1/radars/companies \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "domain": "stripe.com",
  "radar_type": "company_new_hires",
  "webhook_url": "https://webhook.site/your-webhook-id",
  "departments": [
    "Engineering",
    "Product Management"
  ],
  "seniorities": [
    "Senior",
    "Manager"
  ],
  "profile_url": "https://www.linkedin.com/company/stripe",
  "custom_fields": {
    "campaign_id": "q4-2024-hiring",
    "priority": "high"
  }
}
'
{
  "status": "success",
  "code": 201,
  "timestamp": "2024-03-20T10:15:30.000Z",
  "message": "Radar created successfully",
  "data": {
    "radar_id": "759199a6-5817-4a7d-b812-66abe65f3ce2",
    "radar_type": "company_new_hires",
    "domain": "stripe.com",
    "webhook_url": "https://webhook.site/your-webhook-id",
    "radar_status": "active",
    "created_at": "2024-03-20T10:15:30.000Z",
    "deactivated_at": null,
    "next_charge_at": "2024-04-20T10:15:30.000Z",
    "custom_fields": {
      "campaign_id": "q4-2024-hiring",
      "priority": "high"
    },
    "departments": [
      "Engineering",
      "Product Management"
    ],
    "seniorities": [
      "Senior",
      "Manager"
    ],
    "profile_url": "https://www.linkedin.com/company/stripe"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.tamradar.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

Body

application/json
domain
string
required

The domain to track (e.g., stripe.com). Protocol, www, paths, and query parameters are automatically normalized.

Example:

"stripe.com"

radar_type
enum<string>
required

The type of company activity to track

Available options:
company_new_hires,
company_job_openings,
company_promotions,
company_reviews,
company_mentions,
company_social_posts,
company_social_posts_cxo,
company_social_engagements
webhook_url
string<uri>

Webhook URL to receive radar updates and notifications. Optional — if omitted, the radar is poll-only and updates are available via GET /v1/updates.

Example:

"https://webhook.site/your-webhook-id"

departments
string[]

Optional array of department names to filter results. See API documentation for valid department values.

Example:
[
"Engineering",
"Product Management",
"Sales"
]
seniorities
string[]

Optional array of seniority levels to filter results. See API documentation for valid seniority values.

Example:
["Senior", "Manager", "Director"]
job_titles
string

A boolean expression for advanced job title filtering. Overrides other filters when provided.

Example:

"Senior Software Engineer"

custom_fields
object

Optional metadata to attach to this radar. Values must be strings only. Use for internal tracking like account_id, customer_id, or campaign_id. Returned with every webhook.

Example:
{
"campaign_id": "q4-2024-hiring",
"priority": "high",
"customer_id": "cust_123"
}
profile_url
string<uri>

LinkedIn company or school page URL. Must be exact format: https://www.linkedin.com/company/acme or https://www.linkedin.com/school/stanford-university

Example:

"https://www.linkedin.com/company/stripe"

Response

Radar created successfully

status
enum<string>
Available options:
success
code
enum<integer>
Available options:
201
message
string
data
object
timestamp
string<date-time>