GET
/v1/accountsList Accounts
Retrieve a paginated list of all connected platform accountsThis endpoint retrieves a paginated list of all connected platform accounts (like Twitter, LinkedIn, Facebook) associated with the authenticated user.
Headers
| Key | Value | Required |
|---|---|---|
| Authorization | Token YOUR_API_KEY | Yes |
Response Structure
total_results
integer
Example: 2
limit
integer
Example: 50
page
integer
Example: 1
total_pages
integer
Example: 1
result_from
integer
Example: 1
result_to
integer
Example: 3
data
array
Example: [...]
next
stringnull
Example: null
previous
stringnull
Example: null
Account Object Fields
id
string
Example: 6e5f36d27502ec69fda745ec59ead509
object
string
Example: account
username
string
Example: MisterDebugger
created_at
string
Example: 2025-02-11T08:28:14Z
last_synchronization_time
string
Example: 2025-02-11T08:28:14Z
status
string
Example: 200
status_code_info
string
Example: synchronized
status_code_description
string
Example: Success!
type
string
Example: facebook-sync
params
object
Example: {default: {}, user: {}}
updated_at
stringnull
Example: null
account_type_hash
string
Example: 16f5b7f91e8fc533eab88be973273a02
squids
array
Example: []
baseurl
string
Example: https://www.facebook.com
cookies
array
Example: [{name: c_user, required: true}]
icon
string
Example: <base64 image data>
Pro Tip
Use this endpoint to check which platform accounts are currently synced and their status before running squids that require authentication.
Note
The squids array shows which squids are currently using each account, helping you manage account usage across your projects.
Warning
Check the status_code_info field to identify accounts with expired cookies that need re-synchronization.