# toolcall.click Job Search

> toolcall.click Job Search is a paid API for AI agents from toolcall.click, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Fetches live job postings from company ATS boards (Greenhouse, Lever, Ashby, SmartRecruiters) or searches remote-heavy job APIs by keyword, returning structured JSON with title, location, department, type, and apply URL.

## Facts

- Endpoint: GET https://toolcall.click/t/jobs/search
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/toolcall-click-job-search-cd279067
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_a3rHm4o_-6xLA46XGtccR

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 toolcall-click-job-search-cd279067
```

Example prompt: What engineering jobs does Stripe have open right now? Also search for any remote 'machine learning' roles and limit results to 20.

## When to prefer this

Use this endpoint when you need live, real-time job postings directly from a company's official ATS (Greenhouse, Lever, Ashby, SmartRecruiters) without scraping, or when you want keyword-based remote job searches via Remotive and Arbeitnow. Prefer this over general web search for structured, machine-readable job data with consistent fields like title, location, department, and apply URL. Ideal for agents building job trackers, career assistants, or automated application workflows.

## Known failure modes

- Company not found on any supported ATS board — returns empty results or error
- No jobs matching the keyword query — returns empty array
- Invalid or missing required query parameters — returns 400-style error
- ATS board temporarily unavailable — may return partial or stale results
- Payment not processed via x402 — request rejected before execution

## How this service works

Live job postings without scraping: company= returns an employer's current openings straight from their official ATS board (Greenhouse, Lever, Ashby, SmartRecruiters) with title, location, department, type and apply URL; query= searches remote-heavy job APIs (Remotive, Arbeitnow) by keyword. Optional location= filter. JSON response. $0.02 USDC per call, pay via x402, no API key.

## Output

A JSON array of job postings, each containing the job title, location, department, employment type (full-time, part-time, contract), and a direct apply URL. Results come directly from the employer's official ATS board when a company is specified, or from remote-focused job APIs (Remotive, Arbeitnow) when a keyword query is used.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer",
       "maximum": 50,
       "minimum": 1
      },
      "query": {
       "type": "string",
       "description": "Keyword search across job APIs, alternative to company"
      },
      "company": {
       "type": "string",
       "description": "Employer name; reads their public ATS job board"
      },
      "location": {
       "type": "string",
       "description": "Location filter substring, optional"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "jobs": [
   {
    "url": "https://stripe.com/jobs/...",
    "title": "Backend Engineer",
    "source": "greenhouse",
    "company": "stripe",
    "location": "Remote, US",
    "postedAt": "2026-07-01"
   }
  ],
  "mode": "company",
  "total": 120
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/toolcall-click-job-search-cd279067/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from toolcall.click](https://www.zero.xyz/host/toolcall.click/llms.txt)
