votte
Twitter / X GithubVotte
  • Documentation
  • API Reference
  • debug
    • Session Debug Info
  • Session Replay
  • page
    • Step
  • Scrape
  • sessions
    • Start Session
  • Session Status
  • Stop Session
  • scrape
    • Scrape Webpage
Powered by GitBook

@ 2025 Votte Labs

On this page
Export as PDF

Session Status

Get the current status of a session, including its metadata and state.

You can retrieve the status of a session at any time whether it is active or not.

Session states also contain all steps (i.e actions and observations) performed during the session. You can use this information to reconstruct the session execution and diagnose potential issues.

GET/sessions/{session_id}
{
  "session_id": "<string>",
  "timeout_minutes": 123,
  "created_at": "2023-11-07T05:31:56Z",
  "closed_at": "2023-11-07T05:31:56Z",
  "last_accessed_at": "2023-11-07T05:31:56Z",
  "duration": "<string>",
  "status": "active",
  "error": "<string>",
  "proxies": false,
  "browser_type": "chromium"
}
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}
PreviousStart SessionNextStop Session

Last updated 15 days ago