GET
/
users
/
me
JavaScript
import BrowserUse from 'browser-use-sdk';

const client = new BrowserUse({
  apiKey: 'My API Key',
});

const me = await client.users.me.retrieve();

console.log(me.additionalCreditsBalanceUsd);
{
  "monthlyCreditsBalanceUsd": 123,
  "additionalCreditsBalanceUsd": 123,
  "email": "<string>",
  "name": "<string>",
  "signedUpAt": "2023-11-07T05:31:56Z"
}

Authorizations

X-Browser-Use-API-Key
string
header
required

Response

200 - application/json

Successful Response

View model for user information

Attributes: monthly_credits_balance_usd: The monthly credits balance in USD additional_credits_balance_usd: The additional credits balance in USD email: The email address of the user name: The name of the user signed_up_at: The date and time the user signed up