GET/v1/account_types

List Account Types

Retrieve available platform account types and their authentication requirements

Some crawlers require user authentication (like Facebook, LinkedIn) through cookies or session tokens. The account_type object describes the required credentials for such modules.

Account Type Fields

id
Type:
string
Description:
Unique identifier of the account type
name
Type:
string
Description:
The technical name of the account type (e.g., facebook-sync)
domain
Type:
string
Description:
Name of the platform or website this account type connects to (e.g., Facebook)
baseurl
Type:
string
Description:
The base URL for the platform's login or data-fetching endpoints
cookies
Type:
array
Description:
A list of cookie names required for authentication. Some cookies may be marked as required or optional

Notes

  • If the cookies array is empty, it means all cookies from the user session are required for authentication.
  • Required cookies must be provided for the crawler to work. Missing cookies will result in authentication failure.

For implementation, always verify the required cookies in the cookies array when preparing your account object for a run.

Account Limits

Some account types include a params object that defines limits or batch configurations for the crawler when authenticated. These values help control usage and message sending.

Account Limit Parameters

[attribute]
Type:
object
Description:
Represents the daily limit for a specific attribute (e.g., messages, profiles, searches)
batch
Type:
object
Description:
(Optional) Defines the maximum number of actions per launch based on the attribute (e.g., messages, profiles)
batch_hours
Type:
object
Description:
(Optional) Defines the delay in hours between batch launches during the day

Headers

KeyValueRequired
AuthorizationToken YOUR_API_KEYYes
Pro Tip

Pro Tip

Use this endpoint to discover which platforms support authenticated scraping and what credentials they require.
Note

Note

Account types with empty cookies arrays require all session cookies. Use browser dev tools to extract the full cookie set.
Warning

Warning

Pay attention to the params object for rate limits. Exceeding these limits may result in account suspension on the target platform.
Pro Tip

Pro Tip

The batch and batch_hours parameters help you avoid triggering anti-bot measures by spacing out requests throughout the day.