Skip to main content
POST
/
boxes
/
me
/
tg
Tg Install
const options = {
  method: 'POST',
  headers: {'X-Browser-Use-API-Key': '<api-key>', 'Content-Type': 'application/json'},
  body: JSON.stringify({bot_token: '<string>'})
};

fetch('https://api.browser-use.com/api/v3/boxes/me/tg', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "installed": true,
  "bot_username": "<string>",
  "deeplink": "<string>",
  "setup_token": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.browser-use.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

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

Body

application/json
bot_token
string
required

Response

Successful Response

installed
boolean
required
bot_username
string
required
setup_token
string
required