# ScopeAPI Job Search Filters

> ScopeAPI Job Search Filters is a paid API for AI agents from scopepay.vercel.app, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-15).

Retrieves available search filters for job market intelligence queries, such as job categories, locations, experience levels, and other facets.

## Facts

- Endpoint: GET https://scopepay.vercel.app/api/jobs/search-filters
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scopeapi-job-search-filters-94341394
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ktrb1p5uJWleWVjUqrpK9

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 scopeapi-job-search-filters-94341394
```

Example prompt: What job search filters are available on ScopeAPI — like categories, locations, or experience levels — maybe filtered to 'software engineer' roles?

## When to prefer this

Use this endpoint when you need to discover what filter dimensions and facet values are available before constructing a more specific job search query. Useful as a first step in a multi-call job market research workflow to understand what categories, locations, or job types can be searched. Prefer this over a direct job search when you don't yet know what filter values are valid.

## Known failure modes

- Missing or invalid query parameter returns empty or generic filter set
- Payment not processed via x402 results in 402 Payment Required response
- Rate limiting or quota exceeded returns 429 error
- Service unavailable on Vercel hosting returns 503
- Malformed request returns 400 Bad Request
- No filters found for a highly specific query returns empty data object

## How this service works

37 paid REST endpoints: Facebook social & ads intelligence, Amazon e-commerce data, job market intelligence. Pay per call via x402 micropayments (USDC on Base).

## Output

Returns a JSON object containing available filter options and facets for job search queries, such as job categories, locations, experience levels, employment types, and other refinement parameters sourced from ScopeAPI's job market intelligence data.

## 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": {
      "q": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {},
  "source": "ScopeAPI"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scopeapi-job-search-filters-94341394/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scopepay.vercel.app](https://www.zero.xyz/host/scopepay.vercel.app/llms.txt)
