Desearch文档
首页精选前往研究产品文档
首页精选前往研究产品文档
    • Desearch功能更新
    • Desearch产品介绍
    • 快速上手
    • 模式特点
    • Desearch 提示词技巧指南
    • 知识库使用指南
    • 用户账户与会员使用指南
    • Desearch MCP使用文档
    • Desearch API使用文档

    Desearch API使用文档

    Desearch#

    Base URLs: desearch.zeelin.cn

    Authentication#

    对外开放的接口#

    POST 创建一个会话的任务#

    POST /api/conversation/anew
    Body 请求参数
    {
      "sessionId": "",
      "content": "帮我分析一下小米汽车的前景",
      "thinking": "deep",
      "workflow": "",
      "moreSettings": {}
    }

    请求参数#

    名称位置类型必选中文名说明
    x-api-keyheaderstring是none
    bodybodyobject否none
    » sessionIdbodystring是会话ID新发起会话传空字符串;多轮会话传会话ID;
    » contentbodystring是会话问题none
    » thinkingbodystring是思考模式deep:深度模式;major:专家模式;smart:普通模式
    » workflowbodystring是执行模式深度、专家、普通模式下传空字符串;其他模式下需要根据配置传参
    » moreSettingsbodyobject是更多配置none
    返回示例
    200 Response
    {
      "code": 200,
      "v": "0.0.913",
      "msg": "成功",
      "data": {
        "thinking": "deep",
        "workflow": "",
        "sessionId": "3121642f186242479b575d72fec3b5d0",
        "questionId": 37540,
        "content": "帮我分析一下小米汽车的前景",
        "short": "WId4PKPa"
      }
    }

    返回结果#

    状态码状态码含义说明数据模型
    200OKnoneInline

    返回数据结构#

    状态码 200
    名称类型必选约束中文名说明
    » codeintegertruenone返回码none
    » vstringtruenone版本号none
    » msgstringtruenone提示文字none
    » dataobjecttruenone数据内容none
    »» thinkingstringtruenone思考模式none
    »» workflowstringtruenone执行模式none
    »» sessionIdstringtruenone会话IDnone
    »» questionIdintegertruenone问题IDnone
    »» contentstringtruenone问题内容none
    »» shortstringtruenone短字符none

    GET 查询我的会话列表#

    GET /api/conversation/list

    请求参数#

    名称位置类型必选中文名说明
    pageSizequeryinteger是每页数量
    pageNoqueryinteger是页数
    keywordquerystring否问题关键词搜索
    startTimequerystring否会话创建时间搜索范围
    endTimequerystring否会话创建时间搜索范围
    thinkingquerystring否思考模式
    workflowquerystring否执行模式
    x-api-keyheaderstring否none
    返回示例
    200 Response
    {
      "code": 200,
      "v": "0.0.913",
      "msg": "成功",
      "data": {
        "count": 1,
        "pageNo": 1,
        "pageSize": 10,
        "lists": [
          {
            "sessionId": "3121642f186242479b575d72fec3b5d0",
            "title": "帮我分析一下小米汽车的前景",
            "createTime": "2025-07-02 09:15:08",
            "thinking": "deep",
            "workflow": "",
            "short": "WId4PKPa",
            "thinkingWorkflowName": "深度模式",
            "useKnowledge": 0,
            "onlyKnowledge": 0,
            "searchRange": "web"
          }
        ]
      }
    }

    返回结果#

    状态码状态码含义说明数据模型
    200OKnoneInline

    返回数据结构#

    状态码 200
    名称类型必选约束中文名说明
    » codeintegertruenone操作码none
    » vstringtruenone版本号none
    » msgstringtruenone提示文字none
    » dataobjecttruenone数据内容none
    »» countintegertruenone总数量none
    »» pageNointegertruenone当前页数none
    »» pageSizeintegertruenone每页数量none
    »» lists[object]truenone列表内容none
    »»» sessionIdstringfalsenone会话IDnone
    »»» titlestringfalsenone会话标题none
    »»» createTimestringfalsenone创建时间none
    »»» thinkingstringfalsenone思考模式none
    »»» workflowstringfalsenone执行模式none
    »»» shortstringfalsenone短码none
    »»» thinkingWorkflowNamestringfalsenone模式中文名none
    »»» useKnowledgeintegerfalsenone是否用到知识库none
    »»» onlyKnowledgeintegerfalsenone是否只用知识库查询none
    »»» searchRangestringfalsenone搜索范围none

    GET 查询会话当前状态#

    GET /api/conversation/status
    1: '正在进行中',
    2: '正常结束',
    3: '用户主动结束',
    4: '失败结束',
    5: '排队等待中'
    Body 请求参数
    {}

    请求参数#

    名称位置类型必选中文名说明
    sessionIdquerystring是会话ID
    x-api-keyheaderstring是none
    bodybodyobject否none
    返回示例
    200 Response
    {
      "code": 200,
      "v": "0.0.913",
      "msg": "成功",
      "data": {
        "status": 1,
        "thinking": "deep",
        "workflow": "",
        "message": "会话生成中",
        "content": "帮我分析一下小米汽车的前景",
        "time": "",
        "thinkingWorkflowName": "深度模式",
        "pptUrl": "",
        "wavUrl": "",
        "htmlUrl": "",
        "wavScriptUrl": "",
        "isShare": 0,
        "isMine": 1,
        "title": "帮我分析一下小米汽车的前景",
        "useKnowledge": 0,
        "onlyKnowledge": 0,
        "searchRange": "web"
      }
    }

    返回结果#

    状态码状态码含义说明数据模型
    200OKnoneInline

    返回数据结构#

    状态码 200
    名称类型必选约束中文名说明
    » codeintegertruenone操作码none
    » vstringtruenone版本号none
    » msgstringtruenone提示信息none
    » dataobjecttruenone数据内容none
    »» statusintegertruenone会话状态1: '正在进行中',
    2: '正常结束',
    3: '用户主动结束',
    4: '失败结束',
    5: '排队等待中'
    »» thinkingstringtruenone思考模式none
    »» workflowstringtruenone执行模式none
    »» messagestringtruenone当前会话状态说明none
    »» contentstringtruenone当前会话标题none
    »» timestringtruenone排队时长,提示文字none
    »» thinkingWorkflowNamestringtruenone会话模式none
    »» pptUrlstringtruenone导出ppt链接none
    »» wavUrlstringtruenone导出音频链接none
    »» htmlUrlstringtruenone导出网页链接none
    »» wavScriptUrlstringtruenone导出音频剧本链接none
    »» isShareintegertruenone是否已分享none
    »» isMineintegertruenone是否是我的会话none
    »» titlestringtruenone当前会话标题none
    »» useKnowledgeintegertruenone是否使用了知识库none
    »» onlyKnowledgeintegertruenone是否只使用了知识库none
    »» searchRangestringtruenone搜索范围none

    GET 查询会话的历史内容消息#

    GET /api/conversation/history
    倒序向上查询最近n个问题的报告内容

    请求参数#

    名称位置类型必选中文名说明
    sessionIdquerystring是none
    questionIdquerystring否只查询某个问题的内容
    pageSizequerystring是每页数量(查询最近n个问题)
    pageNoquerystring是页码
    x-api-keyheaderstring是none
    返回示例
    200 Response
    {
      "code": 200,
      "v": "0.0.913",
      "msg": "成功",
      "data": [
        {
          "id": 37575,
          "questionId": 0,
          "sessionId": "3121642f186242479b575d72fec3b5d0",
          "roleType": "user",
          "contentType": "text",
          "content": "你好",
          "others": {
            "user_id": 38,
            "team_id": 0,
            "only_knowledge": 0,
            "search_range": "web",
            "call_module": "application.deep_search.deepresearch_long",
            "call_func": "search",
            "modify_report_struct": 0,
            "knowledge_id": [],
            "doc_id": []
          },
          "createTime": "2025-07-02 09:52:50",
          "answers": [
            {
              "id": 37578,
              "questionId": 37575,
              "sessionId": "3121642f186242479b575d72fec3b5d0",
              "roleType": "system",
              "contentType": "text",
              "content": "您好,Desearch是一款 AI 驱动的深度研究辅助平台,支持普通模式、深度模式、行业研究与专家模式四大研究路径,覆盖从快速理解到系统分析、再到超万字级专家报告生成的全过程。用户可根据任务需求选择不同研究深度,通过多轮推理与多源数据整合,高效完成企业分析、市场洞察、招商研究等复杂研究任务。",
              "others": {},
              "createTime": "2025-07-02 09:52:55",
              "answers": null,
              "msg": ""
            }
          ],
          "msg": ""
        },
        {
          "id": 37540,
          "questionId": 0,
          "sessionId": "3121642f186242479b575d72fec3b5d0",
          "roleType": "user",
          "contentType": "text",
          "content": "帮我分析一下小米汽车的前景",
          "others": {
            "user_id": 38,
            "team_id": 0,
            "only_knowledge": 0,
            "search_range": "web",
            "call_module": "application.deep_search.deepresearch_long",
            "call_func": "search",
            "modify_report_struct": 1,
            "knowledge_id": [],
            "doc_id": [],
            "modify_report_struct_list": [
              {
                "first_name": "财务健康度与盈利潜力验证",
                "second_name": [
                  "季度亏损收窄与毛利率上升的财务指标解读",
                  "单车亏损4.5万元的成本结构拆解",
                  "产能爬坡对规模效应的量化影响测算"
                ],
                "words_count": 1500,
                "order": 1
              },
              {
                "first_name": "智能驾驶技术迭代路径分析",
                "second_name": [
                  "全栈自研算法与激光雷达融合方案的技术验证",
                  "城市NOA功能实测里程数据与接管率表现",
                  "Xiaomi Pilot 4.0系统向HyperOS智驾的演进逻辑"
                ],
                "words_count": 2000,
                "order": 2
              },
              {
                "first_name": "供应链深度绑定与产能规划",
                "second_name": [
                  "宁德时代/比亚迪双源电池供应体系稳定性评估",
                  "9100吨一体化压铸设备带来的成本降幅实证",
                  "北京工厂30万辆年产能的爬坡节奏预测"
                ],
                "words_count": 1800,
                "order": 3
              },
              {
                "first_name": "产品矩阵差异化竞争策略",
                "second_name": [
                  "SU7轿跑与YU7 SUV的定价区间重叠度分析",
                  "用户画像交叉风险与品牌认知转型挑战",
                  "800V碳化硅平台对充电效率提升的实际数据"
                ],
                "words_count": 1800,
                "order": 4
              },
              {
                "first_name": "生态系统协同效应验证",
                "second_name": [
                  "2.1亿台IoT设备互联的落地场景实现度",
                  "澎湃OS在车机协同中的算力分配瓶颈",
                  "智能座舱研发成本分摊机制的经济性测算"
                ],
                "words_count": 1500,
                "order": 5
              },
              {
                "first_name": "市场反馈与用户行为洞察",
                "second_name": [
                  "72小时盲订9.8万辆订单的质量验证",
                  "首批试驾用户43%转化率的归因分析",
                  "百度指数120万+日均搜索量的舆情特征"
                ],
                "words_count": 1200,
                "order": 6
              },
              {
                "first_name": "风险预警与应对能力评估",
                "second_name": [
                  "碳酸锂价格波动对毛利率的敏感性测试",
                  "品牌溢价能力不足导致的定价策略失效风险",
                  "新能源补贴退坡对价格带冲击的缓冲空间"
                ],
                "words_count": 1400,
                "order": 7
              },
              {
                "first_name": "行业专家观点交叉验证",
                "second_name": [
                  "产能爬坡与交付周期延长的矛盾解决路径",
                  "智能驾驶技术代际差异的客观量化对比",
                  "生态优势向市场竞争力的转化效率评估"
                ],
                "words_count": 1200,
                "order": 8
              }
            ]
          },
          "createTime": "2025-07-02 09:15:08",
          "answers": [
            {
              "id": 37541,
              "questionId": 37540,
              "sessionId": "3121642f186242479b575d72fec3b5d0",
              "roleType": "system",
              "contentType": "thinking",
              "content": "好的,我现在需要处理用户的任务,帮他分析小米汽车的前景,并生成三个搜索查询。用户是汽车行业分析师,所以我得结合他的专业背景来考虑。首先,我要理解他的原始查询意图。他想了解小米汽车的未来发展,可能需要详细的数据和行业分析。\n\n接下来,查看提供的上下文信息,里面有几个网页内容,提到了小米的销量增长、技术投入、产能扩张,还有面临的挑战,比如产能瓶颈和竞争加剧。这些信息可以帮助我确定哪些方面是分析师关注的,比如市场竞争力、供应链管理、技术研发等。\n\n然后,根据用户的职业背景,汽车行业分析师可能更关注市场趋势、竞争分析、供应链、技术发展、政策影响等。因此,改写查询时需要包含这些专业术语,比如“市场竞争力分析”、“供应链稳定性”、“产能爬坡效率”等。\n\n现在要考虑生成三个独特的查询。第一个可以关注市场竞争力,结合最近的销售数据和产品线扩展。第二个可以涉及供应链和产能问题,这些都是影响前景的重要因素。第三个可能需要包括技术研发和行业政策,比如自动驾驶法规和电池技术,这些都是当前行业的热点。\n\n还要注意时间范围,用户没有提到“最近”,所以默认一年内。但根据提供的网页内容,有些信息是2025年的,所以可能需要包含最新的数据。另外,确保每个查询都有不同的侧重点,避免重复。例如,一个侧重市场表现,一个侧重供应链和技术,另一个侧重政策和竞争环境。\n\n最后,提取核心研究对象,应该包括小米汽车、市场竞争力、供应链管理、智能驾驶技术等。确保这些关键词出现在查询中,提高搜索的精准度。\n",
              "others": {
                "id": "02175141891554132fb843e68f76107d322c5ae4adac16347373e",
                "title": "思考搜索条件"
              },
              "createTime": "2

    返回结果#

    状态码状态码含义说明数据模型
    200OKnoneInline

    返回数据结构#

    状态码 200
    名称类型必选约束中文名说明
    » codeintegertruenone操作码none
    » vstringtruenone当前版本号none
    » msgstringtruenone提示文字none
    » data[object]truenone数据内容none
    »» idintegerfalsenone问题IDnone
    »» questionIdintegerfalsenone当前回答的问题IDnone
    »» sessionIdstringfalsenone会话IDnone
    »» roleTypestringfalsenone角色类型none
    »» contentTypestringfalsenone内容类型none
    »» contentstringfalsenone回答内容none
    »» othersobjectfalsenone额外数据类型none
    »»» user_idintegertruenonenone
    »»» team_idintegertruenonenone
    »»» only_knowledgeintegertruenonenone
    »»» search_rangestringtruenonenone
    »»» call_modulestringtruenonenone
    »»» call_funcstringtruenonenone
    »»» modify_report_structintegertruenonenone
    »»» knowledge_id[string]truenonenone
    »»» doc_id[string]truenonenone
    »»» modify_report_struct_list[object]truenonenone
    »»»» first_namestringtruenonenone
    »»»» second_name[string]truenonenone
    »»»» words_countintegertruenonenone
    »»»» orderintegertruenonenone
    »» createTimestringfalsenone创建时间none
    »» answers[object]falsenone回答列表none
    »»» idintegertruenonenone
    »»» questionIdintegertruenonenone
    »»» sessionIdstringtruenonenone
    »»» roleTypestringtruenonenone
    »»» contentTypestringtruenonenone
    »»» contentstringtruenonenone
    »»» othersobjecttruenonenone
    »»»» keywords[string]truenonenone
    »»»» web_infos[object]truenonenone
    »»»»» urlstringtruenonenone
    »»»»» titlestringtruenonenone
    »»»»» push_timeintegertruenonenone
    »»»» totalsintegertruenonenone
    »»»» idstringtruenonenone
    »»»» titlestringtruenonenone
    »»» createTimestringtruenonenone
    »»» answersnulltruenonenone
    »»» msgstringtruenonenone
    »» msgstringfalsenone提示文字none

    POST 根据会话ID接流式输出接口#

    POST /api/conversation/re_chat
    Body 请求参数
    {
      "sessionId": "3121642f186242479b575d72fec3b5d0",
      "questionId": "37540"
    }

    请求参数#

    名称位置类型必选中文名说明
    x-api-keyheaderstring是none
    bodybodyobject否none
    » sessionIdbodystring是会话IDnone
    » questionIdbodystring否问题ID非必传,传入后则去查询固定问题的回答流式
    返回示例
    [
      {
        "type": "pong",
        "sessionId": "3121642f186242479b575d72fec3b5d0",
        "questionId": 37540
      }
    ]
    [
      {
        "others": {
          "id": "02175141891554132fb843e68f76107d322c5ae4adac16347373e"
        },
        "questionId": 37540,
        "sessionId": "3121642f186242479b575d72fec3b5d0",
        "type": "thinking",
        "thinking": "好的"
      }
    ]
    [
      {
        "others": {
          "keywords": [
            "帮我分析一下小米汽车的前景",
            "2025年小米汽车SU7与YU7车型市场竞争力及产能爬坡效率对比分析报告",
            "小米汽车供应链稳定性与800V碳化硅高压平台技术迭代对2026年交付目标的影响研究",
            "智能驾驶政策趋严背景下小米汽车L5级自动驾驶研发进展与行业竞品对比(2025-2026)"
          ]
        },
        "questionId": 37540,
        "sessionId": "3121642f186242479b575d72fec3b5d0",
        "type": "workflow",
        "workflow": "思考与优化搜索条件..."
      }
    ]
    [
      {
        "others": {},
        "questionId": 37540,
        "sessionId": "3121642f186242479b575d72fec3b5d0",
        "type": "text",
        "text": "汽车竞争力全景透视"
      }
    ]
    [
      {
        "others": {},
        "questionId": 37540,
        "sessionId": "3121642f186242479b575d72fec3b5d0",
        "type": "link",
        "link": [
          {
            "url": "https://m.toutiao.com/article/7483384295797621298/",
            "title": "小米:2024 年营收创新高 汽车业务向好",
            "id": 1,
            "push_time": 1742361180000,
            "file_type": "",
            "point_id": "",
            "page_no": "",
            "doc_name": "",
            "is_rag": 0,
            "media_label": ""
          },
          {
            "url": "https://baijiahao.baidu.com/s?id=1821921688291185938",
            "title": "小米SU7汽车成本全面解析,蓝盛高科关注高新科技发展趋势",
            "id": 2,
            "push_time": 1737519900000,
            "file_type": "",
            "point_id": "",
            "page_no": "",
            "doc_name": "",
            "is_rag": 0,
            "media_label": "其他"
          },
          {
            "url": "https://m.sohu.com/a/808961511_121976979/?pvid=000115_3w_a",
            "title": "小米汽车的产能爬坡,会否成为其发展的瓶颈问题?",
            "id": 3,
            "push_time": 1726299120000,
            "file_type": "",
            "point_id": "",
            "page_no": "",
            "doc_name": "",
            "is_rag": 0,
            "media_label": "其他商业媒体(未许可)"
          }
        ]
      }
    ]
    [
      {
        "others": {},
        "questionId": 37540,
        "sessionId": "3121642f186242479b575d72fec3b5d0",
        "type": "picture",
        "picture": [
          {
            "id": "http://zeelin/ik.png",
            "url": "http://zeelin.oss-cn-hangzhou.aliyuncs.com/deepseek_research/docs/normal_model_pic/4a095552c1d8f2dec775b442ba9f888d.png"
          },
          {
            "id": "http://zeelin/sl.png",
            "url": "http://zeelin.oss-cn-hangzhou.aliyuncs.com/deepseek_research/docs/normal_model_pic/1e5849493f9ab4bf861f4b10b3aa975d.png"
          }
        ]
      }
    ]
    [
      {
        "others": {},
        "questionId": 37540,
        "sessionId": "3121642f186242479b575d72fec3b5d0",
        "type": "chapter_editor",
        "chapter_editor": [
          {
            "first_name": "财务健康度与盈利潜力验证",
            "second_name": [
              "季度亏损收窄与毛利率上升的财务指标解读",
              "单车亏损4.5万元的成本结构拆解",
              "产能爬坡对规模效应的量化影响测算"
            ],
            "words_count": 1500,
            "order": 1
          },
          {
            "first_name": "智能驾驶技术迭代路径分析",
            "second_name": [
              "全栈自研算法与激光雷达融合方案的技术验证",
              "城市NOA功能实测里程数据与接管率表现",
              "Xiaomi Pilot 4.0系统向HyperOS智驾的演进逻辑"
            ],
            "words_count": 2000,
            "order": 2
          },
          {
            "first_name": "供应链深度绑定与产能规划",
            "second_name": [
              "宁德时代/比亚迪双源电池供应体系稳定性评估",
              "9100吨一体化压铸设备带来的成本降幅实证",
              "北京工厂30万辆年产能的爬坡节奏预测"
            ],
            "words_count": 1800,
            "order": 3
          },
          {
            "first_name": "产品矩阵差异化竞争策略",
            "second_name": [
              "SU7轿跑与YU7 SUV的定价区间重叠度分析",
              "用户画像交叉风险与品牌认知转型挑战",
              "800V碳化硅平台对充电效率提升的实际数据"
            ],
            "words_count": 1800,
            "order": 4
          },
          {
            "first_name": "生态系统协同效应验证",
            "second_name": [
              "2.1亿台IoT设备互联的落地场景实现度",
              "澎湃OS在车机协同中的算力分配瓶颈",
              "智能座舱研发成本分摊机制的经济性测算"
            ],
            "words_count": 1500,
            "order": 5
          },
          {
            "first_name": "市场反馈与用户行为洞察",
            "second_name": [
              "72小时盲订9.8万辆订单的质量验证",
              "首批试驾用户43%转化率的归因分析",
              "百度指数120万+日均搜索量的舆情特征"
            ],
            "words_count": 1200,
            "order": 6
          },
          {
            "first_name": "风险预警与应对能力评估",
            "second_name": [
              "碳酸锂价格波动对毛利率的敏感性测试",
              "品牌溢价能力不足导致的定价策略失效风险",
              "新能源补贴退坡对价格带冲击的缓冲空间"
            ],
            "words_count": 1400,
            "order": 7
          },
          {
            "first_name": "行业专家观点交叉验证",
            "second_name": [
              "产能爬坡与交付周期延长的矛盾解决路径",
              "智能驾驶技术代际差异的客观量化对比",
              "生态优势向市场竞争力的转化效率评估"
            ],
            "words_count": 1200,
            "order": 8
          }
        ]
      }
    ]

    返回结果#

    状态码状态码含义说明数据模型
    200OKnoneInline
    修改于 2025-08-25 07:38:05
    上一页
    Desearch MCP使用文档
    Built with