What is TAMradar?
TAMradar monitors companies, contacts, and industries by tracking their online activity and sending real-time notifications when something changes.Core Concepts
- Radars — A monitor you configure. You define what to track (a company, a person, or an industry keyword) and what signal to look for (job openings, new hires, funding rounds, etc.).
- Webhooks — How you receive events. TAMradar sends a POST request to your URL when a radar fires.
- Polling — Alternative to webhooks. Use
GET /v1/updatesto pull events on your schedule. - Balance — Radars cost balance to create and run. Check yours before creating radars.
Radar Types
TAMradar has three categories of radars, each with its own creation endpoint:| Category | Endpoint | Tracks |
|---|---|---|
| Company | POST /v1/radars/companies | A specific company |
| Contact | POST /v1/radars/contacts | A specific person |
| Industry | POST /v1/radars/industry | A keyword or theme |
company_job_openings, company_new_hires, company_promotions, company_reviews, company_mentions, company_social_posts, company_social_posts_cxo, company_social_engagements
Contact radar types: contact_job_changes, contact_social_posts, contact_social_engagements
Industry radar types: industry_mentions, industry_funding_rounds, industry_new_companies, industry_job_openings
Step 1: Authentication
Every request requires your API key in thex-api-key header:
401 means your key is missing or invalid. A 200 means you’re authenticated.
Step 2: Check Your Balance
Before creating radars, confirm you have sufficient balance:?month=YYYY-MM to get stats for a specific month (defaults to current UTC month).
Step 3: Create a Radar
webhook_urlis optional. Omit it to create a poll-only radar. Updates are available viaGET /v1/updates. Add it when you want TAMradar to push events to your server in real-time.
Company Radar
Monitor a company for job openings, with optional department and seniority filters:company_job_openings, company_new_hires, company_promotions, company_social_posts_cxo
Valid departments: Engineering, Sales, Marketing, Finance, Human Resources, Product Management, Operations, Customer Success, Design, Legal, Information Technology, Research, Accounting, Administrative, Business Development, Consulting, Education, Manufacturing, Media and Communication, Project Management, Purchasing, Quality Assurance, Real Estate, Support
Valid seniorities: Owner, CXO, Vice President, Director, Manager, Senior, Entry, Training, Partner
Response (201):
radar_id. You’ll need it later.
Contact Radar
Track a specific person’s job changes or social activity:contact_job_changes— requiresdomain+ at least one of:profile_url,email,full_namecontact_social_posts/contact_social_engagements— requiresprofile_url(LinkedIn, X, or Twitter only)
Industry Radar
Track a keyword or theme across companies and news:industry_mentionsandindustry_job_openings—keywordis required (min 3 chars)industry_funding_roundsandindustry_new_companies— nokeywordneededcountries— optional, max 5 country codes
Step 4: List and Inspect Radars
| Parameter | Type | Default | Description |
|---|---|---|---|
limit | number | 50 | Max 1000 |
radar_status | active | inactive | — | Filter by status |
radar_type | string | — | Single radar type value |
radar_id | string | — | Comma-separated IDs, max 50 |
departments, seniorities, job_titles) and identifier fields (profile_url, email, full_name, keyword) are returned flat at the top level of each radar object. They are only present when set.
Step 5: Receive Events
When a radar fires, TAMradar POSTs an event to yourwebhook_url.
Webhook Payload Structure
All webhook events follow this envelope:data— radar context (always present, same fields regardless of type)content— the actual finding (structure varies byradar_type)
Your Webhook Must
- Accept
POSTwith a JSON body - Return any
2xxstatus code within a reasonable timeout - Handle duplicates — use
update_idas an idempotency key
Polling Alternative
If you prefer pull over push, useGET /v1/updates:
radar_id (comma-sep, max 10), radar_type (comma-sep), domain (comma-sep, max 10), since (ISO 8601), cursor, limit (1–100, default 25), update_type (radar_finding | radar_failure, default: radar_finding)
Response shape:
next_cursor as cursor in the next request to paginate. has_more: false means you’ve reached the end.
Step 6: Bulk Create Radars
Submit a bulk request for asynchronous processing (up to 1000 items):webhook_urlis required at the envelope level for async bulk- Items can mix company, contact, and industry types
- Max 1000 items, max 1MB request body
- Item-level validation and creation happen asynchronously after submission
202 Accepted):
bulk_id, then poll for status:
status: "processing"while items are still runningstatus: "completed"when all items are terminal- Per-item outcomes in
radars[]withitem_indexmapping back to the input order radars[].update_idas the per-item correlation key (radar_created/radar_failure)
- Use top-level
update_idonbulk_completedto deduplicate the batch event itself - Use
radars[].update_idinsidebulk_completedto map each item back to its individual item event
Step 7: Deactivate a Radar
Error Responses
All errors follow the same structure:| Code | Meaning | Retryable |
|---|---|---|
| 400 | Validation error | No |
| 401 | Missing or invalid API key | No |
| 402 | Insufficient balance | Yes (top up first) |
| 404 | Radar not found | No |
| 409 | Radar already exists | No |
| 429 | Rate limited | Yes (back off) |
| 500 | Internal server error | Yes |
| 503 | Database unavailable | Yes |
error_id when contacting support. It traces the exact request in our logs.
Key Constraints
| Rule | Limit |
|---|---|
| Webhook URL | Optional. Max 2048 chars, must be HTTP/HTTPS if provided |
| Domain | Standard format, max 253 chars |
| Custom fields | Max 20 keys; key ≤ 50 chars; value ≤ 500 chars |
countries (industry) | Max 5 |
keyword (industry) | Min 3 chars |
| Bulk size | Max 1000 items, 1MB body |
List limit | Max 1000 |
List radar_id filter | Max 50 IDs |