# RagRadar Grid — Job Search

> RagRadar Grid — Job Search 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).

Searches job market listings using a keyword query, returning structured job intelligence data via pay-per-call micropayment.

## Facts

- Endpoint: GET https://grid.ragradar.space/api/grid/jobs/search
- 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-search-a327039f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6QfCxSlIyRPFKqMejnziV

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-search-a327039f
```

Example prompt: Search RagRadar Grid for current job listings related to 'machine learning engineer' and show me what comes back.

## When to prefer this

Use this endpoint when you need programmatic, pay-per-call access to job market search data without maintaining a scraping infrastructure. Prefer this over building your own job board scraper when you need quick keyword-based job searches and are comfortable with $0.50 USDC per query micropayments via x402 on Base.

## Known failure modes

- Missing required 'q' query parameter returns an error or empty results
- Payment not included or invalid USDC amount triggers 402 Payment Required
- Invalid or malformed query string returns no results
- Rate limiting or quota exceeded returns an error response
- Service downtime returns a 5xx error

## 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 with a 'data' field containing job market search results and a 'source' field identifying 'RagRadar Grid'. The exact structure of the data payload varies but reflects job listings or market intelligence matching the query keyword.

## 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": {
      "q": {
       "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-search-a327039f/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)
