# ScopeAPI Job Search Filters

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

Retrieves available search filters for job market queries, enabling discovery of filter options like location, industry, job type, and experience level.

## Facts

- Endpoint: GET https://scopeapipay.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-e072c935
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_i98t139JoKsEpwu8RUHzX

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-e072c935
```

Example prompt: What filters are available for searching software engineering jobs on ScopeAPI's job market data — I want to know the categories, locations, and job types I can filter on before running my search.

## When to prefer this

Use this endpoint when you need to discover what filter options are available before executing a targeted job search, or when building a UI/workflow that needs to enumerate valid job search parameters. Prefer this over a direct job search endpoint when you don't yet know what filter values are valid or available.

## Known failure modes

- Invalid or missing query parameter returns empty or generic filter set
- Payment not processed via x402/USDC results in 402 Payment Required response
- Network timeout or Vercel cold start causes delayed or failed response
- Upstream job data source unavailable returns 503 or empty data object
- Malformed query string parameter returns 400 Bad Request

## 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

A JSON object containing available search filter options for job market queries, such as job types, industries, experience levels, locations, and other facet categories that can be used to refine subsequent job searches.

## 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-e072c935/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scopeapipay.vercel.app](https://www.zero.xyz/host/scopeapipay.vercel.app/llms.txt)
