Retro⚡ Pro
Synthwave
Unlock with OGMagic Pro — $12 one-time payment for lifetime access to all 55+ templates.
Price increases to $29 after launch week
How to Use
API URL
https://ogmagic.dev/api/og?template=synthwave&title={title}&description={description}&domain={domain}Meta Tags
<meta property="og:image" content="https://ogmagic.dev/api/og?template=synthwave&title={title}&description={description}&domain={domain}" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta name="twitter:card" content="summary_large_image" />cURL Example
curl "https://ogmagic.dev/api/og?template=synthwave&title={title}&description={description}&domain={domain}" -o og-image.pngJavaScript Example
// Using fetch
const response = await fetch(`https://ogmagic.dev/api/og?template=synthwave&title={title}&description={description}&domain={domain}`);
const blob = await response.blob();
const url = URL.createObjectURL(blob);
// Use in an img tag
<img src={url} alt="OG Image" />