Documentation Index
Fetch the complete documentation index at: https://docs.cloro.dev/llms.txt
Use this file to discover all available pages before exploring further.
This section documents the AI Overview data returned by the Google Search endpoint. AI Overview is part of the Google response when requested via include.aioverview, so no separate API call is needed.
Overview
AI Overview is Google’s AI-generated summary that appears at the top of certain search results. It includes a text summary, cited sources, optional videos, and occasionally sponsored ads.
Example request
AI Overview is opt-in: set include.aioverview in your request to include it in the response.
{
"query": "best laptops for programming",
"country": "US",
"include": {
"aioverview": {
"markdown": true
}
}
}
This produces a response containing the aioverview object documented below.
AI Overview structure
| Field | Type | Description |
|---|
result.aioverview | object | Google AI Overview data (if requested) |
result.aioverview.text | string | AI Overview text content |
result.aioverview.markdown | string | AI Overview in markdown format (if requested) |
result.aioverview.sources | array | Sources referenced in AI Overview |
result.aioverview.videos | array | Videos included in AI Overview |
result.aioverview.ads | array | Sponsored ads injected in AI Overview |
Sources
result.aioverview.sources follows the common sources structure (position, url, label, and description).
Videos
Video content included in AI Overview:
| Field | Type | Description |
|---|
url | string | Direct URL to the video |
title | string | Video title |
thumbnail | string | Thumbnail image URL |
source | string | Channel or source name |
platform | string | Video platform (e.g., YouTube) |
date | string | Upload date |
duration | string | Video duration |
Ads
Sponsored ads injected by Google inside the AI Overview. Includes both text ads and shopping/product ads:
| Field | Type | Description |
|---|
position | number | Position of ad (1-indexed) |
title | string | Ad title |
url | string | Ad destination URL |
domain | string | Domain name of the advertiser |
description | string | Ad description text |
price | object | Product price for shopping ads |
old_price | object | Original price before discount (shopping ads) |
store | string | Retailer name for shopping ads |
Ad price object
| Field | Type | Description |
|---|
value | number | Numeric price value |
currency | string | Currency symbol (e.g., $) |
Response example
{
"success": true,
"result": {
"aioverview": {
"text": "For programming, look for laptops with at least 16GB of RAM, a fast SSD, and a comfortable keyboard...",
"markdown": "For programming, look for laptops with at least **16GB of RAM**, a fast SSD, and a comfortable keyboard...",
"sources": [
{
"position": 1,
"url": "https://example.com/best-dev-laptops",
"label": "Best laptops for developers",
"description": "Guide to laptops for software development."
}
],
"videos": [
{
"url": "https://www.youtube.com/watch?v=example",
"title": "Top 5 Laptops for Programmers",
"thumbnail": "https://i.ytimg.com/vi/example/hqdefault.jpg",
"source": "Tech Channel",
"platform": "YouTube",
"date": "2026-02-10",
"duration": "12:34"
}
],
"ads": [
{
"position": 1,
"title": "Dell XPS 15 - Developer Edition",
"url": "https://www.dell.com/xps-15-developer",
"domain": "dell.com",
"description": "Pre-configured for Linux development with 32GB RAM.",
"price": {
"value": 1799,
"currency": "$"
},
"store": "Dell"
}
]
}
}
}