> ## 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 Google Gemini endpoint, including URLs, titles, snippets, and contextual descriptions for each reference.

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

## Overview

Gemini sources follow the [common sources structure](/guides/making-requests/sync#sources-array-structure) (`position`, `url`, `label`, `description`).

<Frame caption="Sources in Gemini">
  <img src="https://mintcdn.com/cloro/Qv2xgJAgMecwTTRq/images/gemini/sources.webp?fit=max&auto=format&n=Qv2xgJAgMecwTTRq&q=85&s=7aecbc0390ead94e1183372dcf273417" alt="Sources in Gemini" width="732" height="693" data-path="images/gemini/sources.webp" />
</Frame>

<Warning>
  **About sources availability**

  Gemini may not return sources for certain prompts. The sources array will be empty when Gemini doesn't provide citations. This is normal behavior and doesn't indicate an error. Some prompts don't trigger Gemini's source-citing mechanism.
</Warning>

## Example request

```json theme={null}
{
  "prompt": "Explain quantum entanglement",
  "country": "US"
}
```

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

## Example response

```json theme={null}
{
  "success": true,
  "result": {
    "text": "Quantum entanglement is a physical phenomenon...",
    "sources": [
      {
        "position": 1,
        "label": "Wikipedia",
        "url": "https://en.wikipedia.org/wiki/Quantum_entanglement",
        "description": "Quantum entanglement is a physical phenomenon that occurs..."
      }
    ]
  }
}
```
