Screenshot API

Web Tools

Website screenshots via headless browser. Free tier with 100 requests per day — no credit card required.

2
Endpoints
100
Free Req/Day
0
Cost to Start
<200ms
Avg Latency
Get Free API Key Interactive Docs

Code Examples

cURL

curl -s "https://api.commandsector.in/api/screenshot/take?url=https://example.com&api_key=demo-try-free-2026"

Python

import requests
resp = requests.get("https://api.commandsector.in/api/screenshot/take",
    params={"url": "https://example.com", "width": 1280, "api_key": "YOUR_KEY"})
with open("screenshot.png", "wb") as f:
    f.write(resp.content)

JavaScript

const resp = await fetch("https://api.commandsector.in/api/screenshot/health");
const data = await resp.json();
console.log(data);

Use Cases

SEO monitoringvisual regression testingsocial previewslink validationweb archival

Getting Started

  1. Get your free API key at /signup (instant, no credit card)
  2. Pass it as X-API-Key header or ?api_key=YOUR_KEY query parameter
  3. Make requests to /api/screenshot/ endpoints
  4. Check interactive Swagger docs for all 2 endpoints

Pricing

Free100 req/day$0/mo
Pro10,000 req/day$9.99/mo
EnterpriseUnlimited$49.99/mo

Frequently Asked Questions

Can I take full-page screenshots?
Yes. The API captures the full page or a specified viewport size.
What browsers are used?
Headless Chromium for pixel-perfect rendering of modern websites.
Can I set custom viewport sizes?
Yes. Specify width and height parameters for any resolution.

OpenAPI Specification

Machine-readable spec: /api/screenshot/openapi.json

Also available on: API Catalog · MCP Server · All Specs

Get Free API Key →