Extract Page Metadata from Any URL

Extract structured metadata from any webpage without taking a screenshot. Returns title, description, Open Graph tags, favicon URL, canonical URL, headings, and all page links. Faster and cheaper than a full screenshot. Available on all plans including free.

Code Examples

cURL
Node.js
Python
curl "https://snapapi.tech/v1/metadata?url=https://github.com" \
  -H "x-api-key: YOUR_KEY"
const res = await fetch(
  "https://snapapi.tech/v1/metadata?url=https://github.com",
  { headers: { "x-api-key": "YOUR_KEY" } }
);

const data = await res.json();
console.log(data.title);       // "GitHub · Build and ship software on a single, collaborative platform"
console.log(data.og_image);    // OG image URL
console.log(data.description); // Meta description
console.log(data.links.length);// Number of links on the page
import requests

resp = requests.get(
    "https://snapapi.tech/v1/metadata",
    params={"url": "https://github.com"},
    headers={"x-api-key": "YOUR_KEY"}
)

data = resp.json()
print(data["title"])
print(data["og_title"])
print(data["favicon"])
print(data["headings"])  # List of h1-h3 text
print(data["links"])     # All href values
Get Your Free API Key Read the Docs

Try It Live

Capturing screenshot...

Why SnapAPI?

No Browser Setup

We run Chromium so you don't have to. No Puppeteer, no Selenium, no drivers.

PNG, JPEG, WebP

Choose your format. Set quality. Get optimized output.

Mobile Emulation

9 device presets — iPhone, Pixel, iPad, desktop. One parameter.

Full Page Capture

Scroll the entire page and stitch into one image. Automatic.

Element Selector

Capture a specific element by CSS selector instead of the whole page.

Dark Mode

Emulate prefers-color-scheme: dark to capture dark-themed pages.

Built For

How It Works

1. Sign up for a free API key — 100 screenshots/month, no credit card required.

2. Make a GET request to /v1/screenshot with your URL and API key.

3. Receive a pixel-perfect screenshot as a binary image, or JSON with metadata if meta=true.

That's it. No browser installation, no Chromium management, no headless infrastructure to maintain.