Rebrowser API
The base url for all endpoints is https://rebrowser.net/api
All endpoints require a parameter apiKey
which could be found on Dashboard / API.
Usage example
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
fetch('https://rebrowser.net/api/startRun?apiKey=API_KEY&profileId=PROFILE_ID') .then(response => { console.log(response) /* { run: { id: 1337, secretToken: 'xxx', browserWSEndpoint: 'wss://ws.rebrowser.net/...', cdpEndpoints: { version: 'https://ws.rebrowser.net/cdp/json/version?secretToken=xxx', list: 'https://ws.rebrowser.net/cdp/json/list?secretToken=xxx' } } } */ })