Build with Shotcraft's Image API
Generate beautiful OG images, social cards, and mockup thumbnails programmatically.
Get your API key โThis image is generated live by the API
Endpoint
A single GET endpoint returns a PNG image directly.
GET
https://shotcraft.cloud/api/v1/ogParameters
| Parameter | Type | Default | Description |
|---|---|---|---|
| title | string | "Shotcraft" | Main heading. Clamped to 80 chars. |
| subtitle | string | "" | Subheading. Clamped to 120 chars. |
| theme | enum | dark | dark light gradient-1 gradient-2 gradient-3 |
| key | string | โ | API key (sk_shot_...). Omit for watermarked demo. |
Code examples
cURL
curl "https://shotcraft.cloud/api/v1/og?title=My+App&theme=gradient-1&key=sk_shot_..." \
-o og-image.pngJavaScript
const res = await fetch(
'https://shotcraft.cloud/api/v1/og?title=My+App&theme=dark&key=sk_shot_...'
);
const blob = await res.blob();HTML
<meta property="og:image"
content="https://shotcraft.cloud/api/v1/og?title=My+App&theme=dark&key=sk_shot_..." />Pricing
No credit card required to try. Upgrade when you're ready to remove the watermark.
| Tier | Price | Calls / month | Watermark |
|---|---|---|---|
| Free (no key) | $0 | ~100 | Yes |
| Pro | $12 / mo | Unlimited | No |
| Lifetime | $200 once | Unlimited | No |