# Strale Job Board Search

> Strale Job Board Search is a paid API for AI agents from api.strale.io, paid per call via x402, $0.216/call, status unknown (last checked 2026-09-14).

Search job listings across multiple job boards by keyword query, location, and remote filter

## Facts

- Endpoint: GET https://api.strale.io/x402/v2/job-board-search
- Price: $0.216/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-job-board-search-12f2d641
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QtDcyWPmwDBg5NEsnmVat

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 strale-job-board-search-12f2d641
```

Example prompt: Search for remote-only software engineer jobs with 'Python backend' in the query and return what's currently available across job boards.

## When to prefer this

Choose this endpoint when an agent needs to programmatically search live job listings across multiple boards with a verifiable audit trail. It is ideal for job-hunting agents, recruiting pipelines, or labor market research tools that need keyword + location + remote filtering in a single call with micropayment-friendly pricing.

## Known failure modes

- Missing required 'query' parameter returns a 400 validation error
- No results found for overly specific query/location combination
- External job board data sources temporarily unavailable causing partial or empty results
- Invalid method type (only GET/HEAD/DELETE supported) returns a 405 error

## How this service works

The trust layer for AI agents — 250+ independently tested data capabilities across 27 countries. Execute capabilities via REST, MCP, A2A, or x402 micropayments. Every call returns an audit record with cryptographic chain hashing.

## Output

A list of job postings matching the query, location, and remote filter, sourced from multiple job boards. Each result typically includes job title, employer, location, and a description or link. The response also includes a cryptographic audit record per Strale's trust infrastructure.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "query"
     ],
     "properties": {
      "query": {
       "type": "string"
      },
      "location": {
       "type": "string"
      },
      "remote_only": {
       "type": "boolean"
      },
      "country_code": {
       "type": "string",
       "description": "se (Sweden, default), fr (France) or us (US federal jobs). For fr, location is a department number (75) or 5-digit INSEE commune code; for us, a place name such as \"Denver, Colorado\"."
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-job-board-search-12f2d641/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
