> ## Documentation Index
> Fetch the complete documentation index at: https://firecrawl-claude-eager-dijkstra-dne9il.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Pesquisa aprofundada



## OpenAPI

````yaml pt-BR/api-reference/v1-openapi.json GET /deep-research/{id}
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 da Firecrawl e realizar tarefas de web
    scraping e crawling.
  title: Firecrawl API
  version: v1
servers:
  - url: https://api.firecrawl.dev/v1
security:
  - bearerAuth: []
paths:
  /deep-research/{id}:
    parameters:
      - description: O ID do job de pesquisa
        in: path
        name: id
        required: true
        schema:
          format: uuid
          type: string
    get:
      tags:
        - Research
      summary: Obtenha o status e os resultados de uma operação de pesquisa aprofundada
      operationId: getDeepResearchStatus
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  data:
                    properties:
                      activities:
                        items:
                          properties:
                            depth:
                              type: integer
                            message:
                              type: string
                            status:
                              type: string
                            timestamp:
                              format: date-time
                              type: string
                            type:
                              type: string
                          type: object
                        type: array
                      currentDepth:
                        type: integer
                      error:
                        type: string
                      expiresAt:
                        format: date-time
                        type: string
                      finalAnalysis:
                        type: string
                      json:
                        description: Exibido ao utilizar o formato JSON
                        nullable: true
                        type: object
                      maxDepth:
                        type: integer
                      sources:
                        items:
                          properties:
                            description:
                              description: >-
                                Descrição extraída da página; pode ser uma
                                string ou um array de strings
                              oneOf:
                                - type: string
                                - items:
                                    type: string
                                  type: array
                            favicon:
                              type: string
                            title:
                              description: >-
                                Título extraído da página; pode ser uma string
                                ou um array de strings
                              oneOf:
                                - type: string
                                - items:
                                    type: string
                                  type: array
                            url:
                              type: string
                          type: object
                        type: array
                      status:
                        enum:
                          - processing
                          - completed
                          - failed
                        type: string
                      totalUrls:
                        type: integer
                    type: object
                  success:
                    type: boolean
                type: object
          description: Resposta bem-sucedida
        '404':
          content:
            application/json:
              schema:
                properties:
                  error:
                    example: Research job not found
                    type: string
                  success:
                    example: false
                    type: boolean
                type: object
          description: Job de pesquisa não encontrado
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      scheme: bearer
      type: http

````