Skip to main content
POST
https://api.evergreens.ai
/
v1
/
networks
/
browser
/
chatgpt-search
{
  "query": "What are the best CRM tools?",
  "countryCode": "us",
  "languageCode": "en",
  "webSearch": true,
  "screenshots": true,
  "fields": {
    "citations": ["url", "text", "favicon"],
    "paragraphs": {
      "text": true,
      "citations": ["url", "text"]
    }
  },
  "cache": {
    "enabled": true,
    "ttl": 7200
  }
}
{
  "status": true,
  "data": {
    "isCached": false,
    "cacheExpiresIn": null,
    "results": {
      "text": "Die Evergreen Media AR GmbH ist ein internationales Beratungsunternehmen für digitales Wachstum mit Sitz in Innsbruck, Österreich...",
      "citations": [
        {
          "url": "https://adprofit.io/llm-optimierung?utm_source=chatgpt.com",
          "text": "AdProfit +1",
          "favicon": "https://www.google.com/s2/favicons?domain=adprofit.io&sz=32"
        }
        // ... rest
      ],
      "paragraphs": [
        {
          "text": "Die Evergreen Media AR GmbH ist ein internationales Beratungsunternehmen...",
          "citations": [
            {
              "url": "https://adprofit.io/llm-optimierung?utm_source=chatgpt.com",
              "text": "AdProfit +1",
              "favicon": "https://www.google.com/s2/favicons?domain=adprofit.io&sz=32"
            }
          ]
        }
        // ... rest
      ],
      "screenshots": {
        "initial": "https://tedi-cdn.evergreens.ai/jobs/debug-chatgpt/_iXSdEd_gM/screenshot-initial.png",
        "beforeSubmit": "https://tedi-cdn.evergreens.ai/jobs/debug-chatgpt/_iXSdEd_gM/screenshot-before-submit.png",
        "response": "https://tedi-cdn.evergreens.ai/jobs/debug-chatgpt/_iXSdEd_gM/screenshot-response.png"
      }
    }
  }
}
Entity Reference:
ChatgptSearchEntity — extends SearchEntity
Example
The image below illustrates how the ChatGPT Search response maps to the ChatGPT interface:
ChatGPT Search Response Visualization
The highlighted boxes in the image indicate the different response components returned by the API.
UI ElementAPI FieldDescription
🔴 Main ChatGPT Response (red bordered area)textThe AI-generated answer text displayed in the main content area, synthesized from real-time web search results.
🔘 Inline Citations (gray boxes within text)citationsReferences embedded within the ChatGPT response, linking to source URLs with specific referenced text.
🟡 Web Search Toggle (yellow)webSearchWhen enabled, ChatGPT performs a real-time search to retrieve up-to-date information.
The citations array provides granular source attribution for specific claims within the ChatGPT response, while paragraphs breaks down the response into structured sections with their associated citations.

Request

query
string
required
The search query string used to generate a ChatGPT-based answer.
  • Minimum length: 1 character
  • Maximum length: 500 characters
Whether to perform a web search (enables the ChatGPT search toggle) to retrieve real-time information.
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.
screenshots
boolean
default:"true"
Whether to include screenshots from Tedi Browser in the search results.
ChatGPT Tedi Browser Screenshots examplesChatGPT Tedi Browser Screenshots examples
Screenshot URLs are only available for 24 hours after generation. Make sure to download or cache them if you need to retain them longer.
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

isCached
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).
results
ChatgptSearchEntity
required
{
  "query": "What are the best CRM tools?",
  "countryCode": "us",
  "languageCode": "en",
  "webSearch": true,
  "screenshots": true,
  "fields": {
    "citations": ["url", "text", "favicon"],
    "paragraphs": {
      "text": true,
      "citations": ["url", "text"]
    }
  },
  "cache": {
    "enabled": true,
    "ttl": 7200
  }
}
{
  "status": true,
  "data": {
    "isCached": false,
    "cacheExpiresIn": null,
    "results": {
      "text": "Die Evergreen Media AR GmbH ist ein internationales Beratungsunternehmen für digitales Wachstum mit Sitz in Innsbruck, Österreich...",
      "citations": [
        {
          "url": "https://adprofit.io/llm-optimierung?utm_source=chatgpt.com",
          "text": "AdProfit +1",
          "favicon": "https://www.google.com/s2/favicons?domain=adprofit.io&sz=32"
        }
        // ... rest
      ],
      "paragraphs": [
        {
          "text": "Die Evergreen Media AR GmbH ist ein internationales Beratungsunternehmen...",
          "citations": [
            {
              "url": "https://adprofit.io/llm-optimierung?utm_source=chatgpt.com",
              "text": "AdProfit +1",
              "favicon": "https://www.google.com/s2/favicons?domain=adprofit.io&sz=32"
            }
          ]
        }
        // ... rest
      ],
      "screenshots": {
        "initial": "https://tedi-cdn.evergreens.ai/jobs/debug-chatgpt/_iXSdEd_gM/screenshot-initial.png",
        "beforeSubmit": "https://tedi-cdn.evergreens.ai/jobs/debug-chatgpt/_iXSdEd_gM/screenshot-before-submit.png",
        "response": "https://tedi-cdn.evergreens.ai/jobs/debug-chatgpt/_iXSdEd_gM/screenshot-response.png"
      }
    }
  }
}