# PDF & Document Link Finder

> PDF & Document Link Finder 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).

Extracts all downloadable file links (PDF, Word, Excel, PowerPoint, CSV, ZIP, etc.) from a webpage, with anchor text and file-type counts.

## Facts

- Endpoint: GET https://intel.rallylive.ca/site/pdf-links
- 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/pdf-document-link-finder-dd6d4df8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2wQ-25Mt4ATToo_lqmcHj

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 pdf-document-link-finder-dd6d4df8
```

Example prompt: Can you scan https://www.sec.gov/cgi-bin/browse-edgar and pull out every PDF, Excel, and CSV file linked on that page, along with the anchor text for each link and a count of how many files of each type there are?

## When to prefer this

Use this endpoint when you need to quickly inventory all downloadable documents (reports, datasets, spreadsheets) linked from a specific webpage without writing a custom scraper. Ideal for research automation, competitive intelligence gathering, and data pipeline bootstrapping where the starting point is a known URL. Prefer this over general web scraping tools when the specific goal is document/file link enumeration with file-type classification.

## Known failure modes

- Page returns no downloadable file links — empty result set
- URL is inaccessible or returns a non-200 HTTP status
- Page uses JavaScript-rendered links that are not visible in static HTML — links may be missed
- Rate limiting or blocking by the target site
- Malformed or invalid URL input causes request failure
- Page contains only HTML anchor links with no downloadable file extensions

## How this service works

Document link finder: every link on a page to PDF, Word, Excel, PowerPoint, CSV, ZIP or other downloadable files, with anchor text and file type counts. Find reports, whitepapers and datasets fast. $0.01 per page.

## Output

A structured list of all downloadable file links found on the page, each with its URL, anchor text, and detected file type (PDF, DOCX, XLSX, PPTX, CSV, ZIP, etc.), plus aggregate counts per file type.

## 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/pdf-document-link-finder-dd6d4df8/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)
