# ScopeAPI Job Salary Lookup

> ScopeAPI Job Salary Lookup 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).

Looks up salary data for a given job title from the job market intelligence dataset

## Facts

- Endpoint: GET https://scopepay.vercel.app/api/jobs/salary
- 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-salary-lookup-220f3f07
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yX1glyHzFxxOZg83TAW9B

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-salary-lookup-220f3f07
```

Example prompt: What's the typical salary for a data scientist? Use ScopeAPI's job salary endpoint to look it up.

## When to prefer this

Use this endpoint when you need quick salary benchmarking data for a specific job title without building your own compensation dataset. It is particularly useful for AI agents performing career guidance, HR analytics, or recruiting intelligence workflows that require pay-per-call access without a subscription commitment.

## Known failure modes

- Missing required 'job_title' query parameter may return empty or error response
- Unknown or very niche job titles may return sparse or empty data objects
- Payment failure via x402/USDC micropayment may block the request
- Rate limiting or quota exhaustion may prevent successful calls
- Network or server errors from the Vercel deployment may cause 5xx responses

## 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 salary data for the queried job title, sourced from ScopeAPI's job market intelligence dataset. The response includes a 'data' object with compensation figures and a 'source' field identifying ScopeAPI.

## 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": {
      "job_title": {
       "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-salary-lookup-220f3f07/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)
