GET
/
v1
/
sessions
/
{session_id}
/
pages
Get Browser Session Pages
curl --request GET \
  --url https://api.anchorbrowser.io/v1/sessions/{session_id}/pages \
  --header 'anchor-api-key: <api-key>'
[
  {
    "id": "<string>",
    "title": "<string>",
    "url": "<string>",
    "frontend_url": "<string>"
  }
]

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

Session pages retrieved successfully.

id
string
required

The unique identifier of the page.

title
string
required

The title of the page.

url
string
required

The URL of the page.

frontend_url
string
required

The frontend URL for accessing the page.