Skip to content
Integrations

Works with your stack

supapost is a REST API. It works with any tool that can make HTTP requests. n8n, Zapier, Claude Code, cron jobs, serverless functions, CMS webhooks, or your own app.

n8n

Use the HTTP Request node to call supapost's API. Schedule content generation with cron triggers. Build multi-step workflows that generate, review, and publish.

Cron trigger > HTTP POST to /api/v1/content/generate > Slack notification > Google Sheets log

Claude Code / AI Agents

supapost is designed for agentic workflows. AI agents call the API as a tool to generate posts and replies as part of larger automation pipelines.

Agent reads mentions > calls supapost for reply > posts reply > logs interaction

Zapier / Make

Use Webhooks or HTTP modules to integrate. Trigger content generation from any event: new blog post, form submission, calendar event.

New WordPress post > supapost repurpose to LinkedIn + X + Instagram > schedule via Buffer

Cron Jobs / Serverless

Simple fetch() call from Vercel Functions, AWS Lambda, Cloudflare Workers, or any serverless platform. Generate content on a schedule.

Daily 9am cron > generate 3 posts for the day > store in database > publish via API

CMS Webhooks

Trigger content generation when a blog post is published in WordPress, Ghost, Webflow, or any CMS with webhook support.

Blog published > webhook > supapost repurpose to social posts > ready for scheduling

Custom Applications

Standard REST API with Bearer auth and JSON responses. Integrate into any language or framework: Node.js, Python, Go, Ruby, PHP.

Your app's frontend > your backend > supapost API > return content to user

It's just a fetch() call

Works in any language. Here's Node.js:

const response = await fetch(
  'https://api.supapost.ai/api/v1/content/generate',
  {
    method: 'POST',
    headers: {
      'Authorization': 'Bearer ' + API_KEY,
      'Content-Type': 'application/json',
    },
    body: JSON.stringify({
      type: 'social',
      platform: 'linkedin',
      topic: 'Your topic here',
    }),
  }
);

const { content, variations, hashtags } = await response.json();

Start integrating today

Free tier. 50 API requests/day. No credit card.

Get API key