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

# List browser sessions

> Returns a paginated list of browser sessions created by your API key.



## OpenAPI

````yaml /api-reference/openapi.json get /partner/browser-sessions
openapi: 3.1.0
info:
  title: Cr3dentials Partner API
  description: >-
    Integrate account verification into your application. Users verify their
    accounts through an iframe-based browser session, and you receive
    cryptographically attested proof of data authenticity.
  version: 1.0.0
  contact:
    name: Cr3dentials Support
    url: https://cr3dentials.xyz
servers:
  - url: https://app.cr3dentials.xyz/v1
    description: Production
  - url: https://staging.cr3dentials.xyz/v1
    description: Staging
security:
  - apiKey: []
paths:
  /partner/browser-sessions:
    get:
      tags:
        - Sessions
      summary: List browser sessions
      description: Returns a paginated list of browser sessions created by your API key.
      operationId: listBrowserSessions
      parameters:
        - name: status
          in: query
          required: false
          description: Filter by session status (e.g. `COMPLETED`, `ERROR`).
          schema:
            $ref: '#/components/schemas/SessionStatus'
        - name: limit
          in: query
          required: false
          description: Results per page (1–100).
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 20
        - name: offset
          in: query
          required: false
          description: Pagination offset.
          schema:
            type: integer
            minimum: 0
            default: 0
      responses:
        '200':
          description: Paginated sessions
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    example: success
                  data:
                    type: object
                    properties:
                      sessions:
                        type: array
                        items:
                          $ref: '#/components/schemas/SessionSummary'
                      total:
                        type: integer
                        example: 42
                      limit:
                        type: integer
                        example: 20
                      offset:
                        type: integer
                        example: 0
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  schemas:
    SessionStatus:
      type: string
      description: Lifecycle status of a verification session.
      enum:
        - CREATED
        - INITIALIZING
        - READY
        - CONNECTED
        - LOADING_TREE
        - RUNNING
        - AWAITING_USER
        - COLLECTING_DATA
        - VERIFYING
        - COMPLETED
        - PARTIAL_COMPLETE
        - ERROR
        - CANCELLED
        - TERMINATED
    SessionSummary:
      type: object
      properties:
        sessionId:
          type: string
          format: uuid
        status:
          $ref: '#/components/schemas/SessionStatus'
        platformId:
          type: integer
        createdAt:
          type: string
          format: date-time
        completedAt:
          type:
            - string
            - 'null'
          format: date-time
  responses:
    Unauthorized:
      description: Missing or invalid API key
      content:
        application/json:
          example:
            statusCode: 401
            message: Unauthorized
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: 'Your partner API key. Alternatively, pass `Authorization: Bearer <key>`.'

````