# ScopeAPI Job Search

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

Search job market listings using a keyword query, returning structured job intelligence data paid per call via USDC micropayments.

## Facts

- Endpoint: GET https://scopeapipay.vercel.app/api/jobs/search
- Price: $0.5/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-38d8c2ce
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_81-q6anMkgisx4GkpcuNB

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-38d8c2ce
```

Example prompt: Search ScopeAPI's job market endpoint for current listings related to 'machine learning engineer' and show me what comes back.

## When to prefer this

Choose this endpoint when you need on-demand job market intelligence paid per call without a subscription, especially when integrating with x402 micropayment workflows on Base/USDC. Best for agents that need occasional job search lookups rather than bulk or continuous monitoring.

## Known failure modes

- Missing required 'q' query parameter returns an error or empty result
- Payment not processed (402 Payment Required) if USDC micropayment via x402 fails
- Empty results if query keyword matches no indexed job listings
- Rate limiting or timeout if the upstream job data source is unavailable
- Malformed query string may return unexpected or null results

## 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 with a 'data' field containing job market results matching the query keyword, and a 'source' field confirming 'ScopeAPI'. The specific job fields (titles, companies, locations, descriptions) are dynamically structured within the data object.

## 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-38d8c2ce/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)
