GET
/
api
/
v1
/
ping
import requests

BASE_URL = 'https://api.browser-use.com/api/v1'

response = requests.get(f'{BASE_URL}/ping')
if response.status_code == 200:
    print("Server is up and running")
{}

Use this endpoint to check if the server is running and responding. This is the only endpoint that doesn’t require authentication.

Response

A successful response has a 200 status code with an empty JSON object.

import requests

BASE_URL = 'https://api.browser-use.com/api/v1'

response = requests.get(f'{BASE_URL}/ping')
if response.status_code == 200:
    print("Server is up and running")
{}