Alpha
Automate your marketing visuals using Figma
PikMaker helps you auto-generate beautiful social media posts, engaging website banners and more using our API and integrations.
fetch("https://pikmaker.com/api/images", {
method: "POST",
headers: {
"Content-Type": "application/json",
"Authorization": "your-api-key"
},
body: JSON.stringify({
template: "template-id",
modifications: {
"title.text": "The Lord of the Rings: The Rings of Power - Season 1 Review"
"author.text": "Bruno Quaresma"
"background.src": "https://yourwebsite.com/lord-of-the-rings.png"
}
})
})
.then(res => res.json())
.then(console.log)