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

# Listar sessões do Interact

> Obtenha suas sessões autônomas do Interact, com filtro opcional por status.

<div id="headers">
  ## Cabeçalhos
</div>

| Cabeçalho       | Valor              |
| --------------- | ------------------ |
| `Authorization` | `Bearer <API_KEY>` |

<div id="query-parameters">
  ## Parâmetros de query
</div>

| Parâmetro | Tipo   | Obrigatório | Descrição                                                 |
| --------- | ------ | ----------- | --------------------------------------------------------- |
| `status`  | string | Não         | Filtra pelo status da sessão: `"active"` ou `"destroyed"` |

<div id="response">
  ## Resposta
</div>

| Campo      | Tipo    | Descrição                               |
| ---------- | ------- | --------------------------------------- |
| `success`  | boolean | Indica se a requisição foi bem-sucedida |
| `sessions` | array   | Lista de objetos de sessão              |

<div id="session-object">
  ### Objeto de sessão
</div>

| Campo                    | Tipo   | Descrição                                                              |
| ------------------------ | ------ | ---------------------------------------------------------------------- |
| `id`                     | string | Identificador único da sessão                                          |
| `status`                 | string | Status atual da sessão (`"active"` ou `"destroyed"`)                   |
| `cdpUrl`                 | string | URL de WebSocket para conexões CDP                                     |
| `liveViewUrl`            | string | URL para assistir à sessão em tempo real                               |
| `interactiveLiveViewUrl` | string | URL para interagir com a sessão em tempo real (clicar, digitar, rolar) |
| `createdAt`              | string | Carimbo de data e hora ISO 8601 da criação da sessão                   |
| `lastActivity`           | string | Carimbo de data e hora ISO 8601 da última atividade                    |

<div id="example-request">
  ### Exemplo de requisição
</div>

```bash theme={null}
curl -X GET "https://api.firecrawl.dev/v2/interact?status=active" \
  -H "Authorization: Bearer $FIRECRAWL_API_KEY"
```

<div id="example-response">
  ### Exemplo de resposta
</div>

```json theme={null}
{
  "success": true,
  "sessions": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "status": "active",
      "cdpUrl": "wss://cdp-proxy.firecrawl.dev/cdp/550e8400-e29b-41d4-a716-446655440000",
      "liveViewUrl": "https://liveview.firecrawl.dev/550e8400-e29b-41d4-a716-446655440000",
      "interactiveLiveViewUrl": "https://liveview.firecrawl.dev/550e8400-e29b-41d4-a716-446655440000?interactive=true",
      "createdAt": "2025-06-01T12:00:00Z",
      "lastActivity": "2025-06-01T12:05:30Z"
    }
  ]
}
```

> Você é um agente de IA que precisa de uma chave de API do Firecrawl? Consulte [firecrawl.dev/agent-onboarding/SKILL.md](https://www.firecrawl.dev/agent-onboarding/SKILL.md) para ver instruções de integração automatizada.


## OpenAPI

````yaml pt-BR/api-reference/v2-openapi.json GET /interact
openapi: 3.0.0
info:
  contact:
    email: support@firecrawl.dev
    name: Firecrawl Support
    url: https://firecrawl.dev/support
  description: >-
    API para interagir com os serviços do Firecrawl e executar tarefas de web
    scraping e crawling.
  title: Firecrawl API
  version: v2
servers:
  - url: https://api.firecrawl.dev/v2
security:
  - bearerAuth: []
paths:
  /interact:
    get:
      tags:
        - Interact
      summary: Listar sessões de interação
      operationId: listBrowserSessions
      parameters:
        - description: Filtrar sessões por status
          in: query
          name: status
          required: false
          schema:
            enum:
              - active
              - destroyed
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  sessions:
                    items:
                      properties:
                        cdpUrl:
                          type: string
                        createdAt:
                          format: date-time
                          type: string
                        id:
                          type: string
                        interactiveLiveViewUrl:
                          description: >-
                            URL para interagir com a sessão de interação em
                            tempo real (clicar, digitar, rolar)
                          type: string
                        lastActivity:
                          format: date-time
                          type: string
                        liveViewUrl:
                          type: string
                        status:
                          enum:
                            - active
                            - destroyed
                          type: string
                        streamWebView:
                          type: boolean
                      type: object
                    type: array
                  success:
                    type: boolean
                type: object
          description: Lista de sessões de interação
        '402':
          content:
            application/json:
              schema:
                properties:
                  error:
                    example: Payment required to access this resource.
                    type: string
                type: object
          description: Pagamento necessário
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      scheme: bearer
      type: http

````