Insert PDF pages

Insert PDFs or images into a base PDF at the position you choose.

File and output

Base PDF + files

First choose the base PDF, then the PDFs or images you want to insert.

First file must be PDF. Insert files can be PDF, PNG, JPG, WEBP, GIF, BMP, or TIFF.

File ready

PDF
Waiting for file

The result will appear here.

Format
-
Size
-
Pages
-

Also available by API

Use the mirror endpoint with multipart or base64 JSON. API balance stays separate from web NOX.

Billing validates balance before processing and only charges after a successful output.

POST /api/v1/tools/pdf-insert-pages
Authorization: Bearer TU_API_KEY
Content-Type: application/json

{
  "files": [
    {"filename": "base.pdf", "pdf_base64": "data:application/pdf;base64,..."},
    {"filename": "anexo.pdf", "pdf_base64": "data:application/pdf;base64,..."},
    {"filename": "foto.jpg", "image_base64": "data:image/jpeg;base64,..."}
  ],
  "insert_after": 2,
  "filename": "documento-con-anexos"
}