List Accounts
Returns the social accounts connected to your workspace.
GET /api/public/v1/accounts
Request Headers
| Header | Required | Value |
|---|---|---|
Authorization | Yes | Bearer YOUR_API_KEY |
Example Request
curl https://outstand.one/api/public/v1/accounts \
-H "Authorization: Bearer YOUR_API_KEY"
Response
{
"accounts": [
{
"id": "acc_abc123",
"network": "instagram",
"nickname": "My Brand",
"username": "mybrand",
"profile_picture_url": "https://cdn.outstand.one/avatars/abc123.jpg"
}
],
"total": 1
}
Use the returned id values in the accounts array when calling Create a Post. Only active, currently-connected accounts are returned. Connect new accounts from your dashboard under Accounts — the public API does not support connecting accounts directly.