> ## Documentation Index
> Fetch the complete documentation index at: https://docs-preview.webcompute.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# List browsers



## OpenAPI

````yaml /openapi/webcompute.json get /v1/browsers
openapi: 3.0.0
info:
  title: Webcompute API
  description: >-
    Public Webcompute REST API for managed browsers, browser-control execution,
    resources, quick actions, and health checks.
  version: 0.1.0
servers:
  - url: https://api.webcompute.dev
    description: Webcompute production API
security:
  - bearer: []
tags:
  - name: Health
    description: Public liveness and readiness checks.
  - name: Browsers
    description: >-
      Managed browser lifecycle, browser control, status, blockers, and
      resources.
  - name: Quick Actions
    description: Ephemeral browser actions for scrape, screenshot, and PDF generation.
paths:
  /v1/browsers:
    get:
      tags:
        - Browsers
      summary: List browsers
      operationId: BrowserController_list
      parameters:
        - name: status
          required: false
          in: query
          description: Filter by browser status
          schema:
            type: array
            items:
              type: string
              enum:
                - creating
                - ready
                - stopping
                - stopped
                - resuming
                - recovering
                - closing
                - closed
                - failed
        - name: limit
          required: false
          in: query
          description: Items per page (max 100)
          schema:
            default: 20
            type: number
        - name: cursor
          required: false
          in: query
          description: Pagination cursor returned by a previous list response
          schema:
            type: string
        - name: createdAfter
          required: false
          in: query
          description: Return browsers created after this ISO timestamp
          schema:
            type: string
        - name: createdBefore
          required: false
          in: query
          description: Return browsers created before this ISO timestamp
          schema:
            type: string
      responses:
        '200':
          description: Paginated browser list
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BrowserListResponseDto'
      security:
        - bearer: []
components:
  schemas:
    BrowserListResponseDto:
      type: object
      properties:
        items:
          type: array
          description: Browser items for the current cursor page.
          items:
            type: object
        limit:
          type: number
          description: Items requested for this cursor page.
          example: 20
        hasMore:
          type: boolean
          description: Whether another page is available.
          example: true
        nextCursor:
          type: string
          description: Cursor to pass as the next list request cursor.
          example: >-
            eyJjcmVhdGVkQXQiOiIyMDI2LTA1LTE3VDAwOjAwOjAwLjAwMFoiLCJpZCI6ImJyb3dzZXJfMSJ9
      required:
        - items
        - limit
        - hasMore
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: API key
      type: http

````