# free-work-by-id

> free-work-by-id is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Retrieve a single catalogued free/public-domain work by its Gutenberg number, LibriVox ID, or Internet Archive identifier, including all download links, rights status, last-verified date, and source page.

## Facts

- Endpoint: GET https://intel.rallylive.ca/library/work
- 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/free-work-by-id-0103ed68
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2ajX3BoQolSrQRCQUWQls

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 free-work-by-id-0103ed68
```

Example prompt: Can you pull up all the download links and rights status for Gutenberg book 1342 — I want to know what formats are available and when the links were last verified?

## When to prefer this

Use this endpoint when you already have a specific Gutenberg number, LibriVox ID, or Internet Archive identifier and need the full, verified download link set with rights metadata — rather than running a broader search. It is the right choice after a search step returns an ID, or when a user already knows the exact work they want.

## Known failure modes

- Unknown or invalid ID returns no results or a 404-style error
- Misformatted ID prefix (e.g. missing 'gutenberg:' namespace) may fail to resolve
- Stale or broken download links if the last-verified date is old
- Paid endpoint — insufficient USDC balance causes payment failure before lookup
- Works removed from source catalogues may return empty link sets

## How this service works

One catalogued work by id with every download link and its rights status, last-verified date and source page. Use after a search, or with a known Gutenberg number (gutenberg:1342), LibriVox id (librivox:47) or Internet Archive identifier. $0.01 per lookup.

## Output

A structured record for the requested work including: all available download links with their formats (epub, Kindle, mp3, etc.), the rights/license status of the work, the date the links were last verified, and the URL of the original source page (Gutenberg, LibriVox, or Internet Archive).

## 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": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/free-work-by-id-0103ed68/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from intel.rallylive.ca](https://www.zero.xyz/host/intel.rallylive.ca/llms.txt)
