await fetch("https://api.bundle.social/api/v1/post", {
method: "POST",
headers: {
"Content-Type": "application/json",
"x-api-key": process.env.BUNDLE_API_KEY
},
body: JSON.stringify({
teamId: "team_123",
title: "Launch post",
status: "SCHEDULED",
postDate: "2026-06-01T15:00:00.000Z",
socialAccountTypes: ["FACEBOOK", "INSTAGRAM"],
data: {
FACEBOOK: {
type: "POST",
text: "We are live.",
uploadIds: ["upload_image_123"]
},
INSTAGRAM: {
type: "POST",
text: "We are live.",
uploadIds: ["upload_image_123"],
altText: "Product dashboard screenshot"
}
}
})
});