Skip to main content
POST
https://api.evergreens.ai
/
v1
/
networks
/
browser
/
people-also-search-for
{
  "query": "Evergreen Media",
  "countryCode": "at",
  "languageCode": "de"
}
{
  "status": true,
  "data": {
    "isCached": false,
    "cacheExpiresIn": null,
    "results": [
      {
        "text": "Evergreen Media Team",
        "link": "https://www.google.com/search?sca_esv=492eaf9d7a504954&gl=at&hl=de&q=Evergreen+Media+Team&sa=X&ved=2ahUKEwjxzcySsciRAxU5A7kGHf3JIp0Q1QJ6BAhgEAE",
        "position": 1
      },
      // ...
    ]
  }
}
Entity Reference:
PeopleAlsoSearchForEntity child of SearchEntity
Example

Request

query
string
required
The search query string to be used for retrieving web search results.Restrictions:
RoleDescription
Max characters100 characters
Min characters1 character
countryCode
string
default:"at"
The ISO 3166-1 alpha-2 country code to tailor search results to a specific country.
languageCode
string
default:"de"
The ISO 639-1 language code to specify the language of the search results.
fields
enum
An array specifying which fields to include in the people also search for results. Possible values are:
  • 'text': The text of the related search term.
  • 'link': The URL link to the related search term. (Google link)
  • 'position': The position of the related search term in the results.
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
PeopleAlsoSearchForEntity[]
required
An array of people also search for result entities matching the search query.
{
  "query": "Evergreen Media",
  "countryCode": "at",
  "languageCode": "de"
}
{
  "status": true,
  "data": {
    "isCached": false,
    "cacheExpiresIn": null,
    "results": [
      {
        "text": "Evergreen Media Team",
        "link": "https://www.google.com/search?sca_esv=492eaf9d7a504954&gl=at&hl=de&q=Evergreen+Media+Team&sa=X&ved=2ahUKEwjxzcySsciRAxU5A7kGHf3JIp0Q1QJ6BAhgEAE",
        "position": 1
      },
      // ...
    ]
  }
}