REST APIGET
Social Accounts
Retrieve connected social media accounts
GET
https://post.adaptlypost.com/post/api/v1/social-accountsReturns a list of all social media accounts connected to your workspace. Use the returned connection IDs when creating posts.
API Key (Bearer token)
Usage
Use the id values from this response as connection IDs when creating posts. Each account includes a displayName, username, and avatarUrl.
List all integrations
curl --request GET \
--url https://post.adaptlypost.com/post/api/v1/social-accounts \
--header 'Authorization: Bearer <api-key>'200
{
"accounts": [
{
"id": "conn_abc123",
"platform": "TWITTER",
"displayName": "Your Handle",
"username": "@yourhandle",
"avatarUrl": "https://pbs.twimg.com/profile_images/..."
},
{
"id": "conn_def456",
"platform": "LINKEDIN",
"displayName": "Your Company",
"username": "",
"avatarUrl": "https://media.licdn.com/..."
},
{
"id": "conn_ghi789",
"platform": "INSTAGRAM",
"displayName": "Your Profile",
"username": "yourprofile",
"avatarUrl": "https://scontent.cdninstagram.com/..."
}
]
}