# ScopeAPI Job Search

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

Search job market listings using a query string, returning structured job intelligence data via pay-per-call REST API.

## Facts

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

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

Example prompt: Search ScopeAPI's job market intelligence for 'senior machine learning engineer remote' and show me what listings or job data come back.

## When to prefer this

Choose this endpoint when you need to search live job market intelligence programmatically and are willing to pay $0.50 USDC per call via x402 micropayments on Base. Useful for agents that need structured job data without scraping, especially alongside Amazon and Facebook data from the same ScopeAPI suite.

## Known failure modes

- Missing or invalid `q` query parameter returns empty or error response
- Payment not fulfilled (402 Not Paid) if x402 USDC micropayment on Base is not completed
- Rate limiting or quota errors if the service is overloaded
- Malformed query string causes unexpected empty results
- Service downtime on Vercel deployment returns 5xx errors

## 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 with a `data` field containing job market search results and a `source` field confirming 'ScopeAPI'. The shape of `data` varies but is expected to include structured job intelligence such as listings, titles, companies, or market signals matching the query.

## 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-7a6bb642/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)
