NotexAI
  • Quickstart
  • Python SDK
  • Authentication
  • Examples
    • Navigation
    • Scraping Flow
  • Browser Sessions
    • Session Management
    • Start Session
    • Close Session
    • Health
  • Browser Navigation
    • Observe Page
    • Step In Page
    • Scrape Data
Powered by GitBook
On this page
  • Endpoint
  • Response
  • Example Response
  1. Browser Sessions

Health

This endpoint provides the health status of the service, including the number of active sessions and the current version.


Endpoint

GET /health


Response

Response Parameters

  • status (required):

    • Type: string

    • Description: The health status of the service. The value is healthy when the service is operational.

  • active_sessions (required):

    • Type: integer

    • Description: The number of active sessions currently managed by the service.

  • version (required):

    • Type: string

    • Description: The current version of the service.


Example Response

200 - application/json

{
    "status": "healthy",
    "active_sessions": 42,
    "version": "1.2.3"
}
PreviousClose SessionNextObserve Page

Last updated 4 months ago