> ## Documentation Index
> Fetch the complete documentation index at: https://docs.hooked.so/llms.txt
> Use this file to discover all available pages before exploring further.

# List Accounts

> Get all social accounts analyzed by your team

## Overview

This endpoint returns all social media accounts that have been analyzed by your team. Use this to view your saved creators and their analytics.

### Query Parameters

<ParamField query="platform" type="string">
  Filter by platform:

  * `tiktok`: TikTok accounts only
  * `youtube`: YouTube accounts only
  * Omit to get accounts from all platforms
</ParamField>

<ParamField query="limit" type="number" default="50">
  Number of accounts to return (1-100)
</ParamField>

<ParamField query="offset" type="number" default="0">
  Pagination offset
</ParamField>

### Response

<ResponseField name="success" type="boolean">
  Indicates if the request was successful
</ResponseField>

<ResponseField name="data" type="object">
  <Expandable title="data">
    <ResponseField name="accounts" type="array">
      Array of analyzed account objects

      <Expandable title="account">
        <ResponseField name="id" type="string">
          Internal account ID
        </ResponseField>

        <ResponseField name="username" type="string">
          Account username/handle
        </ResponseField>

        <ResponseField name="platform" type="string">
          Platform (tiktok or youtube)
        </ResponseField>

        <ResponseField name="displayName" type="string">
          Display name
        </ResponseField>

        <ResponseField name="bio" type="string">
          Account bio/description
        </ResponseField>

        <ResponseField name="avatarUrl" type="string">
          Profile picture URL
        </ResponseField>

        <ResponseField name="isVerified" type="boolean">
          Whether the account is verified
        </ResponseField>

        <ResponseField name="stats" type="object">
          Follower count, following, videos, and likes
        </ResponseField>

        <ResponseField name="analytics" type="object">
          Engagement rate, virality score, and average views
        </ResponseField>

        <ResponseField name="topHashtags" type="array">
          Most used hashtags
        </ResponseField>

        <ResponseField name="keywords" type="array">
          Extracted content keywords
        </ResponseField>

        <ResponseField name="lastAnalyzed" type="string">
          Last analysis timestamp
        </ResponseField>

        <ResponseField name="profileUrl" type="string">
          Link to the profile
        </ResponseField>
      </Expandable>
    </ResponseField>

    <ResponseField name="total" type="number">
      Total accounts analyzed
    </ResponseField>
  </Expandable>
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET "https://api.hooked.so/v1/social/account/list?platform=tiktok" \
    -H "x-api-key: your_api_key_here"
  ```

  ```javascript Node.js theme={null}
  const response = await fetch('https://api.hooked.so/v1/social/account/list?platform=tiktok', {
    headers: {
      'x-api-key': 'your_api_key_here'
    }
  });

  const data = await response.json();
  console.log(data.data.accounts);
  ```

  ```python Python theme={null}
  import requests

  response = requests.get(
      'https://api.hooked.so/v1/social/account/list',
      params={'platform': 'tiktok'},
      headers={'x-api-key': 'your_api_key_here'}
  )

  accounts = response.json()['data']['accounts']
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "success": true,
    "data": {
      "accounts": [
        {
          "id": "clx123abc",
          "username": "fitnessguru",
          "platform": "tiktok",
          "displayName": "Fitness Guru",
          "bio": "Helping you get fit one video at a time",
          "avatarUrl": "https://cdn.tiktok.com/avatar.jpg",
          "isVerified": true,
          "stats": {
            "followers": 1500000,
            "following": 250,
            "videos": 342,
            "likes": 45000000
          },
          "analytics": {
            "engagementRate": 12.5,
            "viralityScore": 78.3,
            "avgViews": 890000
          },
          "topHashtags": ["fitness", "workout", "gym"],
          "keywords": ["fitness", "exercise", "motivation"],
          "keywordsStatus": "completed",
          "lastAnalyzed": "2024-01-15T10:30:00Z",
          "createdAt": "2024-01-01T00:00:00Z",
          "profileUrl": "https://www.tiktok.com/@fitnessguru"
        }
      ],
      "total": 15,
      "limit": 50,
      "offset": 0
    }
  }
  ```
</ResponseExample>

<Tip>
  Use the [Analyze Account](/api-reference/social/account-analyze) endpoint to add new accounts to your analysis list.
</Tip>


## OpenAPI

````yaml GET /v1/social/account/list
openapi: 3.0.0
info:
  title: Hooked API
  version: 1.0.0
  description: AI Video Generation API
servers:
  - url: https://api.hooked.so
security:
  - ApiKeyAuth: []
paths:
  /v1/social/account/list:
    get:
      tags:
        - Social Accounts
      summary: List Accounts
      description: Get all social accounts analyzed by your team
      operationId: listSocialAccounts
      parameters:
        - name: platform
          in: query
          schema:
            type: string
            enum:
              - tiktok
              - youtube
        - name: limit
          in: query
          schema:
            type: integer
            default: 50
        - name: offset
          in: query
          schema:
            type: integer
            default: 0
      responses:
        '200':
          description: Success
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````