> ## 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 Browsers

> List browsers, newest-first. Filters: status, agentSessionId, profileId,
createdAfter/createdBefore (see BrowserListParams).



## OpenAPI

````yaml /cloud/openapi/v1.json get /browsers
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:
  /browsers:
    get:
      tags:
        - Browsers
      summary: List Browsers
      description: |-
        List browsers, newest-first. Filters: status, agentSessionId, profileId,
        createdAfter/createdBefore (see BrowserListParams).
      operationId: list_browsers_browsers_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
        - name: status
          in: query
          required: false
          schema:
            anyOf:
              - enum:
                  - active
                  - stopped
                type: string
              - type: 'null'
            title: Status
        - name: agentSessionId
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: uuid
              - type: 'null'
            title: Agentsessionid
        - name: profileId
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: uuid
              - type: 'null'
            title: Profileid
        - name: createdAfter
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: date-time
              - type: 'null'
            title: Createdafter
        - name: createdBefore
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: date-time
              - type: 'null'
            title: Createdbefore
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BrowserList'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    BrowserList:
      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/Browser'
          type: array
          title: Items
      type: object
      required:
        - items
      title: BrowserList
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    Browser:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        status:
          type: string
          enum:
            - active
            - stopped
          title: Status
          description: '''active'' (running) or ''stopped''.'
        cdpUrl:
          anyOf:
            - type: string
            - type: 'null'
          title: Cdpurl
          description: Chrome DevTools Protocol endpoint. Null until the browser is booted.
        liveViewUrl:
          anyOf:
            - type: string
            - type: 'null'
          title: Liveviewurl
          description: Watch the browser live in a tab. Null until booted.
        agentSessionId:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Agentsessionid
          description: The agent session that used this browser, if any.
        createdAt:
          type: string
          format: date-time
          title: Createdat
      type: object
      required:
        - id
        - status
        - createdAt
      title: Browser
    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

````