GET
/
api
/
sessions
/
{session_id}
/
pages
curl --request GET \
  --url https://api.anchorbrowser.io/api/sessions/{session_id}/pages \
  --header 'anchor-api-key: <api-key>'
{
  "data": {
    "items": [
      {
        "frontend_url": "https://anchorforge.io/devtools-frontend/inspector.html?wss=connect.local.anchorbrowser.io/devtools/page/4471AF05DB5CB530971145A14848E5A7%3FsessionId=7d7b035c-d67e-4dfe-8c21-1af6a91b9dfc",
        "id": "4471AF05DB5CB530971145A14848E5A7",
        "title": "Documentation - Anchor Browser Docs",
        "url": "https://docs.anchorbrowser.io/introduction"
      }
    ]
  }
}

Authorizations

anchor-api-key
string
header
required

API key passed in the header

Path Parameters

session_id
string
required

The ID of the session to retrieve pages for.

Response

200
application/json
A collection of pages linked to the specified session, representing browser tabs. Each entry includes details such as the tab's URL and a link to its graphical interface, which can be used for debugging or embedding purposes.
data
object

The top-level object containing the list of pages.