Skip to main content
POST
https://api.evergreens.ai
/
tedi
/
networks
/
browser
/
ai
/
ai-overview
{
  "prompt": "Who is James Webb?",
  "countryCode": "us",
  "languageCode": "en",
  "fields": {
    "sources": ["url", "title", "snippet", "rank", "datePublished"],
    "citations": ["url", "title", "description", "icon", "domain"],
    "paragraphs": {
      "text": true,
      "citations": ["url", "title", "description", "icon", "domain"]
    }
  },
  "cache": {
    "enabled": true,
    "ttl": 7200
  }
}
{
  "status": true,
  "data": {
    "text": "James E. Webb (1906–1992) was the second administrator of NASA, leading the agency from February 1961 to October 1968 during the heart of the Kennedy and Johnson administrations. He is best known for managing the Apollo program, aimed at landing humans on the Moon, and championing space science, which led to the James Webb Space Telescope being named after him.",
    "markdown": "**James E. Webb** (1906–1992) was the second administrator of **NASA**, leading the agency from February 1961 to October 1968 during the heart of the Kennedy and Johnson administrations...",
    "model": "gemini-2.0",
    "sources": [
      {
        "url": "https://www.nasa.gov/people/james-e-webb/",
        "title": "NASA",
        "snippet": "NASA Administrator (Feb. 16, 1961–Oct. 7, 1968) James Edwin Webb was the second administrator...",
        "rank": 1,
        "datePublished": null
      },
      {
        "url": "https://science.nasa.gov/mission/webb/who-is-james-webb/",
        "title": "James Webb Space Telescope",
        "snippet": "James Webb was NASA's second administrator...",
        "rank": 2,
        "datePublished": null
      }
      // ... rest
    ],
    "citations": [
      {
        "url": "https://www.nasa.gov/people/james-e-webb/",
        "title": "James E. Webb - NASA",
        "description": "NASA Administrator (Feb. 16, 1961–Oct. 7, 1968) James Edwin Webb was the second administrator of the National Aeronautics and Space Administration...",
        "icon": "https://encrypted-tbn0.gstatic.com/faviconV2?url=https://www.nasa.gov&client=AIM&size=128&type=FAVICON",
        "domain": "NASA (.gov)",
        "cited": true
      },
      {
        "url": "https://en.wikipedia.org/wiki/James_E._Webb",
        "title": "James E. Webb - Wikipedia",
        "description": "James Edwin Webb was an American government official...",
        "icon": "https://encrypted-tbn1.gstatic.com/faviconV2?url=https://en.wikipedia.org&client=AIM&size=128&type=FAVICON",
        "domain": "Wikipedia",
        "cited": true
      }
      // ... rest
    ],
    "paragraphs": [
      {
        "text": "**James E. Webb** (1906–1992) was the second administrator of NASA, leading the agency from February 1961 to October 1968...",
        "citations": [
          {
            "url": "https://www.nasa.gov/people/james-e-webb/",
            "title": "James E. Webb - NASA",
            "description": "NASA Administrator biography...",
            "icon": "https://encrypted-tbn0.gstatic.com/faviconV2?url=https://www.nasa.gov&client=AIM&size=128&type=FAVICON",
            "domain": "NASA (.gov)"
          }
        ]
      },
      {
        "text": "NASA Leadership: He took over just before President Kennedy's pledge to land a man on the Moon, overseeing critical Gemini and early Apollo missions.",
        "citations": []
      }
      // ... rest
    ]
  },
  "cached": false,
  "cacheExpiresIn": null
}
Entity Reference:
AiSearchEntity
The image below illustrates how the AI Overview response maps to the Google AI Overview interface:
AI Overview Response Visualization
The highlighted boxes in the image indicate the different response components returned by the API.
UI ElementAPI FieldDescription
🔴 Main AI Overview (red bordered area)textThe AI-generated overview text displayed in the main content area, synthesized from multiple sources.
🟡 Inline Citations (yellow circles within text)citationsReferences embedded within the AI Overview (linked numbers). Each citation links to a source URL with title, source name, and favicon.
🔵 Source Panel (right sidebar)sourcesThe list of source websites displayed on the right side, including title, source domain, and favicon.
The citations array provides granular source attribution for specific claims within the AI Overview, while sources offers a broader overview of all referenced websites with their metadata.

Request

prompt
string
required
The search query or prompt to be sent to the AI search provider.
  • Minimum length: 1 character
  • Maximum length: 500 characters
countryCode
string
default:"at"
The ISO 3166-1 alpha-2 country code to tailor the AI Overview results for a specific region.
languageCode
string
default:"de"
The ISO 639-1 language code to tailor the AI Overview results for a specific language.
fields
object
Specify which response fields to include. This allows you to optimize the response size by requesting only the data you need.
cache
object
An optional object to configure caching behavior for the request. By default, caching is enabled with a TTL of 120 seconds. You can customize these settings by providing the cache object.

Response

cached
boolean
default:true
Indicates whether the response was served from cache.
cacheExpiresIn
number
default:7200
The time in seconds until the cached response expires. Default is 7200 seconds (2 hours).
data
object
required
{
  "prompt": "Who is James Webb?",
  "countryCode": "us",
  "languageCode": "en",
  "fields": {
    "sources": ["url", "title", "snippet", "rank", "datePublished"],
    "citations": ["url", "title", "description", "icon", "domain"],
    "paragraphs": {
      "text": true,
      "citations": ["url", "title", "description", "icon", "domain"]
    }
  },
  "cache": {
    "enabled": true,
    "ttl": 7200
  }
}
{
  "status": true,
  "data": {
    "text": "James E. Webb (1906–1992) was the second administrator of NASA, leading the agency from February 1961 to October 1968 during the heart of the Kennedy and Johnson administrations. He is best known for managing the Apollo program, aimed at landing humans on the Moon, and championing space science, which led to the James Webb Space Telescope being named after him.",
    "markdown": "**James E. Webb** (1906–1992) was the second administrator of **NASA**, leading the agency from February 1961 to October 1968 during the heart of the Kennedy and Johnson administrations...",
    "model": "gemini-2.0",
    "sources": [
      {
        "url": "https://www.nasa.gov/people/james-e-webb/",
        "title": "NASA",
        "snippet": "NASA Administrator (Feb. 16, 1961–Oct. 7, 1968) James Edwin Webb was the second administrator...",
        "rank": 1,
        "datePublished": null
      },
      {
        "url": "https://science.nasa.gov/mission/webb/who-is-james-webb/",
        "title": "James Webb Space Telescope",
        "snippet": "James Webb was NASA's second administrator...",
        "rank": 2,
        "datePublished": null
      }
      // ... rest
    ],
    "citations": [
      {
        "url": "https://www.nasa.gov/people/james-e-webb/",
        "title": "James E. Webb - NASA",
        "description": "NASA Administrator (Feb. 16, 1961–Oct. 7, 1968) James Edwin Webb was the second administrator of the National Aeronautics and Space Administration...",
        "icon": "https://encrypted-tbn0.gstatic.com/faviconV2?url=https://www.nasa.gov&client=AIM&size=128&type=FAVICON",
        "domain": "NASA (.gov)",
        "cited": true
      },
      {
        "url": "https://en.wikipedia.org/wiki/James_E._Webb",
        "title": "James E. Webb - Wikipedia",
        "description": "James Edwin Webb was an American government official...",
        "icon": "https://encrypted-tbn1.gstatic.com/faviconV2?url=https://en.wikipedia.org&client=AIM&size=128&type=FAVICON",
        "domain": "Wikipedia",
        "cited": true
      }
      // ... rest
    ],
    "paragraphs": [
      {
        "text": "**James E. Webb** (1906–1992) was the second administrator of NASA, leading the agency from February 1961 to October 1968...",
        "citations": [
          {
            "url": "https://www.nasa.gov/people/james-e-webb/",
            "title": "James E. Webb - NASA",
            "description": "NASA Administrator biography...",
            "icon": "https://encrypted-tbn0.gstatic.com/faviconV2?url=https://www.nasa.gov&client=AIM&size=128&type=FAVICON",
            "domain": "NASA (.gov)"
          }
        ]
      },
      {
        "text": "NASA Leadership: He took over just before President Kennedy's pledge to land a man on the Moon, overseeing critical Gemini and early Apollo missions.",
        "citations": []
      }
      // ... rest
    ]
  },
  "cached": false,
  "cacheExpiresIn": null
}