Get the browser_id

As you have created a task, you will get the browser_idin response
"browser_id": "3c90c3cc-0d44-4b50-8888-8dd2573605003a"

Get the URL of the browser tabs

Use this browser_idto get the URL of the tabs using the Get browser tabs API
curl --request GET
  --url https://app.nextbrowser.com/api/v1/browser/browser_id/{browser_id}/tabs
  --header 'Authorization: <api-key>'
Using the axample above you will create the following call:
curl --request GET
  --url https://app.nextbrowser.com/api/v1/browser/browser_id/3c90c3cc-0d44-4b50-8888-8dd2573605003a/tabs
  --header 'Authorization: <api-key>'
Do not forget to add you API key:
header "Authorization: x-api-key YOUR_API_KEY"

Get the debug URL

In the response, you will get the debug_url of each tab
{
    "success": true,
    "payload": {
        "tabs": [
            {
                "debug_url": "https://browser.app.nextbrowser.com/debugv2/4faba82a-43f7-4c6d-8533-eef19ac52ead/8caab1d9-df4c-4079-aa7a-4845b754f7e8/2DDA0D31C6F167691CA117FBF613147D/devtools/inspector.html?wss=browser.app.nextbrowser.com/debugv2/4faba82a-43f7-4c6d-8533-eef19ac52ead/8caab1d9-df4c-4079-aa7a-4845b754f7e8/2DDA0D31C6F167691CA117FBF613147D/devtools/",
                "title": "about:blank",
                "url": "about:blank"
            },
            {
                "debug_url": "https://browser.app.nextbrowser.com/debugv2/4faba82a-43f7-4c6d-8533-eef19ac52ead/8caab1d9-df4c-4079-aa7a-4845b754f7e8/66D593A114CC6E137BEE364EFA83425E/devtools/inspector.html?wss=browser.app.nextbrowser.com/debugv2/4faba82a-43f7-4c6d-8533-eef19ac52ead/8caab1d9-df4c-4079-aa7a-4845b754f7e8/66D593A114CC6E137BEE364EFA83425E/devtools/",
                "title": "New Tab",
                "url": "chrome://newtab/"
            }
        ]
    },
    "errors": {},
    "description": "Get Browser tabs."
}

Access debug URL using Ghrome bowser

  1. Use the link you get and append ?is-playground=true at the end of it
  2. Open the Chrome browser and paste the link
https://browser.app.nextbrowser.com/debugv2/4faba82a-43f7-4c6d-8533-eef19ac52ead/8caab1d9-df4c-4079-aa7a-4845b754f7e8/2DDA0D31C6F167691CA117FBF613147D/devtools/inspector.html?wss=browser.app.nextbrowser.com/debugv2/4faba82a-43f7-4c6d-8533-eef19ac52ead/8caab1d9-df4c-4079-aa7a-4845b754f7e8/2DDA0D31C6F167691CA117FBF613147D/devtools/?is-playground=true