Skip to main content
GET
List Accounts
This endpoint retrieves a paginated list of all connected platform accounts (like Twitter, LinkedIn, Facebook) associated with the authenticated user.

Headers

string
required
Your API authentication token. Value: Token YOUR_API_KEY

Response Structure

integer
Total number of accounts. Example: 2
integer
Maximum results per page. Example: 50
integer
Current page number. Example: 1
integer
Total number of pages. Example: 1
integer
Starting result index. Example: 1
integer
Ending result index. Example: 3
array
Array of account objects. Example: [...]
string | null
URL for next page (null if last page). Example: null
string | null
URL for previous page (null if first page). Example: null

Account Object Fields

string
Unique account identifier. Example: "6e5f36d27502ec69fda745ec59ead509"
string
Always “account”. Example: "account"
string
Platform username. Example: "MisterDebugger"
string
Account creation timestamp (ISO 8601). Example: "2025-02-11T08:28:14Z"
string
Last sync timestamp. Example: "2025-02-11T08:28:14Z"
string
HTTP status code. Example: "200"
string
Status information. Example: "synchronized"
string
Human-readable status message. Example: "Success!"
string
Account type identifier. Example: "facebook-sync"
object
Account parameters (default and user-specific). Example: {"default": {}, "user": {}}
string | null
Last update timestamp. Example: null
string
Account type identifier hash. Example: "16f5b7f91e8fc533eab88be973273a02"
array
Array of squids using this account. Example: []
string
Platform base URL. Example: "https://www.facebook.com"
array
Required cookie names for authentication. Example: [{"name": "c_user", "required": true}]
string
Base64 encoded platform icon. Example: "<base64 image data>"
Use this endpoint to check which platform accounts are currently synced and their status before running squids that require authentication.
The squids array shows which squids are currently using each account, helping you manage account usage across your projects.
Check the status_code_info field to identify accounts with expired cookies that need re-synchronization.

Code Examples

Response

200
401