Quickstart Guide
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 Top Publer Ambassador or Enterprise account
Basic familiarity with HTTP/JSON APIs
A command-line tool (curl) or API client (Postman, Insomnia)
Step 1: Generate an API Key
Sign in to Publer and verify you have Ambassador or Enterprise access.
Go to Settings → Access & Login → API Keys.
Click Create API Key.
Enter a descriptive name, then select scopes:
workspaces
posts
accounts
users
media
job_status
locations
Click Create.
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
Generate an API key
List workspaces → pick a workspace ID
List accounts → pick account IDs
Submit a post creation request
Poll job status until
completed
Fetch posts to verify
This async pattern scales across multiple workspaces, accounts, and post types.
Next Steps
Explore Content Types (photos, videos, links, polls)
Dive into Media Handling and upload workflows
Learn about Publishing Methods (drafts, recurring posts)
Review Network Reference for platform-specific limits
For full API details, see the API Reference. For assistance, contact [email protected].
Last updated
Was this helpful?