Authorizations
API key passed in the header
Response
Successfully retrieved status for all browser sessions
curl --request GET \
--url https://api.anchorbrowser.io/v1/sessions/all/status \
--header 'anchor-api-key: <api-key>'{
"data": {
"count": 123,
"items": [
{
"session_id": "<string>",
"status": "<string>",
"created_at": "2023-11-07T05:31:56Z"
}
]
}
}Retrieves status information for all browser sessions associated with the API key.
curl --request GET \
--url https://api.anchorbrowser.io/v1/sessions/all/status \
--header 'anchor-api-key: <api-key>'{
"data": {
"count": 123,
"items": [
{
"session_id": "<string>",
"status": "<string>",
"created_at": "2023-11-07T05:31:56Z"
}
]
}
}API key passed in the header
Successfully retrieved status for all browser sessions
Show child attributes
Was this page helpful?