Skip to main content
POST
https://api.evergreens.ai
/
tedi
/
networks
/
browser
/
ai
/
copilot
{
  "prompt": "What are the best SEO strategies for 2026?",
  "countryCode": "us",
  "languageCode": "en",
  "fields": {
    "citations": ["url", "title", "description", "icon", "domain"],
    "sources": ["url", "title", "snippet", "rank", "datePublished"],
    "paragraphs": {
      "text": true,
      "citations": ["url", "title", "description", "icon", "domain"]
    }
  },
  "cache": {
    "enabled": true,
    "ttl": 7200
  }
}
{
  "status": true,
  "data": {
    "text": "Here are the top SEO strategies for 2026 based on the latest industry insights...",
    "markdown": "Here are the top **SEO strategies for 2026** based on the latest industry insights...",
    "model": "gpt-4-turbo",
    "sources": [
      {
        "url": "https://www.searchenginejournal.com/seo-trends-2026/",
        "title": "SEO Trends 2026: What to Expect",
        "snippet": "The SEO landscape continues to evolve with AI-driven search...",
        "rank": 1,
        "datePublished": "2026-01-15T00:00:00.000Z"
      }
      // ... rest
    ],
    "citations": [
      {
        "url": "https://www.searchenginejournal.com/seo-trends-2026/",
        "title": "SEO Trends 2026: What to Expect",
        "description": "Comprehensive guide to SEO trends...",
        "icon": "https://www.google.com/s2/favicons?domain=searchenginejournal.com&sz=32",
        "domain": "searchenginejournal.com",
        "cited": true
      }
      // ... rest
    ],
    "paragraphs": [
      {
        "text": "**AI-First Content Optimization** is becoming essential as search engines...",
        "citations": [
          {
            "url": "https://www.searchenginejournal.com/seo-trends-2026/",
            "title": "SEO Trends 2026: What to Expect",
            "description": "Comprehensive guide to SEO trends...",
            "icon": "https://www.google.com/s2/favicons?domain=searchenginejournal.com&sz=32",
            "domain": "searchenginejournal.com"
          }
        ]
      }
      // ... rest
    ]
  },
  "cached": false,
  "cacheExpiresIn": null
}
Performance Notice: Microsoft Copilot scraping is currently slower than other AI search providers. We are actively working on optimizations to improve response times.
Data Quality Notice: Copilot responses may occasionally include additional scraped data not directly related to the prompt answer. We are aware of this issue and will address it in upcoming updates.
Entity Reference:
AiSearchEntity
API FieldDescription
textThe AI-generated answer text displayed in the main content area, synthesized from real-time web search results.
citationsReferences embedded within the Copilot response, linking to source URLs with specific referenced text.
sourcesList of web sources that Copilot used to generate the response.
The citations array provides granular source attribution for specific claims within the Copilot response, while paragraphs breaks down the response into structured sections with their associated citations.

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 search results for a specific region.
languageCode
string
default:"de"
The ISO 639-1 language code to tailor the search 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": "What are the best SEO strategies for 2026?",
  "countryCode": "us",
  "languageCode": "en",
  "fields": {
    "citations": ["url", "title", "description", "icon", "domain"],
    "sources": ["url", "title", "snippet", "rank", "datePublished"],
    "paragraphs": {
      "text": true,
      "citations": ["url", "title", "description", "icon", "domain"]
    }
  },
  "cache": {
    "enabled": true,
    "ttl": 7200
  }
}
{
  "status": true,
  "data": {
    "text": "Here are the top SEO strategies for 2026 based on the latest industry insights...",
    "markdown": "Here are the top **SEO strategies for 2026** based on the latest industry insights...",
    "model": "gpt-4-turbo",
    "sources": [
      {
        "url": "https://www.searchenginejournal.com/seo-trends-2026/",
        "title": "SEO Trends 2026: What to Expect",
        "snippet": "The SEO landscape continues to evolve with AI-driven search...",
        "rank": 1,
        "datePublished": "2026-01-15T00:00:00.000Z"
      }
      // ... rest
    ],
    "citations": [
      {
        "url": "https://www.searchenginejournal.com/seo-trends-2026/",
        "title": "SEO Trends 2026: What to Expect",
        "description": "Comprehensive guide to SEO trends...",
        "icon": "https://www.google.com/s2/favicons?domain=searchenginejournal.com&sz=32",
        "domain": "searchenginejournal.com",
        "cited": true
      }
      // ... rest
    ],
    "paragraphs": [
      {
        "text": "**AI-First Content Optimization** is becoming essential as search engines...",
        "citations": [
          {
            "url": "https://www.searchenginejournal.com/seo-trends-2026/",
            "title": "SEO Trends 2026: What to Expect",
            "description": "Comprehensive guide to SEO trends...",
            "icon": "https://www.google.com/s2/favicons?domain=searchenginejournal.com&sz=32",
            "domain": "searchenginejournal.com"
          }
        ]
      }
      // ... rest
    ]
  },
  "cached": false,
  "cacheExpiresIn": null
}