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

> List profiles, newest-first. Filter by ?userId= (exact).



## OpenAPI

````yaml /cloud/openapi/v1.json get /browser-profiles
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:
  /browser-profiles:
    get:
      tags:
        - Browser profiles
      summary: List Browser Profiles
      description: List profiles, newest-first. Filter by ?userId= (exact).
      operationId: list_browser_profiles_browser_profiles_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: userId
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Userid
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BrowserProfileList'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    BrowserProfileList:
      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/BrowserProfile'
          type: array
          title: Items
      type: object
      required:
        - items
      title: BrowserProfileList
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    BrowserProfile:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        name:
          anyOf:
            - type: string
            - type: 'null'
          title: Name
        userId:
          anyOf:
            - type: string
            - type: 'null'
          title: Userid
          description: Your internal user id for this profile.
        lastUsedAt:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Lastusedat
          description: When a run last used this profile, if ever.
        createdAt:
          type: string
          format: date-time
          title: Createdat
      type: object
      required:
        - id
        - createdAt
      title: BrowserProfile
    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

````