Peekabooo Screenshot API Logo

peekabooo API

Screenshot-as-a-Service. No frills. Just shots.

๐Ÿ“Œ What is peekabooo?

peekabooo is a lightweight screenshot API. You send a URL, and we respond with a crisp .png of the page. No UI wrappers, just cold-blooded rendering under the hood.

โš™๏ธ How to Use

Make a GET request like this:

https://peekabooo.vercel.app/screenshot?url=https://github.com/victoryosiobe/peekabooo&width=1280&height=720

๐Ÿงพ Query Parameters:

๐Ÿ“ฅ JavaScript Example:


fetch("https://peekabooo.vercel.app/screenshot?url=https://github.com/victoryosiobe/peekabooo")
  .then(res => res.blob())
  .then(blob => {
    const img = document.createElement("img");
    img.src = URL.createObjectURL(blob);
    document.body.appendChild(img);
  });
    

๐Ÿ“ฆ What You Get

You get a .png image back. Save it, use it in your blog, make a gallery of URL snaps โ€” it's yours.