Embedded social publishing for SaaS products
Let customers connect social accounts and publish from your app while UniPost handles the cross-platform publishing infrastructure.
Primary query:social media API for SaaS
POST /v1/postsUniPost API await fetch("https://api.unipost.dev/v1/posts", {
method: "POST",
headers: {
"Authorization": `Bearer ${UNIPOST_API_KEY}`,
"Content-Type": "application/json"
},
body: JSON.stringify({
caption: "Approved by the customer",
account_ids: ["sa_facebook_123", "sa_linkedin_456"],
publish_mode: "scheduled",
scheduled_at: "2026-07-02T13:30:00Z",
metadata: { source: "customer_approval_flow" }
})
});