Getting Started
Introduction
The OmniSocials API allows you to programmatically manage your social media posts, media, and analytics across multiple platforms.
Base URL
Code
Quick Start
- Go to Settings > API in the OmniSocials dashboard
- Click Create API Key
- Select the scopes you need (
posts:read,posts:write,media:write,accounts:read,analytics:read,webhooks:manage) - Copy the generated key -- it will only be shown once
- Start making API calls!
Code
Rate Limiting
100 requests per minute per API key.
Response headers:
X-RateLimit-Limit: Maximum requests per minuteX-RateLimit-Remaining: Remaining requests in current windowX-RateLimit-Reset: Unix timestamp when the limit resets
Errors
| Status | Description |
|---|---|
200 | Success |
201 | Created |
204 | No content (successful deletion) |
400 | Bad request (validation error) |
401 | Unauthorized (invalid/missing API key) |
403 | Forbidden (insufficient permissions) |
404 | Not found |
429 | Too many requests (rate limit exceeded) |
500 | Internal server error |
Last modified on