# Company Hiring Radar

> Company Hiring Radar is a paid API for AI agents from api.timzinin.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns real-time job posting data and hiring signals for a given company, including open roles, hiring momentum, function breakdown, and keyword-matched positions

## Facts

- Endpoint: POST https://api.timzinin.com/api/company-hiring-radar
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/company-hiring-radar-da1bdea5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FYEO_ncCybnpL_tPP62zs

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability company-hiring-radar-da1bdea5 -d '<json body>'
```

Example prompt: Can you pull up the hiring radar for Ramp and tell me how aggressively they're hiring right now — especially how many engineering and sales roles they have open, and whether most of them are remote?

## When to prefer this

Choose this endpoint when you need structured, real-time hiring intelligence about a specific company — including role-level detail, department breakdowns, and hiring momentum signals — rather than just a list of job postings. It is particularly well-suited for sales prospecting (identifying companies in growth mode), investor due diligence, competitive analysis, or job seekers wanting to understand a company's hiring priorities at a glance. Prefer it over generic job search APIs when you need aggregated signals (remote share, momentum label, new roles count) rather than raw listings.

## Known failure modes

- Company token/slug not found — returns found: false with empty roles
- Job board source unavailable or rate-limited — may return stale or partial data
- No roles matching provided keywords — matchedRoles array empty but full role list still returned
- Invalid request body — HTTP 400 with error detail
- Payment not settled — HTTP 402 if x402 payment header missing or insufficient

## How this service works

Pay-per-call data & tool APIs

## Output

A JSON object containing: a results array with one entry per company, including all open roles (URL, title, department, function, location, remote flag, posted date), hiring signals (total open roles, hiring momentum label, new roles in last 30 days, remote share percentage, hiring counts by function), a plain-text summary, breakdown by function and by location, and a list of keyword-matched roles with the matched keywords. Meta includes run time in ms and item count.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "keywords": {
   "$ref": "#/definitions/bazaarShared0"
  },
  "companies": {
   "$ref": "#/definitions/bazaarShared0"
  },
  "newWindowDays": {
   "type": "integer",
   "maximum": 365,
   "minimum": 1
  },
  "maxConcurrency": {
   "type": "integer",
   "maximum": 30,
   "minimum": 1
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "meta": {
   "run_ms": 1200,
   "settled": true,
   "item_count": 1
  },
  "results": [
   {
    "found": true,
    "roles": [
     {
      "url": "https://jobs.ashbyhq.com/ramp/34413f8d-26bf-4bbc-8ade-eb309a0e2245",
      "isNew": false,
      "title": "Security Engineer, Cloud",
      "remote": true,
      "function": "engineering",
      "location": "New York, NY (HQ)",
      "postedAt": "2026-04-07T17:12:35.753Z",
      "department": "Engineering"
     },
     "… 117 more roles, same shape"
    ],
    "token": "ramp",
    "source": "ashby:ramp",
    "signals": {
     "remoteShare": 0.93,
     "salesHiring": 46,
     "productHiring": 3,
     "hiringMomentum": "aggressive hiring",
     "totalOpenRoles": 118,
     "marketingHiring": 16,
     "newRolesLast30d": 28,
     "leadershipHiring": 3,
     "engineeringHiring": 30
    },
    "summary": "ramp (ashby) — 118 open roles, aggressive hiring. Top: sales 46, engineering 30, marketing 16. 93% remote, 63 match your keywords, 28 new in last 30d.",
    "boardUrl": "https://api.ashbyhq.com/posting-api/job-board/ramp",
    "provider": "ashby",
    "checkedAt": "2026-07-26T13:56:29.833Z",
    "byFunction": {
     "data": 1,
     "legal": 2,
     "other": 2,
     "sales": 46,
     "people": 4,
     "finance": 5,
     "product": 3,
     "marketing": 16,
     "leadership": 3,
     "operations": 6,
     "engineering": 30
    },
    "byLocation": {
     "London": 9,
     "Remote (US)": 9,
     "Remote (Canada)": 1,
     "Remote (Sweden)": 1,
     "New York, NY (HQ)": 90,
     "San Francisco, CA": 7,
     "Remote (Buenos Aires, Argentina)": 1
    },
    "matchedRoles": [
     {
      "url": "https://jobs.ashbyhq.com/ramp/ffc09fc0-7785-48db-a203-a148f62534be",
      "isNew": true,
      "title": "GTM Systems Engineer, Salesforce",
      "function": "engineering",
      "location": "New York, NY (HQ)",
      "postedAt": "2026-07-11T20:22:52.649Z",
      "department": "Engineering"
     },
     {
      "url": "https://jobs.ashbyhq.com/ramp/b55447c0-4adc-42eb-9ca2-f88fd44e0e5b",
      "isNew": false,
      "title": "Partner Development Representative | Accounting",
      "function": "sales",
      "location": "New York, NY (HQ)",
      "postedAt": "2025-07-25T17:14:33.373Z",
      "department": "Sales"
     },
     "… 61 more matched roles, same shape"
    ],
    "matchedKeywords": [
     "sales",
     "marketing"
    ]
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/company-hiring-radar-da1bdea5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.timzinin.com](https://www.zero.xyz/host/api.timzinin.com/llms.txt)
