GET/v1/accounts/{account_hash}

Get Account Details

Retrieve detailed information about a specific platform account

This endpoint retrieves detailed information about a specific platform account using its hash ID.

Headers

KeyValueRequired
AuthorizationToken YOUR_API_KEYYes

Response Field Explanations

id
string
Unique account identifier
Example: d3e97f2cd33658f301bdbe807402ab30
object
string
Always "account"
Example: account
username
string
Platform username
Example: hashamxcom
created_at
string
Account creation timestamp (ISO 8601)
Example: 2024-03-08T15:15:53Z
last_synchronization_time
string
Last successful sync timestamp
Example: 2024-12-16T10:28:43Z
status
string
HTTP status code indicating account health
Example: 200
status_code_info
string
Status information keyword
Example: synchronized
status_code_description
string
Human-readable status message
Example: Success!
type
string
Account type identifier
Example: twitter-sync
params
object
Account parameters with default and user-specific settings
Example: {default: {}, user: {}}
updated_at
stringnull
Last update timestamp
Example: null
account_type_hash
string
Reference to account type definition
Example: 9853173fc00a940a33d7a420c176ad3b
squids
array
Array of squids currently using this account
Example: [{name: Twitter Scraper, hash_value: fcd3...}]
baseurl
string
Platform base URL
Example: https://x.com
cookies
array
Required cookie specifications
Example: [{name: auth_token, required: true}]
icon
string
Base64 encoded platform icon
Example: <base64 image data>

Parameters

account_hashstring
Required
The unique identifier (hash) of the account
Example: d3e97f2cd33658f301bdbe807402ab30
Pro Tip

Pro Tip

Check the squids array to see which squids are using this account before deleting or updating it.
Warning

Warning

Monitor the status field regularly. A status of 429 or 401 indicates cookie expiration and requires re-synchronization.
Note

Note

The params object contains both default limits and current user-configured values, useful for understanding account usage.