Joins two or more PDFs into a single document, preserving the exact page order you specify. Provide the files as URLs and list them in the order you want them to appear; the output is one downloadable PDF. Accepts up to 50 inputs with a combined cap of 3000 pages.
You want to concatenate two or more PDFs into a single document.
Breaking one PDF into pieces, or editing page content.
~1 credits / page (up to 50)
Billed at 0.1 credits per page of the combined output.
Estimated; the actual charge depends on your input and is shown in the response.
Set these inside the intent when you run it.
The PDFs to merge, as a list of URLs. The final page order matches this list exactly.
Filename for the merged PDF.
A single merged PDF file as a downloadable URL.
Run this sub-skill directly: pin it with operation and pass its inputs in the intent. (Omit operation and the PDF skill will route from your intent instead.)
curl -X POST "https://skill.askfaro.com/skills/pdf/run" \
-H "Authorization: Bearer $FARO_TOKEN" \
-H "Content-Type: application/json" \
-d '{"intent":{"operation":"merge","input_urls":["https://example.com/part1.pdf","https://example.com/part2.pdf"],"output_filename":"combined.pdf"}}'Example requests