Quickstart Guide

BUSINESS ACCESS ONLY: The Publer API is currently available exclusively to Publer Business users.

This guide walks you through the core steps to integrate with Publer’s API in minutes. By the end, you’ll have published your first scheduled post.

Prerequisites

  • A Business Publer account

  • Basic familiarity with HTTP/JSON APIs

  • A command-line tool (curl) or API client (Postman, Insomnia)

Step 1: Generate an API Key

  1. Sign in to Publer and verify you have Business plan access.

  2. Go to Settings → Access & Login → API Keys.

  3. Click Create API Key.

  4. Enter a descriptive name, then select scopes:

    • workspaces

    • accounts

    • posts

  5. Click Create.

  6. Copy and store the key securely—this value will not be shown again.

Step 2: List Workspaces

Before making other requests, let's retrieve your workspaces. The workspace ID is required in the header for most API operations:

Sample Response

Now you can use a workspace ID in your subsequent requests by including it in the header:

Step 3: List Social Accounts

Next, let's retrieve the social media accounts in your workspace. You'll need the account IDs to specify where to publish your posts:

Expected Response

Make note of the account IDs as you'll need them to specify where to publish your content in the next step.

Step 4: Create a Scheduled Post

Make your first scheduled post with one API call:

Sample Response

The API returns a job ID that you can use to check the status of your request:

Step 5: Poll Job Status

Posts are created asynchronously. Use the returned job_id to check progress:

Successful Job Response

Failed Job Response

If there's an error with your request, the response will include details about what went wrong:

Step 6: Verify Scheduled Posts

List your scheduled posts to confirm creation:

Sample Response

Understanding the Workflow

  1. Generate an API key

  2. List workspaces → pick a workspace ID

  3. List accounts → pick account IDs

  4. Submit a post creation request

  5. Poll job status until completed

  6. Fetch posts to verify

This async pattern scales across multiple workspaces, accounts, and post types.

Next Steps

For full API details, see the API Reference. For assistance, contact [email protected].

Last updated

Was this helpful?