# free-works-added-recently

> free-works-added-recently 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-13).

Returns the 25 most recently added records (books, audiobooks, films, texts, or any type) from the free, legally downloadable works catalogue, with timestamps and download links.

## Facts

- Endpoint: GET https://intel.rallylive.ca/library/new
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/free-works-added-recently-6d083dc0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7sutgJ1nKzom3Q0d7A-vX

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-works-added-recently-6d083dc0
```

Example prompt: Show me the 25 most recently added free books in the catalogue so I can see what new public-domain titles just became available for download.

## When to prefer this

Use this endpoint when you need to monitor catalogue growth over time or discover the very latest additions to the free works library without specifying a search query. Ideal for building daily digests, RSS-like feeds, or tracking how the catalogue expands. Prefer free-works-search when you want to search by keyword, or free-works-by-subject for genre/subject browsing.

## Known failure modes

- No type filter provided may default to returning all types or return an error
- Catalogue may have brief downtime resulting in empty or error responses
- Payment failure via x402 protocol causes request to be rejected
- Rate limiting if called more frequently than intended (daily cadence recommended)

## How this service works

What was added to the free-works catalogue most recently: the newest 25 records of a kind (book, audiobook, film, text or any) with when they were added and download links. Call daily to follow the catalogue as it grows by tens of thousands of records a day. $0.01 per call.

## Output

A list of the 25 most recently added catalogue entries, each including the title, content type (book, audiobook, film, text), the timestamp when it was added to the catalogue, and download links for the work.

## 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-works-added-recently-6d083dc0/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)
