Hyperbrowser
API actions for the Hyperbrowser integration.
Hyperbrowser
Gather your own social media connections and look up profile details using Hyperbrowser's automated browser (starting with LinkedIn).
Look up profile details
Visit one profile and gather details you can use to qualify leads: name, headline, bio, location, recent posts, and any emails or phone numbers that are available (often not shown on the platform).
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
profile_url | string | Yes | Web address of the profile to look up — for example, one returned by the List followers/connections action. |
Response
{
"bio": "Building tools for go-to-market teams.",
"emails": [],
"headline": "Founder at Acme",
"location": "San Francisco, CA",
"name": "Jane Doe",
"phones": [],
"profile_url": "https://www.linkedin.com/in/jane-doe",
"recent_posts": [
"Hiring two AEs this quarter!"
]
}List followers/connections
List one page of the connected account's own friends or followers. To get more, run the action again with the next-page marker from the previous result, and keep the limit small so each run finishes in time.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
limit | number | No | Maximum number of people to return per page (keep this small; default 25). |
cursor | string | No | Leave empty for the first page. To get the next page, use the next-page marker returned by the previous result. |
Response
{
"followers": [
{
"headline": "Founder at Acme",
"name": "Jane Doe",
"profile_url": "https://www.linkedin.com/in/jane-doe"
}
],
"next_cursor": null
}Verify social login
Check whether the connected Hyperbrowser Profile is still logged in to the platform, since saved logins can expire over time. Returns a simple yes or no.
Response
{
"authenticated": true,
"platform": "linkedin"
}