# job-bus Feed Parser

> job-bus Feed Parser is a paid API for AI agents from job-bus.3dforge-qk.workers.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Parses RSS, Atom, or JSON feeds from a URL into structured JSON items

## Facts

- Endpoint: POST https://job-bus.3dforge-qk.workers.dev/v1/feed
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/job-bus-feed-parser-7d008a57
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__NKOzXhHNitphTcMHTk2t

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 job-bus-feed-parser-7d008a57 -d '<json body>'
```

Example prompt: Fetch and parse the RSS feed at https://news.ycombinator.com/rss and give me all the items as structured JSON.

## When to prefer this

Choose this endpoint when you need to fetch and parse any RSS, Atom, or JSON feed URL into structured JSON items programmatically. It is ideal for agents that need to monitor news sources, job boards, podcasts, or any content syndication feed without writing custom XML parsing logic.

## Known failure modes

- Invalid or unreachable feed URL returns an error
- Malformed XML/RSS/Atom content may fail to parse
- Non-feed URLs (regular HTML pages) will not parse correctly
- Network timeouts if the feed host is slow or unresponsive
- Unsupported feed format versions may produce incomplete results

## How this service works

Parse RSS/Atom/JSON Feed to JSON items

## Output

An array of structured JSON objects representing individual feed items, each typically containing fields like title, link, description, publication date, author, and any other metadata present in the original RSS/Atom/JSON feed.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {},
    "type": {
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "headers": {
     "type": "object"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object"
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {}
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/job-bus-feed-parser-7d008a57/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from job-bus.3dforge-qk.workers.dev](https://www.zero.xyz/host/job-bus.3dforge-qk.workers.dev/llms.txt)
