AgentQL · Schema

CreateSessionResponse

Response containing the remote browser session details.

AgentsArtificial IntelligenceWeb ScrapingData ExtractionBrowser AutomationREST API

Properties

Name Type Description
session_id string Unique identifier for the created session.
cdp_url string WebSocket URL for Chrome DevTools Protocol access.
expires_at string ISO 8601 timestamp when the session will expire.
View JSON Schema on GitHub

JSON Schema

agentql-create-session-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/agentql/refs/heads/main/json-schema/agentql-create-session-response-schema.json",
  "title": "CreateSessionResponse",
  "description": "Response containing the remote browser session details.",
  "type": "object",
  "properties": {
    "session_id": {
      "type": "string",
      "description": "Unique identifier for the created session.",
      "example": "sess-a1b2c3d4e5f6"
    },
    "cdp_url": {
      "type": "string",
      "format": "uri",
      "description": "WebSocket URL for Chrome DevTools Protocol access.",
      "example": "wss://tetra.agentql.com/sessions/sess-a1b2c3d4/cdp"
    },
    "expires_at": {
      "type": "string",
      "format": "date-time",
      "description": "ISO 8601 timestamp when the session will expire.",
      "example": "2026-04-19T15:30:00Z"
    }
  }
}