# RagRadar Grid — Job Details Lookup

> RagRadar Grid — Job Details Lookup 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-15).

Retrieves detailed information about a specific job listing by job ID from the RagRadar Grid job market intelligence API.

## Facts

- Endpoint: GET https://grid.ragradar.space/api/grid/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/ragradar-grid-job-details-lookup-5e764768
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mUA27iW6NOgc5VXkP_8cI

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-details-lookup-5e764768
```

Example prompt: Can you pull the full details for job listing ID job_8472910 from RagRadar Grid so I can see the position requirements, company info, and salary range?

## When to prefer this

Use this endpoint when you have a specific job ID and need full details about that listing from RagRadar Grid's paid job market intelligence feed. Prefer this over general job search endpoints when you already know the job identifier and want structured, enriched data about a single position rather than searching or browsing.

## Known failure modes

- Invalid or missing jobId returns an error or empty data object
- Job ID not found in the index returns a 404 or empty data response
- Payment not completed via x402/USDC results in 402 Payment Required before data is returned
- Rate limiting or quota exceeded may block repeated calls
- Malformed jobId path parameter may cause a 400 Bad Request

## 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 detailed job listing data (title, description, company, location, salary, requirements, etc.) for the specified jobId, sourced from RagRadar Grid's job market intelligence layer.

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ragradar-grid-job-details-lookup-5e764768/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)
