September 16, 2026

The Drive AI vs thum.io: screenshot API comparison for 2026

Both turn a URL into an image by putting it in the path. One stops there. Here is the honest difference, including where thum.io is the better choice.

By Bigyan Karki 865 words 3 min read

If you want a screenshot of a web page without reading a single line of documentation, thum.io is the reference implementation. You paste a URL into a path and an image comes back. No key, no signup, no SDK. That design is why people search for it by name.

The Drive AI's preview endpoint works the same way on purpose. The difference is what is behind it: the same host that renders the page will also hand you its text, its structured fields, or an answer about it. This is an honest comparison of the two, including the cases where thum.io is simply the right tool and we are not.

The short version

  • thum.io — a focused, cheap, fast screenshot CDN. Best when you need many images and nothing else. Full-page capture and custom viewports are paid features.
  • The Drive AI — a file and URL intelligence API whose first endpoint happens to be a screenshot. Best when the image is step one and you also need the page's content, fields, or an answer about it.

URL format, side by side

thum.io

https://image.thum.io/get/
  width/800/
  https://example.com

Options are path segments before the URL. Auth by referer or signed URL.

The Drive AI

https://dev.thedrive.ai/
  example.com

The URL is the whole path. Returns image/jpeg. No key required.

Both are drop-in as an <img src>. Neither needs a client library. If you are migrating, the change is a string replace in most codebases.

Feature comparison

Feature thum.io The Drive AI
URL-in-path screenshotYesYes
Works with no API keyYesYes
Progressive/instant previewYesNo
Full-page capturePaid plansYes
Custom viewport / device emulationPaid plansYes
Screenshot of a PDF or DOCX at a URLNoYes (107+ formats)
Page text as markdownNoYes
Schema-based field extractionNoYes
Reasoning over page contentNoYes
Async jobs + webhooksNoYes
Purpose-built screenshot pricing at volumeYesNo

What thum.io does best

Two things, and they are real.

Perceived speed. thum.io streams a low-quality render immediately and replaces it with the full image once the page finishes. For a link directory or a dashboard of thumbnails, the user sees something instantly. We render once and return the finished JPEG. On a cold page that is a slower first paint.

Cost at volume. thum.io is priced as a screenshot CDN: 1,000 hits per month free without signing up, then $2 per 10,000 hits, dropping to $1 per 10,000 on the plan with a $20 monthly minimum. If you need half a million thumbnails a month and nothing else, that is the correct product and we are not going to pretend otherwise.

Where the screenshot is not the answer

The reason people reach for a screenshot API is usually not the picture. It is that they have a URL and they need to know something about it. The image is a proxy for understanding. That is where a pure screenshot service runs out.

On the same host, the same URL-in-path pattern gives you the page's content instead of its appearance:

# The picture
curl https://dev.thedrive.ai/stripe.com/pricing > shot.jpg

# The text, as markdown
curl https://dev.thedrive.ai/md/stripe.com/pricing

# The actual answer
curl -X POST https://dev.thedrive.ai/api/v1/extract   -H "X-API-Key: $KEY"   -d '{"url": "https://stripe.com/pricing",
       "schema": {"tiers": [{"name": "string", "price": "string"}]}}'

With thum.io you get the first line. The other two mean standing up a headless browser, a parser, and an LLM call — which is the infrastructure most teams were trying to avoid when they picked a URL-in-path API in the first place.

Free tier, compared honestly

thum.io The Drive AI
No signup at all1,000 / month100 / day per IP
With a free accountSame100 credits / month
Paid entry point$1 minimumPer credit, no monthly minimum
Full-page on free tierNoYes

The unkeyed allowances are shaped differently: thum.io gives you a monthly bucket, we give you a daily one per IP. For a side project rendering a few previews a day, ours is the larger number over a month. For a burst of 1,000 images in an afternoon, theirs is.

Decision framework

Choose thum.io if:

  • You need thumbnails at high volume and cost per image is the metric that matters
  • Instant progressive rendering matters for your UI
  • You only ever need the image, and the page is always HTML

Choose The Drive AI if:

  • Your URLs are not all web pages — PDFs, spreadsheets, decks, images need previews too
  • You will eventually need the page's text or specific fields, not just a picture of them
  • You want full-page capture and custom viewports without moving to a paid tier
  • An agent is calling this, and you would rather it get JSON than an image it has to look at

Can you use both?

Yes, and for some architectures you should. thum.io for the high-volume thumbnail grid where the image is genuinely the product. The Drive AI on the subset of URLs where something downstream has to read the page. They are priced for different jobs, and the split costs you nothing but a second base URL.

Try the preview endpoint — no key, no signup. Put any URL after the slash and see what comes back.

Try it yourself

Free tier included. No credit card required.