Opengraph Io
Extract web data, capture screenshots, scrape content, and generate AI images via OpenGraph.io. Use when working with URLs (unfurling, previews, metadata), capturing webpage screenshots, scraping HTML
Extract web data, capture screenshots, scrape content, and generate AI images via OpenGraph.io. Use when working with URLs (unfurling, previews, metadata), capturing webpage screenshots, scraping HTML
Real data. Real impact.
Emerging
Developers
Per week
Open source
Skills give you superpowers. Install in 30 seconds.

Extract web data, capture screenshots, and generate AI-powered images via OpenGraph.io APIs.
🤖 AI Agents: For complete parameter docs and patterns, also read references/for-ai-agents.md.
| Need | Endpoint |
|---|---|
| Meta tags / link preview data | |
| Raw HTML content | (add if geo-blocked) |
| Specific elements (h1, h2, p) | |
| AI answer about the page | ⚠️ paid |
| Visual screenshot | |
| Need | Settings |
|---|---|
| Technical diagram | — use + for control |
| App icon/logo | — set |
| Social card (OG/Twitter) | — use |
| Basic QR code | |
| Premium QR marketing card | — describe full design in prompt |
| General illustration | |
Basic (
kind: "qr-code"): Just the functional QR code.
Premium (
kind: "illustration"): Full marketing asset with QR embedded in designed composition (gradients, 3D elements, CTAs, device mockups). Example prompt:
"Premium marketing card with QR code for https://myapp.com, cosmic purple gradient with floating 3D spheres, glowing accents, 'SCAN TO DOWNLOAD' call-to-action"
diagramCode + diagramFormat for reliable syntax (bypasses AI generation)outputStyle: "standard" for structure-critical diagrams (premium may alter layout)"graph LR A-->B make it pretty" will fail| Feature | Free Tier | Paid Plans |
|---|---|---|
| Site/Unfurl | ✅ 100/month | Unlimited |
| Screenshot | ✅ 100/month | Unlimited |
| Scrape | ✅ 100/month | Unlimited |
| Extract | ✅ 100/month | Unlimited |
| Query (AI) | ❌ | ✅ |
| Image Generation | ✅ 4/month | Unlimited |
💡 Try image generation free! Get 4 premium image generations per month on the free plan — no credit card required.
Sign up at dashboard.opengraph.io
Option A: Clawdbot config (recommended)
// ~/.clawdbot/clawdbot.json { skills: { entries: { "opengraph-io": { apiKey: "YOUR_APP_ID" } } } }
Option B: Environment variable
export OPENGRAPH_APP_ID="YOUR_APP_ID"
Use
curl with the OPENGRAPH_APP_ID environment variable. Base URL: https://opengraph.io/api/1.1/
# Get OG tags from a URL curl -s "https://opengraph.io/api/1.1/site/$(echo -n 'https://example.com' | jq -sRr @uri)?app_id=${OPENGRAPH_APP_ID}"
Response includes
hybridGraph.title, hybridGraph.description, hybridGraph.image, etc.
# Capture screenshot (dimensions: sm, md, lg, xl) curl -s "https://opengraph.io/api/1.1/screenshot/$(echo -n 'https://example.com' | jq -sRr @uri)?app_id=${OPENGRAPH_APP_ID}&dimensions=lg"
Response:
{ "screenshotUrl": "https://..." }
# Fetch rendered HTML (with optional proxy) curl -s "https://opengraph.io/api/1.1/scrape/$(echo -n 'https://example.com' | jq -sRr @uri)?app_id=${OPENGRAPH_APP_ID}&use_proxy=true"
# Pull h1, h2, p tags curl -s "https://opengraph.io/api/1.1/extract/$(echo -n 'https://example.com' | jq -sRr @uri)?app_id=${OPENGRAPH_APP_ID}&html_elements=h1,h2,p"
curl -s -X POST "https://opengraph.io/api/1.1/query/$(echo -n 'https://example.com' | jq -sRr @uri)?app_id=${OPENGRAPH_APP_ID}" \ -H "Content-Type: application/json" \ -d '{"query": "What services does this company offer?"}'
Base URL:
https://opengraph.io/image-agent/
SESSION=$(curl -s -X POST "https://opengraph.io/image-agent/sessions?app_id=${OPENGRAPH_APP_ID}" \ -H "Content-Type: application/json" \ -d '{"name": "my-session"}') SESSION_ID=$(echo $SESSION | jq -r '.sessionId')
curl -s -X POST "https://opengraph.io/image-agent/sessions/${SESSION_ID}/generate?app_id=${OPENGRAPH_APP_ID}" \ -H "Content-Type: application/json" \ -d '{ "prompt": "A beautiful QR code linking to https://example.com with modern gradient design", "kind": "qr-code", "aspectRatio": "square", "quality": "high" }'
Image kinds:
illustration, diagram, icon, social-card, qr-code
Style presets:
github-dark, vercel, stripe, neon-cyber, pastel, minimal-mono
Aspect ratios:
square, og-image (1200×630), twitter-card, instagram-story, etc.
ASSET_ID="<from-generate-response>" curl -s "https://opengraph.io/image-agent/assets/${ASSET_ID}/file?app_id=${OPENGRAPH_APP_ID}" -o output.png
curl -s -X POST "https://opengraph.io/image-agent/sessions/${SESSION_ID}/iterate?app_id=${OPENGRAPH_APP_ID}" \ -H "Content-Type: application/json" \ -d '{ "assetId": "<previous-asset-id>", "prompt": "Change the background to blue" }'
When users ask in natural language, translate to the appropriate API call:
| User says | API to use |
|---|---|
| "Get the OG tags from URL" | |
| "Screenshot this page" | |
| "Scrape the HTML from URL" | |
| "What does this page say about X?" | |
| "Generate a QR code for URL" | with |
| "Create a premium QR marketing card" | with + design in prompt |
| "Create a social card for my blog" | with |
| "Make an architecture diagram" | with |
Basic QR Code (
kind: "qr-code"): Generates just the functional QR code with minimal styling.
Premium QR Marketing Card (
kind: "illustration"): Generates a complete marketing asset with the QR code embedded in a professionally designed composition - gradients, 3D elements, CTAs, device mockups, etc.
# Premium QR marketing card example curl -s -X POST "https://opengraph.io/image-agent/sessions/${SESSION_ID}/generate?app_id=${OPENGRAPH_APP_ID}" \ -H "Content-Type: application/json" \ -d '{ "prompt": "Premium marketing card with QR code for https://myapp.com, cosmic purple gradient background with floating 3D spheres, glowing accents, SCAN TO DOWNLOAD call-to-action", "kind": "illustration", "aspectRatio": "square", "outputStyle": "premium", "brandColors": ["#6B4CE6", "#9B6DFF"], "stylePreferences": "modern, cosmic, premium marketing, 3D elements" }'
For AI clients that support MCP, use the MCP server:
# Interactive installer npx opengraph-io-mcp --client cursor --app-id YOUR_APP_IDOr configure manually:
{ "mcpServers": { "opengraph": { "command": "npx", "args": ["-y", "opengraph-io-mcp"], "env": { "OPENGRAPH_APP_ID": "YOUR_APP_ID" } } } }
See references/mcp-clients.md for client-specific setup.
No automatic installation available. Please visit the source repository for installation instructions.
View Installation Instructions1,500+ AI skills, agents & workflows. Install in 30 seconds. Part of the Torly.ai family.
© 2026 Torly.ai. All rights reserved.