
Use the Create Multi-page PDF tool to stitch multiple JPGs, PNGs, and PDFs into a single multi-page document.
In-app method
- Click Tools on the left panel
- Select Create Multi-page PDF
- In the URLs field, upload or paste the URLs for stitching (one URL per line)
- Hit Send Request

Note: The API will maintain the line-by-line order.
API method
Send a POST request to the /v5/tools/create_pdf endpoint, with a list e.g. "urls": ["URL1.jpg","URL2.png","URL3.pdf"] for stitching.
var data = {
"urls": [
"https://cdn.bannerbear.com/sample/page1.png",
"https://cdn.bannerbear.com/sample/page2.jpg",
"https://cdn.bannerbear.com/sample/appendix.pdf"
]
}
fetch('https://api.bannerbear.com/v5/tools/create_pdf', {
method: 'POST',
body: JSON.stringify(data),
headers: {
'Content-Type' : 'application/json',
'Authorization' : `Bearer ${API_KEY}`
}
})

