Capture pixel-perfect screenshots, generate PDFs, and extract meta tags from any URL. One API, three powerful endpoints.
Full-page or viewport screenshots in PNG, JPEG, or WebP. Device emulation, dark mode, ad blocking, and cookie banner dismissal built in.
Generate print-ready PDFs from URLs or raw HTML. Supports A4, Letter, Legal, A3 page sizes with custom margins, headers, and footers.
Extract Open Graph, Twitter Cards, structured data, favicons, and technology stack detection. Perfect for link previews and SEO analysis.
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"
}'
{
"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_page •
device (e.g. "iPhone 14") •
dark_mode •
block_ads •
hide_cookie_banners •
delay (ms) •
wait_for_selector •
clip (x,y,w,h) •
response_type (url/base64)
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"
}'
{
"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) •
landscape •
margin (top/right/bottom/left) •
print_background •
scale (0.1-2.0) •
header_template / footer_template •
page_ranges •
response_type (url/base64)
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"
}'
{
"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
}
}
}
Enter a URL to capture a screenshot instantly (uses demo key, limited usage).