Copilot Scraper
使用 scraper.copilot 捕获 Microsoft Copilot 在搜索、聊天、推理和学习模式下生成的回答。该 actor 将返回 Markdown 格式的回答以及 Copilot 提供的所有引用来源。
请求示例
curl 'https://api.scrapeless.com/api/v2/scraper/request' \
--header 'Content-Type: application/json' \
--header 'x-api-token: {you_api_key}' \
--data '{
"actor": "scraper.copilot",
"input": {
"prompt": "Recommended attractions in New York",
"country": "US",
"mode": "search"
},
"webhook": {
"url": "http://www.youwebhook.com"
}
}'请求体参数
| 参数 | 类型 | 是否必需 | 描述 |
|---|---|---|---|
prompt | string | 是 | 发送给 Copilot 的提示词。 |
country | string | 是 | 国家或地区代码。 |
mode | string | 是 | 运行模式:search(搜索)、smart(智能)、chat(快速回复)、reasoning(深度思考)或 study(学习与研究)。 |
响应字段
| 参数 | 类型 | 描述 |
|---|---|---|
result_text | string | Copilot 生成的 Markdown 正文。 |
prompt | string | 原始提示词。 |
mode | string | 使用的模式:search、smart、chat、reasoning 或 study。 |
links | array | Copilot 返回的所有外部链接。 |
citations | array | 从响应中提取的引用对象。 |
citations.title | string | 引用来源的标题。 |
citations.url | string | 引用来源的 URL。 |