# PDF Link Finder Bulk

> PDF Link Finder Bulk is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Extracts all PDF document links from up to 20 URLs concurrently in a single call, returning results in input order with per-item error reporting.

## Facts

- Endpoint: GET https://intel.rallylive.ca/bulk/site/pdf-links
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pdf-link-finder-bulk-3f9b08e1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_F5NlGs5L7yTLu0mRHDCr7

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-link-finder-bulk-3f9b08e1
```

Example prompt: Can you scan all these 15 company pages at once and pull out every PDF link you find on each one? I need the results grouped by URL so I know which PDFs came from which page.

## When to prefer this

Choose this endpoint when you already have a list of URLs (up to 20) and need PDF links from all of them efficiently in a single API call. It is preferable to calling the single /site/pdf-links endpoint in a loop because it processes all URLs concurrently, returns results in input order, and provides per-item error reporting so partial failures do not block the entire batch.

## Known failure modes

- URL is unreachable or returns a non-200 status — per-item error field is populated
- Page has no PDF links — item returns an empty list without error
- More than 20 URLs submitted — request rejected or truncated
- URL points to a non-HTML resource — parsing may fail with per-item error
- Network timeout on one or more URLs — those items marked as failures while others succeed

## How this service works

Bulk pdf link finder: up to 20 urls in one call, processed concurrently, results returned in input order with a per-item error field and a count of failures. Same answer per item as the single /site/pdf-links endpoint (Document link finder). Batch enrichment for agents that hold a list. $0.01 per batch.

## Output

An ordered array of results matching the input URL list. Each item contains the discovered PDF links found on that page, a per-item error field indicating any fetch or parse failures, and a summary count of how many items failed across the batch.

## 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-link-finder-bulk-3f9b08e1/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)
