Introduction

What Unison is, what it isn't, and how to find your way around the docs.

Updated May 12, 2026·1 min read

Welcome to the Unison developer documentation.

Unison is a multi-platform social media scheduler. The dashboard is for humans; these docs are for machines, or for humans wiring Unison into something larger.

What lives here

  • API reference for the publishing, scheduling, and inbox endpoints.
  • OAuth integration guides for building features that connect end-user social accounts.
  • Webhooks so you can react to publish events from your own systems.
  • TypeScript SDK documentation for the official @unison/sdk package.

What does not live here

  • Product help (how to use the composer, what each metric means). That is in the Help Center.
  • Pricing and plan details. Those are on /pricing.

Authentication, in one paragraph

Every API call requires a Pro or Team plan. Generate an API key at Settings → API keys and pass it as a bearer token. The same key can be revoked and rotated independently of your account password.

bash
curl https://api.unison.ink/v1/posts \
  -H "Authorization: Bearer unison_live_..."

The full auth doc is at /docs/api/authentication.

Was this helpful?