# Qonoro Hiring Signals – Open Job Postings Lookup

> Qonoro Hiring Signals – Open Job Postings Lookup is a paid API for AI agents from api.qonoro.ai, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Given a company name (and optional domain hint), returns all currently open job postings normalized into structured JSON with title, department, location, posted date, and URL.

## Facts

- Endpoint: POST https://api.qonoro.ai/v1/hiring-signals/find
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/qonoro-hiring-signals-open-job-postings-lookup-49d29b30
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OTgCW9HovCSBkkXMXtl6L

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 qonoro-hiring-signals-open-job-postings-lookup-49d29b30 -d '<json body>'
```

Example prompt: Pull up all the open job postings at Stripe right now — I want to see each role's title, department, location, and a link to apply.

## When to prefer this

Choose this endpoint when you need a normalized, structured snapshot of a specific company's open roles sourced directly from their ATS, especially in agentic workflows requiring machine-readable hiring data (title, department, location, date, URL) without scraping job boards yourself. Prefer it over generic web search when you need clean JSON output and consistent schema across companies. It is particularly suited for sales intelligence, competitive talent monitoring, or job-seeker research agents that need to process or filter job listings programmatically.

## Known failure modes

- Company name is ambiguous or unknown — board_resolved returns false, job_postings array may be empty
- No public ATS or job board found for the company — returns zero results with a quality warning
- ATS source is behind a login wall or blocks scraping — partial or empty results returned
- Domain hint provided does not match the company — may reduce match accuracy or return wrong company's postings
- Rate limiting or upstream ATS downtime — may return stale cached data or an error

## How this service works

Given a company name, returns the company's currently open job postings, normalized into a single structured JSON response (title, department, location, posted date, URL).

## Output

Returns a structured JSON object containing: the resolved company name and domain, the ATS source used, a boolean indicating whether the job board was resolved and whether the result was cache-hit, the total number of open roles, an array of job postings each with title, department, location, posted date, ATS source, and URL, plus any quality warnings and response time in milliseconds.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "domain": {
   "type": "string",
   "description": "Optional company domain hint (e.g. 'stripe.com') to improve match accuracy."
  },
  "buyer_region": {
   "type": "string",
   "description": "Optional privacy-safe buyer region for operational reporting."
  },
  "company_name": {
   "type": "string",
   "description": "Company name to look up open job postings for (e.g. 'Stripe')."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/qonoro-hiring-signals-open-job-postings-lookup-49d29b30/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.qonoro.ai](https://www.zero.xyz/host/api.qonoro.ai/llms.txt)
