# Job Board Search (Arbetsformedlingen + Adzuna)

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

Search job listings across Arbetsformedlingen (Sweden) and Adzuna (multi-country), returning title, company, salary, and URL for each result.

## Facts

- Endpoint: GET https://api.strale.io/x402/job-board-search
- Price: $0.216001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-strale-io-6f4575ef
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_J3wETOXVWKqbnMliDAp7Y

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 api-strale-io-6f4575ef
```

Example prompt: Can you find me remote-only software engineering jobs related to Python — search both Swedish and international listings and show me the title, company, salary, and link for each result?

## When to prefer this

Use this endpoint when searching for Swedish job listings via Arbetsformedlingen or when needing multi-country job search via Adzuna, especially when you need structured output (title, company, salary, URL) in a single call without scraping job boards yourself.

## Known failure modes

- No results returned when query is too specific or no matching listings exist
- Missing salary field when the job posting does not include compensation info
- Location filter may not resolve for non-standard place names
- Remote-only filter may return mixed results if underlying sources do not tag remote status consistently
- Rate limiting or upstream API unavailability from Arbetsformedlingen or Adzuna

## How this service works

Search job listings on Arbetsformedlingen (Swedish) and Adzuna (multi-country). Returns title, company, salary, URL.

## Output

A list of job postings each containing job title, company name, salary (where available), and a direct URL to the listing, sourced from Arbetsformedlingen and/or Adzuna depending on the query.

## Example request

```json
{
 "query": "artificial intelligence",
 "location": "Sweden"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "query": {
   "type": "string"
  },
  "location": {
   "type": "string"
  },
  "remote_only": {
   "type": "boolean"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "jobs": {
  "type": "array"
 },
 "total_results": {
  "type": "number"
 },
 "sources_queried": {
  "type": "array"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-strale-io-6f4575ef/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)
