⚡ Idea2Post API

REST API: paste an idea → AI generates hooks, blog, email, LinkedIn, Twitter, video script — programmatically.

Sign up — free trial Try without signup
⚡ Built with Anthropic Claude

Overview

Base URL: https://cp.idea2post.app/api/v1

JSON in, JSON out. Free demo endpoints under /v1/public/* — no auth, IP-rate-limited 3/day, watermarked. Paid endpoints require Bearer token (Agency plan).

Authentication

Authorization: Bearer i2p_live_xxxxxxxxxxxxxxxx

API tokens are an Agency tier feature ($199/mo). Generate at /account.

🆓 Free demo endpoints

No auth · 3 calls/day per IP · output watermarked or truncated.

POST /v1/public/hook-suggest FREE

Generate 3 viral hooks from any idea. Paid plan returns 10-20 with viral scoring + chat refinement.

Request

curl -X POST https://cp.idea2post.app/api/v1/public/hook-suggest \
  -H "Content-Type: application/json" \
  -d '{"idea": "5 mistakes coaches make on landing pages"}'

Response

{
  "ok": true,
  "hooks": [
    {"style": "viral", "hook": "I pasted 1 link into AI and got 20 posts in 2 minutes.", "score": 92},
    {"style": "curiosity", "hook": "90% of coaches make this exact mistake...", "score": 88},
    {"style": "story", "hook": "My landing page got 0 leads. Then I changed one line.", "score": 85}
  ],
  "watermark": "Powered by idea2post.app — upgrade for 10-20 hooks + scoring",
  "calls_remaining_today": 2,
  "upgrade_url": "https://idea2post.app/api"
}
POST /v1/public/content-preview FREE

Preview ~50% of one content format. Paid plan returns full content across 10 formats (blog, FB, LinkedIn, Twitter, email, video script, etc.).

curl -X POST https://cp.idea2post.app/api/v1/public/content-preview \
  -H "Content-Type: application/json" \
  -d '{
    "idea": "Why 73% of landing pages fail in the first 3 seconds",
    "format": "linkedin",
    "tone": "expert"
  }'

Allowed formats: twitter, linkedin, facebook, blog.

📊 Rate limits & quotas

PlanCalls / monthConcurrencyAPI tokens
Free trial (no auth)3 / day per IP1
Pro — $395003
Agency — $1995000103
Empire — $4992000030unlimited

📦 SDKs & examples