Skip to content

Screenshot API

HyperGaming99 edited this page Jul 13, 2026 · 1 revision

Screenshot API

GET /api/screenshot oder POST /api/screenshot · Admin-Key erforderlich

Die Antwort ist direkt die Bilddatei und kein JSON-Dokument.

curl -H "Authorization: Bearer YOUR_ADMIN_API_KEY" \
  "https://0x79.one/api/screenshot?url=https%3A%2F%2Fexample.com&width=1440&height=900&format=png" \
  --output screenshot.png

JSON-Body per POST:

{
  "url": "https://example.com",
  "width": 1440,
  "height": 900,
  "format": "png",
  "full_page": false
}

Der Endpunkt verwendet ADMIN_API_KEY, nicht den normalen Benutzer-API-Key.

Clone this wiki locally