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

# Recherche approfondie



## OpenAPI

````yaml fr/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 permettant d’interagir avec les services Firecrawl pour réaliser des
    tâches de scraping et de crawling web.
  title: Firecrawl API
  version: v1
servers:
  - url: https://api.firecrawl.dev/v1
security:
  - bearerAuth: []
paths:
  /deep-research/{id}:
    parameters:
      - description: L’identifiant de la tâche de recherche
        in: path
        name: id
        required: true
        schema:
          format: uuid
          type: string
    get:
      tags:
        - Research
      summary: >-
        Obtenir le statut et les résultats d'une opération de recherche
        approfondie
      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: Affiché lorsque le format JSON est utilisé
                        nullable: true
                        type: object
                      maxDepth:
                        type: integer
                      sources:
                        items:
                          properties:
                            description:
                              description: >-
                                Description extraite de la page, peut être une
                                chaîne de caractères ou un tableau de chaînes de
                                caractères
                              oneOf:
                                - type: string
                                - items:
                                    type: string
                                  type: array
                            favicon:
                              type: string
                            title:
                              description: >-
                                Titre extrait de la page, peut être une chaîne
                                de caractères ou un tableau de chaînes
                              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: Réponse en cas de succès
        '404':
          content:
            application/json:
              schema:
                properties:
                  error:
                    example: Research job not found
                    type: string
                  success:
                    example: false
                    type: boolean
                type: object
          description: Tâche de recherche introuvable
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      scheme: bearer
      type: http

````