API is live

Screenshot & PDF
Generation API

Capture pixel-perfect screenshots, generate PDFs, and extract meta tags from any URL. One API, three powerful endpoints.

Everything you need to capture the web

📷

Screenshot Capture

Full-page or viewport screenshots in PNG, JPEG, or WebP. Device emulation, dark mode, ad blocking, and cookie banner dismissal built in.

Full Page Device Emulation Dark Mode Ad Blocking Custom Viewport
📄

PDF Generation

Generate print-ready PDFs from URLs or raw HTML. Supports A4, Letter, Legal, A3 page sizes with custom margins, headers, and footers.

Multiple Formats Custom Margins Headers & Footers Page Ranges
🔎

Meta Extraction

Extract Open Graph, Twitter Cards, structured data, favicons, and technology stack detection. Perfect for link previews and SEO analysis.

OG Tags Twitter Cards JSON-LD Tech Detection

Simple, powerful endpoints

POST /v1/screenshot
Request
curl -X POST https://bizhome.in/v1/screenshot \
  -H "Content-Type: application/json" \
  -H "X-Api-Key: YOUR_API_KEY" \
  -d '{
  "url": "https://example.com",
  "format": "png",
  "width": 1280,
  "height": 720,
  "full_page": false,
  "dark_mode": false,
  "block_ads": true,
  "response_type": "url"
}'
Response
{
  "success": true,
  "data": {
    "url": "https://bizhome.in/files/abc123.png",
    "format": "png",
    "width": 1280,
    "height": 720,
    "file_size": 184520,
    "page_title": "Example Domain",
    "took_ms": 823
  },
  "credits_remaining": 9995
}

Options: format (png/jpeg/webp) • width / height (viewport) • full_pagedevice (e.g. "iPhone 14") • dark_modeblock_adshide_cookie_bannersdelay (ms) • wait_for_selectorclip (x,y,w,h) • response_type (url/base64)

POST /v1/pdf
Request
curl -X POST https://bizhome.in/v1/pdf \
  -H "Content-Type: application/json" \
  -H "X-Api-Key: YOUR_API_KEY" \
  -d '{
  "url": "https://example.com",
  "format": "A4",
  "landscape": false,
  "print_background": true,
  "response_type": "url"
}'
Response
{
  "success": true,
  "data": {
    "url": "https://bizhome.in/files/xyz789.pdf",
    "format": "A4",
    "pages": 1,
    "file_size": 5952,
    "page_title": "Example Domain",
    "took_ms": 650
  },
  "credits_remaining": 9994
}

Options: url or html (required) • format (A4/Letter/Legal/A3) • landscapemargin (top/right/bottom/left) • print_backgroundscale (0.1-2.0) • header_template / footer_templatepage_rangesresponse_type (url/base64)

POST /v1/meta-extract
Request
curl -X POST https://bizhome.in/v1/meta-extract \
  -H "Content-Type: application/json" \
  -H "X-Api-Key: YOUR_API_KEY" \
  -d '{
  "url": "https://github.com"
}'
Response
{
  "success": true,
  "data": {
    "title": "GitHub",
    "description": "Where the world builds...",
    "favicon": "https://github.githubassets.com/...",
    "og": {
      "title": "GitHub",
      "image": "https://..."
    },
    "twitter": { /* ... */ },
    "technologies": ["React", "Node.js"],
    "performance": {
      "load_time_ms": 1468,
      "page_size_bytes": 5642937
    }
  }
}

Try it live

Enter a URL to capture a screenshot instantly (uses demo key, limited usage).

Screenshot result

Simple, credit-based pricing

Free

$0 / month
Get started and explore the API
  • 100 credits / month
  • All 3 endpoints
  • PNG, JPEG, WebP
  • 10 req/min rate limit
Get Free Key