FeedHorizon API
Accounts
GET
/accounts

Returns connected social media accounts for the authenticated user.

Authorization

bearerAuth
AuthorizationBearer <token>

API key with fh_ prefix. Pass as Authorization: Bearer fh_...

In: header

Response Body

application/json

curl -X GET "https://app.feedhorizon.dev/api/v1/accounts"
{
  "data": [
    {
      "id": "string",
      "profileId": "string",
      "platform": "string",
      "label": "string",
      "provider": "string",
      "providerAccountId": "string"
    }
  ]
}