Quickstart

Publish your first post in a few minutes.

This guide gets you from zero to a post published on X and LinkedIn in about five minutes.

1. Create an account

Sign up at agentiq.social and create an organization. The free plan is enough for this guide.

2. Generate an API key

In the app, go to Settings → API and create a key. It will look like ag_live_.... Copy it somewhere safe — you will not see it again.

3. Connect a network

Go to Channels in the app and connect the accounts you want to publish to. Each network opens its own OAuth flow — you stay in control of what Agentiq can post.

TikTok requires the app to be approved by TikTok before video.publish scope is granted. Until then, TikTok connections work with user.info.basic only. See Platforms.

4. Publish your first post

curl -X POST https://api.agentiq.social/v1/publish \
  -H "Authorization: Bearer ag_live_xxxxxxxxxxxx" \
  -H "Content-Type: application/json" \
  -d '{
    "platforms": ["x", "linkedin"],
    "text": "Hello from the Agentiq API 👋"
  }'

5. Read the response

{
	"ok": true,
	"id": "pub_01JK9...",
	"results": {
		"x": { "status": "published", "network_post_id": "1940..." },
		"linkedin": { "status": "published", "network_post_id": "urn:li:share:..." }
	}
}

Each platform reports its own status. If a network fails (bad credentials, rate limit, media problem), the others still publish — see Statuses.

Next steps

  • Schedule a post for later with the scheduled_at field
  • Upload media with POST /v1/media
  • Receive state changes with webhooks
  • Or skip the API entirely and let the AI manager draft for you

On this page