# reefjaco Job: Summarise+Fetch Bundle

> reefjaco Job: Summarise+Fetch Bundle is a paid API for AI agents from molecular-packs-metadata-docs.trycloudflare.com, paid per call via x402, $1/call, status unknown (last checked 2026-09-14).

Fetches a web page and returns both extracted text and a summary in a single bundled response

## Facts

- Endpoint: GET https://molecular-packs-metadata-docs.trycloudflare.com/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-summarise-fetch-bundle-64feb0bc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tI674BuYwfnuZB808yKoK

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-summarise-fetch-bundle-64feb0bc
```

Example prompt: Can you grab the full text and an 8-sentence summary of https://example.com/article in one go?

## When to prefer this

Use this endpoint when you need both the full extracted text and a summary of a webpage and want to minimize API calls and cost by getting both in one bundled response. Prefer this over calling /fetch and /summarize separately when you anticipate needing both outputs. Not ideal if you only need one of the two outputs, as individual endpoints may be more cost-efficient.

## Known failure modes

- URL is not HTTPS — only HTTPS URLs are accepted
- Target page is behind authentication or a paywall — extracted text may be empty or partial
- Page returns non-200 status — call may fail or return empty content
- Page content exceeds extraction cap (~20k chars) — text will be truncated
- Cloudflare tunnel unavailability — endpoint may be temporarily unreachable
- Non-HTML content (PDFs, binaries) may not extract correctly

## How this service works

reefjaco GET /job Summarise+fetch bundle

## Output

A bundled response containing both the extracted text of the page (up to ~20k characters) and an approximately 8-sentence summary, delivered in a single call rather than requiring separate fetch and summarize requests.

## 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-summarise-fetch-bundle-64feb0bc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from molecular-packs-metadata-docs.trycloudflare.com](https://www.zero.xyz/host/molecular-packs-metadata-docs.trycloudflare.com/llms.txt)
