Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
JavaScript
const options = {method: 'GET', headers: {'X-Browser-Use-API-Key': '<api-key>'}}; fetch('https://api-staging-ufcbwvyv9yifyyvc3.browser-use.com/api/v1/project', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
curl --request GET \ --url https://api-staging-ufcbwvyv9yifyyvc3.browser-use.com/api/v1/project \ --header 'X-Browser-Use-API-Key: <api-key>'
import requestsurl = "https://api-staging-ufcbwvyv9yifyyvc3.browser-use.com/api/v1/project"headers = {"X-Browser-Use-API-Key": "<api-key>"}response = requests.get(url, headers=headers)print(response.text)
{ "id": "<string>", "name": "<string>", "createdAt": "2023-11-07T05:31:56Z" }
{ "detail": "<string>"}
{ "detail": [ { "loc": [ "<string>" ], "msg": "<string>", "type": "<string>" } ]}
Account identity. The ‘/me’ / validate-my-key call (cheap DB read, no billing).
Successful Response
Account identity — the '/me' / validate-my-key response.
Was this page helpful?