# The Stall Job Search

> The Stall Job Search is a paid API for AI agents from the-stall.intuitek.ai, paid per call via x402, $1.5/call, status unknown (last checked 2026-09-14).

Search for job listings by keyword (role, skill, or technology) with optional geographic filtering, returning up to 10 results.

## Facts

- Endpoint: GET https://the-stall.intuitek.ai/cap/job-search
- Price: $1.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/the-stall-job-search-95e9d234
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_S5La7HMwSeroX-s_K10jT

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 the-stall-job-search-95e9d234
```

Example prompt: Find me 5 software engineer job listings in the USA — I'm especially interested in roles involving React or TypeScript.

## When to prefer this

Use this endpoint when an agent needs to surface real job listings by role, skill, or technology keyword, optionally narrowed to a specific country or worldwide, without requiring account registration or API keys — paying only $1.50 USDC per call via x402 on Base mainnet.

## Known failure modes

- Missing required 'tag' parameter returns a validation error
- Invalid or unsupported geographic string may return no results or an error
- Count out of range (less than 1 or greater than 10) returns a validation error
- Payment failure (insufficient USDC on Base mainnet) returns HTTP 402
- No matching jobs for the given tag/geo combination returns an empty result set

## How this service works

Domain-agnostic x402 capability chassis by IntuiTek¹. 210 AI-callable data services — pay USDC on Base mainnet. No accounts or API keys required.

## Output

A list of up to 10 job listings matching the keyword and optional geographic filter, likely including job titles, company names, locations, and relevant details for each posting.

## 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",
     "required": [],
     "properties": {
      "geo": {
       "type": "string",
       "maxLength": 60,
       "description": "Geographic filter — country name or 'Anywhere' for worldwide (e.g. 'USA', 'UK', 'Canada', 'Anywhere'). Optional."
      },
      "tag": {
       "type": "string",
       "maxLength": 100,
       "description": "Search keyword — role title, skill, or technology (e.g. 'software engineer', 'react', 'data analyst'). Required."
      },
      "count": {
       "type": "integer",
       "default": 5,
       "maximum": 10,
       "minimum": 1,
       "description": "Number of results to return (1–10, default 5)."
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/the-stall-job-search-95e9d234/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from the-stall.intuitek.ai](https://www.zero.xyz/host/the-stall.intuitek.ai/llms.txt)
