> ## Documentation Index
> Fetch the complete documentation index at: https://cloro.dev/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Sources

> Schema for source citations returned by the Microsoft Copilot endpoint, listing URLs, titles, snippets, and publishers referenced in the generated answer.

This section documents the **sources** data returned by the [Microsoft Copilot endpoint](/api-reference/endpoint/monitor-copilot). Sources are part of the Copilot response, so no separate API call is needed.

## Example request

```json theme={null}
{
  "prompt": "best laptops for programming",
  "country": "US"
}
```

This produces a response containing the `sources` array documented below.

## Overview

Copilot sources follow the [common sources structure](/guides/making-requests/sync#sources-array-structure) (`position`, `url`, `label`, and `description`) with no Copilot-specific fields.

<Note>
  Approximately 10% of prompts genuinely don't trigger Copilot to return citations — even after internal retries. If `result.sources` is empty, it means Copilot chose not to cite sources for that prompt, not that extraction failed. Build your pipeline to handle `sources: []` as a valid response.
</Note>

<Frame caption="Sources in Copilot">
  <img src="https://mintcdn.com/cloro/Qv2xgJAgMecwTTRq/images/copilot/sources.webp?fit=max&auto=format&n=Qv2xgJAgMecwTTRq&q=85&s=bf0c3fc25cd6353aedd3f0422e524a2a" alt="Sources in Copilot" width="532" height="764" data-path="images/copilot/sources.webp" />
</Frame>

## Response example

```json theme={null}
{
  "success": true,
  "result": {
    "text": "Here are several laptops for programming...",
    "sources": [
      {
        "position": 1,
        "url": "https://example.com/best-laptops-2026",
        "label": "Best laptops for programmers in 2026",
        "description": "A guide to the top laptops for software development this year."
      },
      {
        "position": 2,
        "url": "https://example.com/dev-laptops-review",
        "label": "Developer laptop reviews"
      }
    ]
  }
}
```
