Publishing
GET
/platforms

The platform keys a profile can publish to. These are the values accepted by platforms on a publish and on an automation's destination. Static and workspace-independent.

Authorization

bearerAuth
AuthorizationBearer <token>

An API key created under Settings > API & Webhooks. Keys start with sf_live_.

In: header

Response Body

application/json

application/json

curl -X GET "https://example.com/platforms"
{  "data": [    {      "id": "tiktok",      "name": "TikTok",      "color": "#000000"    },    {      "id": "youtube",      "name": "YouTube",      "color": "#FF0000"    },    {      "id": "instagram",      "name": "Instagram",      "color": "#E4405F"    },    {      "id": "twitter",      "name": "Twitter/X",      "color": "#000000"    },    {      "id": "facebook",      "name": "Facebook",      "color": "#1877F2"    },    {      "id": "linkedin",      "name": "LinkedIn",      "color": "#0A66C2"    },    {      "id": "threads",      "name": "Threads",      "color": "#000000"    },    {      "id": "pinterest",      "name": "Pinterest",      "color": "#E60023"    },    {      "id": "reddit",      "name": "Reddit",      "color": "#FF4500"    },    {      "id": "bluesky",      "name": "Bluesky",      "color": "#0085FF"    }  ]}