Copilot Scraper

Use scraper.copilot to capture answers generated by Microsoft Copilot across search, chat, reasoning, and study modes. The actor returns the Markdown answer plus every citation Copilot surface.

Request Example

curl '{api_host}/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"
    }
  }'

Body Parameters

ParameterTypeRequiredDescription
promptstringYesPrompt sent to Copilot.
countrystringYesCountry or region code (JP and TW are not available).
modestringYesMode to run: search, smart, chat (Quick response), reasoning (Think Deeper), or study (Study and learn).

Response Fields

ParameterTypeDescription
result_textstringMarkdown body Copilot generated.
promptstringOriginal prompt.
modestringMode used: search, smart, chat, reasoning, or study.
linksarrayAll outbound links returned by Copilot.
citationsarrayCitation objects extracted from the response.
citations.titlestringTitle of the cited source.
citations.urlstringURL of the cited source.