Social0|Docs
Integrations

REST API for integrations

Programmatic access to Social0 — the interface the MCP server and custom integrations use.

Overview

The Social0 REST API at https://api.social0.app/v1 is the underlying interface for the MCP server, scripts, and custom apps. Authenticate with Authorization: Bearer sk_live_….

Higher-level option: If you use Claude, Cursor, or ChatGPT, start with the MCP Server instead of calling REST directly.

Base URL

EnvironmentURL
Productionhttps://api.social0.app
v1 prefixhttps://api.social0.app/v1
Interactive docsapi.social0.app/docs
OpenAPI specapi.social0.app/openapi.json

Complete API documentation

For the full reference including webhooks, idempotency, rate limits, and OpenAPI:

MCP mapping

MCP toolREST endpoint
list_accountsGET /v1/accounts
create_postPOST /v1/posts
publish_nowPOST /v1/posts/publish
publish_postPOST /v1/posts/:id/publish
get_publish_statusGET /v1/jobs/:trackingId
upload_mediapresign → PUT → confirm

See MCP tools reference for all 13 tools.

Error format

All /v1 errors:

{
  "error": {
    "code": "invalid_api_key",
    "message": "API key is invalid."
  }
}

See Errors.

Rate limits

PlanRequests/hour
Free60
Starter300
Growth1,000
Pro5,000

See Rate limits.

On this page