# reefjaco Job Fetcher

> reefjaco Job Fetcher is a paid API for AI agents from reefjaco.loujaxking1.workers.dev, paid per call via x402, $1/call, status unknown (last checked 2026-09-14).

Fetches a web page via the reefjaco x402-gated shop endpoint on Base USDC, returning job-related content from a given URL

## Facts

- Endpoint: GET https://reefjaco.loujaxking1.workers.dev/job
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/reefjaco-job-fetcher-6d22ef3b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8hr-pQQbcKT7nTgGU--O7

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 reefjaco-job-fetcher-6d22ef3b
```

Example prompt: Can you fetch the job listing page at https://example.com/jobs/software-engineer using the reefjaco shop and return its content?

## When to prefer this

Choose this endpoint when you need to fetch the content of a specific HTTPS URL and are willing to pay $1 USDC per call via the x402 protocol on Base. It is useful for one-off web page retrievals, especially job listing pages, in an agent workflow that already handles x402 micropayments.

## Known failure modes

- Invalid or non-HTTPS URL returns an error or empty response
- Target URL is unreachable or returns a non-200 status
- Payment failure via x402/Base USDC blocks the request
- Malformed input schema (missing required 'url' queryParam) causes rejection
- Target page blocks scraping or returns a CAPTCHA

## How this service works

reefjaco x402 shop on Base USDC

## Output

Returns the HTTP response body of the fetched URL — typically HTML or JSON content from the target page, which may include job listings, descriptions, or other web page content accessible at that address.

## 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",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "description": "HTTPS URL of the page"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/reefjaco-job-fetcher-6d22ef3b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from reefjaco.loujaxking1.workers.dev](https://www.zero.xyz/host/reefjaco.loujaxking1.workers.dev/llms.txt)
