# RagRadar Grid — Job Salary Intelligence

> RagRadar Grid — Job Salary Intelligence is a paid API for AI agents from grid.ragradar.space, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-14).

Returns salary data for a given job title from RagRadar's multi-source job market intelligence feed

## Facts

- Endpoint: GET https://grid.ragradar.space/api/grid/jobs/salary
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ragradar-grid-job-salary-intelligence-dbe36263
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Gz-V_Cx6fBjD4OdAXofE0

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 ragradar-grid-job-salary-intelligence-dbe36263
```

Example prompt: What's the typical salary for a data scientist right now — pull it from RagRadar Grid's job market feed.

## When to prefer this

Use this endpoint when you need quick, pay-per-call salary lookup for a specific job title without subscribing to a full compensation data platform. Ideal for one-off salary benchmarking queries in agent workflows where cost per call ($0.50 USDC) is acceptable and you need structured job market data fast.

## Known failure modes

- Missing required job_title parameter returns an error or empty result
- Unrecognized or misspelled job title may return empty or low-quality data
- Payment failure (insufficient USDC balance or x402 micropayment issue) blocks the request
- Rate limiting or quota exhaustion may return 429 or payment-related errors
- Ambiguous job titles may return generalized or unexpected salary ranges

## 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 and compensation data for the specified job title, sourced from RagRadar Grid's multi-source job market intelligence aggregation.

## 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": "RagRadar Grid"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ragradar-grid-job-salary-intelligence-dbe36263/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from grid.ragradar.space](https://www.zero.xyz/host/grid.ragradar.space/llms.txt)
