How do I create multi-page PDFs?

Use the Create Multi-page PDF tool to stitch multiple JPGs, PNGs, and PDFs into a single multi-page document.

In-app method

  1. Click Tools on the left panel
  2. Select Create Multi-page PDF
  3. In the URLs field, upload or paste the URLs for stitching (one URL per line)
  4. 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}`
  }
})

Start a Free Trial

Start a free trial with 30 API credits, no credit card required

Resize Video
Add Intro Animation
Add Subtitles

Get Started for Free