PostHero API

v1 Reference

GET/accounts

List Accounts

Returns all connected social media accounts. Use the returned account IDs when creating posts.

Response

200
{
  "success": true,
  "data": [
    {
      "id": "abc123",
      "platform": "linkedin",
      "type": "personal",
      "name": "John Doe",
      "username": null,
      "avatar": "https://..."
    },
    {
      "id": "def456",
      "platform": "twitter",
      "type": "personal",
      "name": "@johndoe",
      "username": "johndoe",
      "avatar": "https://..."
    }
  ]
}