> ## Documentation Index
> Fetch the complete documentation index at: https://browseruse-0aece648-larsen-v1-unified-docs.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# List Browser Use Sessions

> List browser-use conversations, newest-first. MOCKED items.



## OpenAPI

````yaml /cloud/openapi/v1.json get /agents/browser-use/sessions
openapi: 3.1.0
info:
  title: Browser Use API v1
  summary: Unified /api/v1 preview spec, non-production only
  version: 1.0.0
servers:
  - url: https://api-staging-ufcbwvyv9yifyyvc3.browser-use.com/api/v1
    description: Browser Use API v1 (staging)
security: []
paths:
  /agents/browser-use/sessions:
    get:
      tags:
        - 'Agent: browser-use'
      summary: List Browser Use Sessions
      description: List browser-use conversations, newest-first. MOCKED items.
      operationId: list_browser_use_sessions_agents_browser_use_sessions_get
      parameters:
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 200
            minimum: 1
            default: 50
            title: Limit
        - name: cursor
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Cursor
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BrowserUseSessionList'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    BrowserUseSessionList:
      properties:
        nextCursor:
          anyOf:
            - type: string
            - type: 'null'
          title: Nextcursor
          description: Cursor for the next page, or null
        hasMore:
          type: boolean
          title: Hasmore
          description: Whether more pages exist
          default: false
        items:
          items:
            $ref: '#/components/schemas/BrowserUseSession'
          type: array
          title: Items
      type: object
      required:
        - items
      title: BrowserUseSessionList
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    BrowserUseSession:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        title:
          anyOf:
            - type: string
            - type: 'null'
          title: Title
          description: LLM-generated label from the opening task; null until ready.
        busy:
          type: boolean
          title: Busy
          description: True if a run is currently active (a follow-up would 409).
        latestRunId:
          anyOf:
            - type: string
            - type: 'null'
          title: Latestrunid
          description: Most recent run in this thread.
        createdAt:
          type: string
          format: date-time
          title: Createdat
        updatedAt:
          type: string
          format: date-time
          title: Updatedat
      type: object
      required:
        - id
        - busy
        - createdAt
        - updatedAt
      title: BrowserUseSession
      description: >-
        One browser-use conversation. Emergent — minted by the first run, never

        created directly. `busy` tells you whether a new POST /runs would 409
        (browser-use

        does not queue).
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-Browser-Use-API-Key

````