AgentQL · JSON Structure

Agentql Create Session Response Structure

Response containing the remote browser session details.

Type: object Properties: 3
AgentsArtificial IntelligenceWeb ScrapingData ExtractionBrowser AutomationREST API

CreateSessionResponse is a JSON Structure definition published by AgentQL, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

session_id cdp_url expires_at

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/agentql/refs/heads/main/json-structure/agentql-create-session-response-structure.json",
  "name": "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": "uri",
      "description": "WebSocket URL for Chrome DevTools Protocol access.",
      "example": "wss://tetra.agentql.com/sessions/sess-a1b2c3d4/cdp"
    },
    "expires_at": {
      "type": "datetime",
      "description": "ISO 8601 timestamp when the session will expire.",
      "example": "2026-04-19T15:30:00Z"
    }
  }
}