> ## Documentation Index
> Fetch the complete documentation index at: https://perplexity-cf-proxied-beta.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Create Browser Session

> Create a new remote browser session for CDP-based automation.



## OpenAPI

````yaml post /v1/browser/sessions
openapi: 3.1.0
info:
  title: Perplexity AI API
  description: Perplexity AI API
  version: 1.0.0
servers:
  - url: https://api.perplexity.ai
    description: Perplexity AI API
security: []
paths:
  /v1/browser/sessions:
    post:
      summary: Create Browser Session
      description: Create a new remote browser session for CDP-based automation.
      operationId: create_browser_session
      requestBody:
        required: false
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateBrowserSessionRequest'
      responses:
        '200':
          description: Browser session created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BrowserSessionResponse'
        '429':
          description: Rate limit exceeded
        '500':
          description: Internal server error
      security:
        - HTTPBearer: []
components:
  schemas:
    CreateBrowserSessionRequest:
      type: object
      title: Create Browser Session Request
      description: Request body for creating a browser session (empty object)
      properties: {}
    BrowserSessionResponse:
      type: object
      title: Browser Session Response
      description: Response containing browser session details
      properties:
        session_id:
          type: string
          format: uuid
          title: Session ID
          description: Unique identifier for the browser session
        status:
          type: string
          title: Status
          description: Current status of the session
          enum:
            - running
            - stopped
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````