# ScopeAPI Job Salary Lookup

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

Returns salary data for a given job title using the ScopeAPI job market intelligence platform

## Facts

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

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-8fb6643c
```

Example prompt: What is the average 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, pay-per-call salary benchmarking for a specific job title without a subscription. It is ideal for agents needing on-demand compensation data as part of hiring, career planning, or market research workflows, especially when integrated with x402 micropayment infrastructure on Base/USDC.

## Known failure modes

- Missing required job_title query parameter returns an error
- Unrecognized or misspelled job title may return empty or null data
- Payment failure via x402/USDC micropayment returns 402 Payment Required before data is delivered
- Rate limiting or quota exhaustion may result in 429 errors
- Network or server errors on the Vercel deployment may cause 500 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

A JSON object containing salary data for the specified job title, sourced from ScopeAPI's job market intelligence database. The response includes a 'data' field with compensation details and a 'source' field identifying ScopeAPI as the provider.

## 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-8fb6643c/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)
