cloro
AI Overview

The Google AI Overview API trusted by the top brands

Get the real AI Overview UI responses (also called AIO): sources, inline videos, sponsored ads, plus the surrounding organic SERP, People Also Ask, and related searches in one request. Markdown out, any country, any scale.

4.8 · 42 reviewsG2.com software review platform logo
Used by AI-search teams running AI Overview citation tracking daily
1,000,000,000 monthly API calls

The complete AI Overview tracking API

cloro returns the AI Overview answer alongside the surrounding SERP that drives traffic to it. The same key also gets you ChatGPT, Perplexity, Gemini, AI Mode, and Copilot.

Why scraping AI Overview means scraping all of Google

AI Overview doesn't render in isolation. It sits at the top of a Google SERP next to People Also Ask, related searches, and the organic results that influence its citations. There is no public AI Overview API, so the only way to see what users see is to capture the whole surface.

Google bot-detection security check screen

Direct scraping gets you blocked

Google runs the most aggressive anti-automation stack on the public web. DIY pipelines fail within hours of a SERP UI update, and AI Overview's render path adds another layer of detection on top. cloro absorbs the maintenance so your AI Overview tracking keeps running through every Google revision.

Google People Also Ask panel showing variable follow-up questions

AI Overview triggers aren't deterministic

AI Overview only renders for a subset of queries, and for the same prompt, whether it triggers at all shifts by country, session, and Google's current algorithm pass. Cited sources re-rank with every refresh of the underlying SERP. You need repeated sampling per region to see when AI Overview shows up and which sources it picks.

Google Vertex AI documentation page

There is no public AI Overview API

Google ships no AI Overview endpoint. The Search SERP API doesn't include it, and Vertex AI doesn't expose it. To read what real users see, you have to render the SERP and parse it. Surfer's analysis measured ~20% overlap between AI APIs and the rendered UI across LLMs.

Google AI Overview UI showing AI-generated answer with inline video citations and sponsored ad cards

Special objects only render in the UI

AI Overview embeds inline videos and sponsored shopping ads directly inside the AI answer, alongside the cited source cards. None of these special objects lives in any Google API. cloro returns them as structured JSON, plus the surrounding organic SERP, PAA, and related searches.

Track AI Overview citations in 30 lines of code

Parse markdown, sources, inline videos, sponsored ads, plus the surrounding organic SERP, PAA, and related searches from one endpoint.

Request example

python
from cloro import Cloro

client = Cloro(api_key="sk_live_your_api_key_here")

response = client.monitor.google(
    query="What do you know about Tesla's latest updates?",
    country="US",
    include={"aioverview": {"markdown": True}},
)

print(response["result"]["organicResults"])

Response example

200 OKapplication/json
{
  "success": true,
  "result": {
    "organicResults": [
      {
        "position": 1,
        "title": "Tesla Software Update 2024: FSD Beta and Range Improvements",
        "link": "https://electrek.co/tesla-software-update-2024",
        "displayedLink": "electrek.co",
        "snippet": "Tesla's latest software update...",
        "page": 1
      }
    ],
    "peopleAlsoAsk": [
      {
        "question": "What are the latest Tesla FSD features?",
        "type": "LINK",
        "title": "Tesla Full Self-Driving: Latest Features and Improvements",
        "link": "https://tesla.com/fsd/features",
        "snippet": "Tesla's FSD Beta now ..."
      }
    ],
    "relatedSearches": [
      {
        "query": "Tesla software update 2024.12",
        "link": "https://google.com/search?q=tesla+software+update+2024.12"
      }
    ],
    "aioverview": {
      "text": "Tesla's recent updates...",
      "markdown": "### Tesla Recent Updates\n\nTesla's recent updates...",
      "sources": [
        {
          "position": 1,
          "url": "https://tesla.com/updates/fsd",
          "label": "Tesla FSD Updates",
          "description": "Latest Full Self-Driving improvements and capabilities including enhanced visual processing and neural network training"
        }
      ],
      "videos": [
        {
          "url": "https://youtube.com/watch?v=tesla-fsd-v12",
          "title": "Tesla FSD v12 Demo: 30 Minutes Hands-Free",
          "thumbnail": "https://i.ytimg.com/vi/tesla-fsd-v12/hq.jpg",
          "source": "YouTube",
          "platform": "youtube",
          "date": "3 days ago",
          "duration": "32:14"
        }
      ],
      "ads": [
        {
          "position": 1,
          "title": "Wall Connector — Tesla",
          "url": "https://shop.tesla.com/wall-connector",
          "domain": "shop.tesla.com",
          "description": "Charge up to 44 mph at home. Compatible with all Tesla vehicles.",
          "price": {
            "value": "475.00",
            "currency": "USD"
          },
          "store": "Tesla"
        }
      ]
    }
  }
}

Pricing that scales with you

Start free. Price per credit drops as your volume grows — see every tier below.

Free
$0/mo
500 credits / month
  • Added monthly
  • 1 concurrent job
  • 1 seat
  • Community support
Lite
$30/mo
37,500 credits
  • $0.80 per 1k credits
  • 10 concurrent jobs
  • Unlimited seats
  • Email support
Hobby
$100/mo
250,000 credits
  • $0.40 per 1k credits
  • 20 concurrent jobs
  • Unlimited seats
  • Email support
Most Popular
Starter
$250/mo
650,000 credits
  • $0.39 per 1k credits
  • 50 concurrent jobs
  • Unlimited seats
  • Email support
Scale
$500+/mo
More credits
  • Volume discounts
  • More concurrency
  • Unlimited seats
  • Faster support
Compare all 11 tiers
PlanPrice / moCreditsPer 1kConcurrencySeatsSupport
Free$050011Community
Lite$3037,500$0.8010UnlimitedEmail
Hobby$100250,000$0.4020UnlimitedEmail
StarterPopular$250650,000$0.3950UnlimitedEmail
Growth$5001,350,000$0.3775UnlimitedPriority email
Business$1,0002,800,000$0.36100UnlimitedPriority email
Enterprise 2K$2,0005,871,025$0.34135UnlimitedSlack
Enterprise 3K$3,0009,306,606$0.32175UnlimitedSlack
Enterprise 4K$4,00012,756,261$0.31215UnlimitedSlack
Enterprise 5K$5,00016,391,783$0.31255UnlimitedSlack
Enterprise$5,000+Increased concurrency, overages on credits and credit discounts for annual contracts.Know more

AI Overview tracking, answered

What does the AI Overview logo look like and how do I identify it on a SERP?+

The AI Overview block (often abbreviated AIO) renders at position 0 above organic results, marked by a small sparkle/asterisk icon and the words "AI Overview" or "Search Labs · AI Overview" depending on the rollout phase. The logo is Google's standard four-color sparkle (blue, red, yellow, green dots arranged in an asterisk pattern). When scraping programmatically, you don't need to identify it visually — pass `include: {"aioverview": {"markdown": true}}` and the API returns the parsed block in `result.aioverview` if present, or omits the field if AI Overview didn't render for that query. The AI Overview response schema documents every field it can contain — text, sources, citation pills, videos, and inline ads.

Why doesn't Google offer an official AI Overview API for monitoring?+

Google has never shipped one. The Search SERP API returns organic results without the AI Overview block; Vertex AI gives you Gemini without the Google index. AI Overview is a rendered UI feature, not an API surface. To monitor it you have to render the SERP and parse it, which is what cloro does. Rolling that parsed block into a brand-level score across engines is the AI visibility tracking use case.

Does AI Overview really show videos and shopping ads inline?+

Yes, and the share is growing. AI Overview increasingly embeds YouTube videos directly in the answer (with platform, duration, thumbnail) for how-to and product queries, plus sponsored shopping ads (price, store, domain) for commercial intent. cloro returns both as `aioverview.videos` and `aioverview.ads`. If your competitive set is running Performance Max or YouTube ads, this is the surface that places them.

Does cloro return the surrounding organic SERP too?+

Yes. The same `/v1/monitor/google` request returns organic results, AI Overview (if triggered), People Also Ask, related searches, and sponsored results in one payload. AI Overview citations correlate strongly with organic top-3, so capturing both lets you measure that relationship directly. Grounding an AI app or agent on that SERP instead of tracking it? The same endpoint powers cloro's web search API.

How much does AI Overview triggering vary between countries?+

Substantially. We see roughly 30–50% trigger-rate divergence between US and EU on the same prompt set. Some EU regions roll out AI Overview slower or scope it tighter under DMA constraints. Pass `country` per request to capture the regional variation.

How fresh are the AI Overview responses cloro returns?+

Each request runs against Google live with typical latency of 30–60 seconds end-to-end and no caching layer. Citations reflect Google's current SERP pass, not yesterday's snapshot.

How do I run AI Overview monitoring at high cadence without burning concurrency?+

Use the async task API: `POST /v1/async/task` with `taskType: "GOOGLE"` and the monitor-google payload, including `aioverview` in the include block. Submit a batch, receive results via webhook. This is the right pattern when you're sampling thousands of prompts per day across multiple countries.

What does it cost to monitor AI Overview in-house vs through cloro?+

DIY Google SERP scraping is the hardest sustained anti-automation fight on the public web. Realistic in-house cost for AI-Overview-aware monitoring at production volume is $5–10k/month before engineering time, and the success rate is fragile. cloro's Hobby plan ($100/month) covers the same workload with managed reliability.

How does cloro compare to AI Overview tracker tools like Ahrefs, Authoritas, or BrightEdge?+

Different layer. Ahrefs, Authoritas, and BrightEdge are dashboard products for SEO marketers tracking keyword visibility inside AI Overviews. cloro is the API and data layer underneath: structured JSON for every AI Overview citation, source, video, and inline ad, returned per request across 250+ locations. Teams build their own dashboards, alerting, or competitive workflows on top of cloro's feed. If you want a turnkey marketer UI, use one of those tools. If you want the raw structured data feed to integrate into your stack or product, use cloro.

Start tracking your brand in AI Overview today

Capture the AI answer, the cited sources, inline videos and ads, plus the surrounding organic SERP in one request.