๐Ÿผ Pandan API Docs

Free, fast, developer-friendly APIs. No signup required. Just add your URL and go.

๐Ÿ“ธ Screenshot API

Capture pixel-perfect screenshots and PDFs of any website. Powered by Chromium. Renders JavaScript, handles SPAs.

โšก Fast

Screenshots in ~2-5 seconds

๐ŸŽจ Customizable

Width, height, full page, delay

๐Ÿ“„ PDF Support

Generate PDFs from any URL

๐Ÿ†“ Free Tier

100 requests/month, no key needed

GET https://api.pandan.is/v1/screenshot
ParameterTypeDescription
url requiredstringURL to capture
widthintegerViewport width (default: 1280)
heightintegerViewport height (default: 800)
fullPagebooleanCapture entire page (default: false)
delayintegerWait ms before capture (default: 0)
formatstringpng or jpeg (default: png)

Example

curl "https://api.pandan.is/v1/screenshot?url=https://example.com&width=1280&height=800" -o screenshot.png
Try it โ†’
GET https://api.pandan.is/v1/pdf
ParameterTypeDescription
url requiredstringURL to convert to PDF
formatstringPaper format: A4, Letter, etc. (default: A4)
curl "https://api.pandan.is/v1/pdf?url=https://example.com" -o page.pdf

OpenAPI Spec: api.pandan.is/openapi.json

๐Ÿ“ฑ QR Code API

Generate QR codes instantly as PNG, SVG, or Base64. Perfect for dynamic content, payment links, WiFi sharing.

GET https://qr.pandan.is/v1/qr
ParameterTypeDescription
data requiredstringContent to encode
sizeintegerImage size in pixels (default: 300)
formatstringpng or svg (default: png)
colorstringQR color hex, e.g. 000000
bgstringBackground color hex, e.g. ffffff
marginintegerQuiet zone margin (default: 4)
curl "https://qr.pandan.is/v1/qr?data=https://pandan.is&size=400&format=png" -o qr.png
Try it โ†’
GET https://qr.pandan.is/v1/qr/base64

Returns a JSON response with the QR code as a base64-encoded data URI.

curl "https://qr.pandan.is/v1/qr/base64?data=hello&size=200"
// {"base64": "data:image/png;base64,iVBOR..."}

OpenAPI Spec: qr.pandan.is/openapi.json

๐Ÿ”— Link Shortener API

Shorten URLs with built-in click analytics. Track clicks, referrers, and geographic data.

POST https://s.pandan.is/api/shorten
ParameterTypeDescription
url requiredstringURL to shorten
slugstringCustom short code (optional)
curl -X POST "https://s.pandan.is/api/shorten" \
  -H "Content-Type: application/json" \
  -d '{"url": "https://example.com/very/long/url"}'

// {"shortUrl": "https://s.pandan.is/abc123", "slug": "abc123"}
GET https://s.pandan.is/api/stats/:slug

Get click analytics for a shortened link.

curl "https://s.pandan.is/api/stats/abc123"
// {"slug": "abc123", "clicks": 42, "created": "2026-03-22T..."}

๐Ÿ–ผ๏ธ OG Image API

Generate beautiful Open Graph images dynamically. Perfect for social media previews, blog posts, product pages.

GET https://og.pandan.is/v1/image
ParameterTypeDescription
title requiredstringMain title text
subtitlestringSubtitle or description
themestringColor theme (dark, light, gradient)
widthintegerImage width (default: 1200)
heightintegerImage height (default: 630)
curl "https://og.pandan.is/v1/image?title=My+Blog+Post&subtitle=A+great+article" -o og.png
Try it โ†’

๐Ÿงพ Invoice API Freemium

Generate professional PDF invoices with Icelandic tax (VSK) support. Kennitala validation, beautiful templates.

POST https://reikningur.pandan.is/api/v1/invoice

Create a professional PDF invoice. Supports Icelandic business requirements (kennitala, VSK calculations).

curl -X POST "https://reikningur.pandan.is/api/v1/invoice" \
  -H "Content-Type: application/json" \
  -d '{
    "seller": {"name": "My Company", "kennitala": "1234567890"},
    "buyer": {"name": "Customer Inc"},
    "items": [{"description": "Web Development", "quantity": 10, "price": 15000}],
    "currency": "ISK"
  }' -o invoice.pdf

Web UI available at reikningur.pandan.is

๐Ÿ’ฑ Currency Exchange API

Real-time currency exchange rates, ISK-centric. 14 currencies with rates cached every 4 hours.

GET https://gjaldmidlar.pandan.is/api/v1/rates

Get current exchange rates for ISK against major currencies.

curl "https://gjaldmidlar.pandan.is/api/v1/rates"
// {"base": "ISK", "rates": {"USD": 0.0072, "EUR": 0.0066, ...}}

Web UI with converter at gjaldmidlar.pandan.is

๐Ÿ’ฐ Pricing

All APIs include a generous free tier. No credit card required to start.

๐Ÿ†“ Free

Screenshot: 100/mo
QR Code: 200/mo
Link Shortener: 50 links
OG Image: unlimited
Invoice: 5/mo

โญ Starter โ€” $9/mo

Screenshot: 5,000/mo
Invoice: 50/mo
Priority support

๐Ÿš€ Pro โ€” $29/mo

Screenshot: 25,000/mo
Invoice: 500/mo
API key + dashboard

๐Ÿข Business โ€” $49/mo

Unlimited everything
SLA guarantee
Custom integrations

Payment integration coming soon. All APIs are currently free during beta!