Skip to main content
GET
/
api
/
profile
/
{id}
JavaScript
import { Hyperbrowser } from '@hyperbrowser/sdk';

const client = new Hyperbrowser({ apiKey: 'your-api-key' });

await client.profiles.get('profile-id');
{
  "id": "<string>",
  "name": "<string>",
  "teamId": "<string>",
  "createdAt": "<string>",
  "updatedAt": "<string>"
}

Authorizations

x-api-key
string
header
required

Path Parameters

id
string
required

Response

Profile details

id
string
name
string | null
teamId
string
createdAt
string<iso8601>
updatedAt
string<iso8601>