Skip to content

List connected accounts

GET
/accounts
curl --request GET \
--url https://api.dropslate.top/v1/accounts \
--header 'Authorization: Bearer <token>'

Every channel this workspace has connected.

Media typeapplication/json
object
accounts
Array<object>
object
id
string
platform
string
Allowed values: youtube instagram facebook threads tiktok
displayName
string
handle
string
nullable
avatarUrl
string
nullable
status
string
Allowed values: ok expired revoked
connectedAt
string format: date-time
Example
{
"accounts": [
{
"id": "acc_01",
"platform": "youtube",
"displayName": "Dropslate Demo",
"handle": "@dropslate",
"status": "ok",
"connectedAt": "2026-08-01T09:00:00.000Z"
}
]
}