AnswerLineStart free

, Copilot · SERP API

Is there a Microsoft Copilot API? Every option for getting Copilot answers in 2026

Microsoft has several APIs with “Copilot” or Bing grounding in the name, but none of them, as documented on Microsoft’s own pages (checked 2026-09-17), returns the answer the free consumer Microsoft Copilot gives to a prompt. The Microsoft 365 Copilot APIs work on a licensed organization’s tenant. Copilot Studio and Foundry let you build your own agent grounded in Bing. The Bing Search APIs are retired. If you need the consumer Copilot answer with its citations, for monitoring or research, you have to collect that answer from Copilot itself.

Below, each option is mapped to what it returns. For a step-by-step tutorial on the last option, see monitor Microsoft Copilot answers with an API.

First, which Copilot?

“Copilot” names several Microsoft products. Microsoft Support’s comparison of Copilot experiences (checked 2026-09-17) separates:

The consumer product’s Transparency Note (for individuals signed in with a Microsoft account; dated August 18, 2026) says that for information-seeking conversations Copilot “is grounded in web search results” and provides hyperlinked citations after its text responses. That consumer answer is what brand and GEO teams usually want to measure.

The options at a glance

Option What you send What you get back Who it’s for Returns consumer Copilot answers?
Microsoft 365 Copilot Chat API (preview) A prompt, on behalf of a licensed work user Text answer grounded in the tenant’s data and, by default, web search Organizations building on Microsoft 365 Not documented as such
Microsoft 365 Copilot Retrieval API A natural-language query Text chunks from SharePoint, OneDrive or Copilot connectors RAG over your organization’s content No; no web results
Copilot Studio An agent you configure Your agent’s answers, optionally grounded in Bing Makers building custom agents No
Foundry Web Search tool / Grounding with Bing Search A prompt to your agent and model Your model’s answer with citations; not the raw search results Developers building agents on Azure No
Bing Search APIs Nothing Nothing Retired August 11, 2025 No
Bing Webmaster Tools AI Performance Your verified site Citation counts, cited pages, sample grounding queries Publishers No answer text
An answer API such as this API’s /v1/monitor/copilot A prompt and market Consumer Copilot’s answer, sources, citation pills, searches when available Monitoring, GEO, research Yes

The sections below give Microsoft’s own description of each, with sources.

Microsoft 365 Copilot APIs

Microsoft’s Copilot APIs overview (checked 2026-09-17) describes a family of REST APIs under the Microsoft Graph namespace (graph.microsoft.com/v1.0/copilot and /beta/copilot) that “provide access to components that power Microsoft 365 Copilot experiences”. They include the Retrieval API, a Search API over OneDrive content (preview), an Interaction Export API for compliance, a Meeting Insights API, usage reports, package management and the Chat API.

Requirements, per the same page: a Microsoft 365 Copilot license for each user who accesses the functionality, on top of an E3 or E5 subscription or equivalent, with authentication through Microsoft Entra ID on behalf of a signed-in user.

Chat API (preview)

The Chat API overview says it lets you “programmatically engage in multi-turn conversations with Microsoft 365 Copilot while using enterprise search grounding and web search grounding”. Documented details that matter for evaluation:

It fits internal applications for licensed employees. It won’t show what the free consumer Copilot tells the public about your brand: it runs as a work user in your tenant, with your organization’s data and policies in play, and Microsoft doesn’t document it as reproducing the consumer experience.

Retrieval API

The Retrieval API overview says it returns “relevant text chunks from the hybrid index that powers Microsoft 365 Copilot”, from SharePoint, OneDrive and Copilot connectors. It supports KQL filters, is available to Microsoft 365 Copilot-licensed users, and offers pay-as-you-go consumption (preview) for tenant-level sources for users without that license. It does not retrieve from the public web, so it is irrelevant to public AI answers.

Copilot Studio

Copilot Studio builds custom agents. Its knowledge sources summary (checked 2026-09-17) says the Web Search setting “searches all public websites indexed by Bing” and uses Grounding with Bing Search, and that public website knowledge sources search the query on Bing and return results only from the websites you provide.

That gives you an agent with your instructions, your knowledge sources and Bing results. A different system prompt, orchestration and set of sources produce a different answer from consumer Copilot’s.

For developers on Azure, Microsoft’s web grounding overview (checked 2026-09-17) describes two generally available tools in Foundry Agent Service:

The Grounding with Bing Search tools page lists limits worth knowing before you build on it:

Foundry therefore gives you a Bing-grounded answer from your own model. That can support a study of what a Bing-grounded model says, but it is a different answer from consumer Copilot’s, and it doesn’t expose Bing’s ranked results.

The Bing Search APIs are retired

Microsoft’s lifecycle notice (checked 2026-09-17) states that the Bing Search APIs were retired on August 11, 2025: existing instances were decommissioned and the product is no longer available for use or new signup. Microsoft directs customers to Grounding with Bing Search. If you’re evaluating replacements for raw search results rather than AI answers, see best SERP APIs and the web search API use case.

Bing Webmaster Tools AI Performance

This is a reporting tool for publishers rather than an answer API. The February 10, 2026 announcement says the report shows “how publisher content appears across Microsoft Copilot, AI-generated summaries in Bing, and select partner integrations”, with total citations, average cited pages per day, page-level citation counts, trends, and “grounding queries”, described as a sample of the key phrases the AI used when retrieving content that was cited.

It answers “how often are my pages cited, and for which phrases?” for a site you’ve verified. It can’t show the answer text, whether your brand was named without a link, which competitors were cited on the same prompts, or data for sites you don’t own. Use it alongside answer monitoring.

Decision guide

You need to… Use
Add Microsoft 365 Copilot to an internal app for licensed staff Microsoft 365 Copilot Chat API
Ground your own model in SharePoint and OneDrive content Retrieval API
Build a custom agent that searches the web Copilot Studio or Foundry Web Search
Get ranked web results for a query A SERP API; the Bing Search APIs are retired
See how often your own pages are cited in Copilot Bing Webmaster Tools AI Performance
See what consumer Copilot answers to your buyers’ prompts, with citations and competitors, across markets An answer API for consumer Copilot

Getting consumer Copilot answers with this API

This API returns Microsoft Copilot’s answer as JSON. A request takes a prompt and a country, optionally a US state:

curl -X POST https://api.answerline.dev/v1/monitor/copilot \
  -H "Authorization: Bearer $ANSWERLINE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "prompt": "best payroll software for a 50-person company", "country": "US" }'

The response is { "success": true, "result": { ... } } with:

Field What it holds
text The answer as plain text
sources[] Cited sources: position, url, label, description
citationPills[] Inline citation chips, one entry per chip-and-source pair, grouped by citationPillId
searchQueries[] The web searches Copilot ran, included automatically
shoppingCards[], map[] Product cards and place results when Copilot shows them
markdown, html, rawResponse With the matching include flags

For recurring monitoring, submit the same body as an async task with taskType: "COPILOT" and a webhook:

import os
import requests

API = "https://api.answerline.dev"
HEADERS = {"Authorization": f"Bearer {os.environ['ANSWERLINE_API_KEY']}"}

task = {
    "taskType": "COPILOT",
    "payload": {"prompt": "best payroll software for a 50-person company", "country": "US"},
    "idempotencyKey": "copilot-payroll-50-US-2026-09-17",
    "webhook": {"url": "https://example.com/hooks/answers"},
}
resp = requests.post(f"{API}/v1/async/task", json=task, headers=HEADERS, timeout=60)
resp.raise_for_status()
print(resp.json()["task"]["id"])

Cost: 5 credits per Copilot async task, 7 for a synchronous call (a 2-credit synchronous surcharge). The markdown, html and rawResponse flags and the automatic searchQueries add nothing. The free plan includes 500 credits per month, enough for 100 async Copilot answers; plans are on /pricing.

The full walkthrough, including field details, batching, idempotency keys and metrics, is in monitor Microsoft Copilot answers.

What to measure once you have answers

Run the same prompts on ChatGPT, Gemini and Grok for comparison; engines differ in what they cite, and AI grounding by engine shows how to measure where the differences come from. For how the vendors document retrieval and citations overall, see the AI search engines.

Pitfalls

Field list and a request example are on the Copilot engine page; make a first call with the quickstart.

Questions

Does Microsoft offer an API for Copilot answers?

Microsoft offers the Microsoft 365 Copilot APIs, including a Chat API in preview, for work accounts with a Microsoft 365 Copilot license. As of 2026-09-17 we found no Microsoft documentation of an API that returns the answers the free consumer Copilot gives at copilot.microsoft.com.

What does the Microsoft 365 Copilot Chat API do?

Microsoft describes it as a way to hold multi-turn conversations with Microsoft 365 Copilot from your own application, grounded in enterprise search and web search. It is in preview, returns text only, and requires a Microsoft 365 Copilot add-on license for each user.

Can I still use the Bing Search API?

No. Microsoft retired the Bing Search APIs on August 11, 2025 and pointed customers to Grounding with Bing Search in its agent service. That tool grounds your own model's response in Bing results; Microsoft's documentation says it does not return the raw search results to developers or end users.

How do I monitor what Microsoft Copilot says about my brand?

Collect the consumer Copilot answer for a fixed set of prompts on a schedule. This API's /v1/monitor/copilot endpoint returns Copilot's answer text, sources, citation pills and the searches it ran, for 5 credits as an async task or 7 as a synchronous call.

Is Bing Webmaster Tools enough to track Copilot visibility?

It covers your own site. Its AI Performance report shows citations of your pages across Microsoft Copilot, AI summaries in Bing and select partners, with sample grounding queries. It does not show the answer text, whether your brand was named, or which competitors were cited instead.

Try it on your own prompts

500 free credits a month, no card. One POST returns the answer, sources and citations as JSON.

Keep reading