List connected accounts
GET
/accounts
const url = 'https://api.dropslate.top/v1/accounts';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.dropslate.top/v1/accounts \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations”Responses
Section titled “ Responses ”Every channel this workspace has connected.
Media typeapplication/json
object
accounts
Array<object>
object
id
string
platform
string
displayName
string
handle
string
avatarUrl
string
status
string
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" } ]}