v3

latestOpenAPI 3.1.0raw.githubusercontent.com2026-08-012582298.4 KB
Social Sets

List social sets

Retrieve all social sets (accounts) you can access. This includes accounts you own directly and accounts that belong to teams you are a member of.

get/v2/social-sets

Query parameters

limitinteger nullable

Maximum number of items to return per page

Maximum number of items to return per page

offsetinteger

Number of items to skip from the beginning

Number of items to skip from the beginning

Response

OK

countinteger required
limitinteger required
offsetinteger required
nextstring nullable required
previousstring nullable required

Example response

{
  "results": [
    {
      "id": 12345,
      "username": "elonmusk",
      "name": "Elon Musk",
      "profile_image_url": "https://typefully-user-avatars.s3.amazonaws.com/_generic/account/537/twitter.jpeg",
      "team": {
        "id": "abc123def4567890",
        "name": "Marketing Team"
      }
    }
  ]
}