# ScopeAPI Job Details Lookup

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

Fetches detailed information about a specific job listing by job ID from the job market intelligence platform

## Facts

- Endpoint: GET https://scopepay.vercel.app/api/jobs/details/%7BjobId%7D
- 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-details-lookup-d8b5e695
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Wk_Uu6yExDtCRMs01uQ-2

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-details-lookup-d8b5e695
```

Example prompt: Can you pull the full details for job ID 'j_8472930' — I want to see the title, company, salary range, location, and requirements for that listing.

## When to prefer this

Use this endpoint when you have a specific job ID and need full structured details about that job listing. Ideal for agents enriching job data pipelines, comparing job requirements, or presenting job details to users after a prior job search step. Prefer this over search endpoints when the job ID is already known. Pay-per-call x402 micropayment model suits low-frequency lookups without subscription overhead.

## Known failure modes

- Invalid or non-existent jobId returns empty data or 404-style error
- Payment failure via x402 micropayment results in 402 Payment Required response
- Malformed jobId path parameter may return a parsing error
- Rate limiting or upstream data source unavailability may cause 503 or timeout
- Job listing may have been removed, returning empty or null data object

## 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 job listing details sourced from ScopeAPI, including fields such as job title, company name, location, salary, requirements, and description. The response wraps data in a top-level 'data' key with a 'source' field set to '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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "jobId": {
       "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-details-lookup-d8b5e695/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)
