# api.pixo.tools PDF Merge & Compress

> api.pixo.tools PDF Merge & Compress is a paid API for AI agents from api.pixo.tools, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-13).

Merges 2–20 PDF files into a single PDF and compresses the result in one API call, priced per total page count

## Facts

- Endpoint: POST https://api.pixo.tools/v1/pdf/merge-compress
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-pixo-tools-pdf-merge-compress-95c3535c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3JLuD749MPXFW7KACTm4k

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 api-pixo-tools-pdf-merge-compress-95c3535c -d '<json body>'
```

Example prompt: Merge these 4 PDF files I'm uploading into a single document and compress the result so it's smaller — I want one combined, compressed PDF back.

## When to prefer this

Use this endpoint when you need to both merge multiple PDFs and compress the result in a single API call, saving a round-trip compared to calling separate merge and compress endpoints. Ideal for automated document workflows where file size matters and you want a bundle rate per page. Prefer this over the plain merge endpoint when output file size reduction is also a goal.

## Known failure modes

- Fewer than 2 PDF files provided — returns 400 error
- More than 20 PDF files provided — returns 400 error
- One or more uploaded files is not a valid PDF — returns 400 or 422 error
- Payment not provided or insufficient — returns 402 Payment Required
- Files too large or total page count too high — may return 413 or timeout
- Corrupted or password-protected PDF files may fail to merge

## How this service works

Merge PDFs and compress the result in one call — priced per total page across all inputs (bundle rate)

## Output

A single merged and compressed PDF file returned as binary, combining all input PDFs in order with reduced file size.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "file"
 ],
 "properties": {
  "file": {
   "type": "array"
  },
  "level": {
   "enum": [
    "lossless",
    "balanced",
    "max"
   ],
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-pixo-tools-pdf-merge-compress-95c3535c/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)
