# Oromi PDF Extract

> Oromi PDF Extract is a paid API for AI agents from agents.oromi.co.uk, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Extracts text content from a PDF document, returning the full text, page count, and word count

## Facts

- Endpoint: POST https://agents.oromi.co.uk/api/web/pdf-extract
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/oromi-pdf-extract-f35eda71
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ateZj-CpYKU-BaS6N1sL0

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 oromi-pdf-extract-f35eda71 -d '<json body>'
```

Example prompt: Can you extract all the text from this PDF for me? Here's the URL: https://example.com/report.pdf — I need the full text content along with the page and word count.

## When to prefer this

Choose this endpoint when you need to programmatically extract the text content from a PDF document and also want page count and word count metadata returned in a single call, paid per-use via x402 USDC with no subscription required.

## Known failure modes

- Invalid or inaccessible PDF URL returns an error
- Scanned/image-only PDFs with no selectable text may return empty or partial text
- Very large PDFs may time out or exceed processing limits
- Malformed PDF files may fail to parse
- Network errors fetching the remote PDF

## How this service works

Machine-payable APIs for AI agents, paid per call in USDC via the x402 protocol: UK business data (Companies House), UK property market data (HM Land Registry), website agent-readiness audits, and crypto market context.

## Output

A JSON object containing the full extracted text from the PDF, the total number of pages, and the word count (e.g. {"text": "...", "pages": 12, "word_count": 4820}).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "description": "PDF URL (max 15MB)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "text": "...",
  "pages": 12,
  "word_count": 4820
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/oromi-pdf-extract-f35eda71/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.oromi.co.uk](https://www.zero.xyz/host/agents.oromi.co.uk/llms.txt)
