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

# 深度研究



## OpenAPI

````yaml zh/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: 用于与 Firecrawl 服务交互，以进行网页抓取和爬取任务的 API。
  title: Firecrawl API
  version: v1
servers:
  - url: https://api.firecrawl.dev/v1
security:
  - bearerAuth: []
paths:
  /deep-research/{id}:
    parameters:
      - description: 研究任务 ID
        in: path
        name: id
        required: true
        schema:
          format: uuid
          type: string
    get:
      tags:
        - Research
      summary: 获取深度研究任务的状态和结果
      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: 仅在使用 JSON 格式时显示
                        nullable: true
                        type: object
                      maxDepth:
                        type: integer
                      sources:
                        items:
                          properties:
                            description:
                              description: 从页面中提取的描述，可以是字符串或字符串数组
                              oneOf:
                                - type: string
                                - items:
                                    type: string
                                  type: array
                            favicon:
                              type: string
                            title:
                              description: 从页面提取的标题，类型可以是字符串或字符串数组
                              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: 成功的响应
        '404':
          content:
            application/json:
              schema:
                properties:
                  error:
                    example: Research job not found
                    type: string
                  success:
                    example: false
                    type: boolean
                type: object
          description: 未找到研究作业
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      scheme: bearer
      type: http

````