# Pixo Tools PDF Image Extractor

> Pixo Tools PDF Image Extractor is a paid API for AI agents from api.pixo.tools, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Extracts all embedded images from a PDF file and returns them, processed entirely in-process without sending data to third parties

## Facts

- Endpoint: POST https://api.pixo.tools/v1/pdf/images
- 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/pixo-tools-pdf-image-extractor-24e17c81
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_o3H9Xn_QGkxehNHlj941x

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 pixo-tools-pdf-image-extractor-24e17c81 -d '<json body>'
```

Example prompt: Can you pull out all the images embedded in this PDF file I'm uploading? I need to get the individual image files from it.

## When to prefer this

Choose this endpoint when you need to extract embedded images from a PDF privately (no third-party AI involved), as opposed to rendering pages as PNG (which rasterizes the full page layout). Prefer this over the PDF-to-PNG renderer when you want only the discrete images embedded in the document, not full-page screenshots. The in-process nature makes it suitable for sensitive documents.

## Known failure modes

- PDF contains no embedded images — returns empty result or appropriate message
- Invalid or corrupted PDF file — returns 400 or processing error
- File too large or page count exceeds pricing/limits — may return 402 or 413
- Unsupported PDF encoding or encryption — returns processing error
- Payment not provided or insufficient — returns 402 Payment Required

## How this service works

Extract embedded images from a PDF — priced per page (private, in-process)

## Output

Returns the images embedded within the uploaded PDF, likely as individual image files or a ZIP archive. Processing is done privately in-process, meaning the PDF content is not sent to any third-party service.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "file"
 ],
 "properties": {
  "file": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "string",
 "format": "binary"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pixo-tools-pdf-image-extractor-24e17c81/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.pixo.tools](https://www.zero.xyz/host/api.pixo.tools/llms.txt)
