Yandex Search Engine Results API

Our Yandex Search API allows you to scrape results from the Yandex search page.


The API endpoint is https://serpapi.com/search?engine=yandex

Head to the playground for a live and interactive demo.

API Parameters

Search Query

text

Required

Parameter defines the search query. You can use anything that you would use in a regular Yandex search.

Localization

yandex_domain

Optional

Parameter defines the Yandex domain to use. It defaults to yandex.com. Head to the Yandex domains for a full list of supported Yandex domains.

A default lr is used for each yandex_domain.
Example: 84(US) for yandex.com

A default lang parameter en(English) is used for yandex.com

lang

Optional

Parameter defines the language to use for the Yandex search. Head to the Yandex languages for a full list of supported Yandex languages.
It defaults to en when yandex_domain is yandex.com.

Geographic Location

lr

Optional

Parameter defines country or region ID to limit the search results to. Head to the Yandex locations for a full list of supported Yandex locations.

If parameter is not set - the matching location of selected yandex_domain is used, e.g. 84 for yandex.com.

Advanced Yandex Parameters

family_mode

Optional

Parameter enables or disables Family Mode (safe search). It can be set to:
- Off(0)
- Moderate(1)
- Strict(2).
It defaults to Moderate(1).

fix_typo

Optional

Parameter enables or disables automatic spelling correction. It can be set to: true - false. It defaults to true.

groups_on_page

Optional

Parameter defines the maximum number of groups displayed on a single results page. It defaults to 20.

sort_mode

Optional

Parameter defines the sorting mode of search results. It can be set to:

relevance - by relevance (default)
date - by date.

period

Optional

Parameter defines the time period for search results. It can be set to:

all - all time (Default)
day - last day
last_two_weeks - last two weeks
month - last month

Pagination

p

Optional

Parameter defines page number. Pagination starts from 0.

Serpapi Parameters

engine

Required

Set parameter to yandex to use the Yandex API engine.

no_cache

Optional

Parameter will force SerpApi to fetch the Yandex results even if a cached version is already present. A cache is served only if the query and all parameters are exactly the same. Cache expires after 1h. Cached searches are free, and are not counted towards your searches per month. It can be set to false (default) to allow results from the cache, or true to disallow results from the cache. no_cache and async parameters should not be used together.

async

Optional

Parameter defines the way you want to submit your search to SerpApi. It can be set to false (default) to open an HTTP connection and keep it open until you got your search results, or true to just submit your search to SerpApi and retrieve them later. In this case, you'll need to use our Searches Archive API to retrieve your results. async and no_cache parameters should not be used together. async should not be used on accounts with Ludicrous Speed enabled.

zero_trace

Optional

Enterprise only. Parameter enables ZeroTrace mode. It can be set to false (default) or true. Enable this mode to skip storing search parameters, search files, and search metadata on our servers. This may make debugging more difficult.

api_key

Required

Parameter defines the SerpApi private key to use.

output

Optional

Parameter defines the final output you want. It can be set to json (default) to get a structured JSON of the results, or html to get the raw html retrieved.

API Results

JSON Results

JSON output includes structured data for organic results, knowledge graph, inline images and inline videos.

A search status is accessible through search_metadata.status. It flows this way: Processing -> Success || Error. If a search has failed, error will contain an error message. search_metadata.id is the search ID inside SerpApi.

HTML Results

HTML output is useful to debug JSON results or support features not supported yet by SerpApi.
HTML output gives you the raw HTML results from Yandex.

API Examples

Example results for text: coffee

Example results for text: coffee

JSON Example

{
  "search_metadata": {
    "id": "67740095c057491092b28d28",
    "status": "Success",
    "json_endpoint": "https://serpapi.com/searches/bb85db7bea38c00a/67740095c057491092b28d28.json",
    "created_at": "2024-12-31 14:32:53 UTC",
    "processed_at": "2024-12-31 14:32:53 UTC",
    "yandex_url": "https://yandex.com/search/?text=coffee",
    "raw_html_file": "https://serpapi.com/searches/bb85db7bea38c00a/67740095c057491092b28d28.html",
    "total_time_taken": 0.4
  },
  "search_parameters": {
    "text": "coffee",
    "engine": "yandex"
  },
  "search_information": {
    "organic_results_state": "Results for exact spelling",
    "query_displayed": "coffee"
  },
  "organic_results": [
    {
      "position": 1,
      "title": "Coffee - Wikipedia",
      "link": "https://en.wikipedia.org/wiki/Coffee",
      "displayed_link": "en.wikipedia.org›Coffee",
      "snippet": "In a commonly repeated legend, Kaldi, a 9th-century Ethiopian goatherd, first observed the coffee plant after seeing his flock energized by chewing on the plant.[3]..."
    },
    {
      "position": 2,
      "title": "Coffee: A Full Overview. If you are like most people... | Medium",
      "link": "https://inovize.medium.com/coffee-a-full-overview-269be1d5d5e2",
      "displayed_link": "inovize.medium.com›coffee-a-full-overview-…",
      "snippet": "Coffee is a delicious and fascinating drink. In this article, we will dive into everything you need to know about coffee, from its origin and history to its types and uses."
    },
    {
      "position": 3,
      "title": "10 Surprising Facts About Coffee",
      "link": "https://www.linkedin.com/pulse/10-surprising-facts-coffee-abdelrhman-ali",
      "displayed_link": "linkedin.com›pulse/10-surprising-facts-coffee-…",
      "snippet": "Coffee is one of the world's most beloved beverages, consumed by millions of people every day."
    },
    ...
  ],
  "pagination": {
    "current": 1,
    "next": "https://yandex.com/search/?msid=1735655635226972-10463814238228418245-balancer-l7leveler-kubr-yp-sas-547-BAL-952&lang=en&text=coffee&clid=214688&lr=84&p=1&rnd=16024",
    "other_pages": {
      "2": "https://yandex.com/search/?msid=1735655635226972-10463814238228418245-balancer-l7leveler-kubr-yp-sas-547-BAL-952&lang=en&text=coffee&clid=214688&lr=84&p=1",
      "3": "https://yandex.com/search/?msid=1735655635226972-10463814238228418245-balancer-l7leveler-kubr-yp-sas-547-BAL-952&lang=en&text=coffee&clid=214688&lr=84&p=2",
      "4": "https://yandex.com/search/?msid=1735655635226972-10463814238228418245-balancer-l7leveler-kubr-yp-sas-547-BAL-952&lang=en&text=coffee&clid=214688&lr=84&p=3",
      "5": "https://yandex.com/search/?msid=1735655635226972-10463814238228418245-balancer-l7leveler-kubr-yp-sas-547-BAL-952&lang=en&text=coffee&clid=214688&lr=84&p=4"
    }
  },
  "serpapi_pagination": {
    "current": 1,
    "next_link": "https://serpapi.com/search.json?device=desktop&engine=yandex&lang=en&lr=84&p=1&text=coffee&yandex_domain=yandex.com",
    "next": "https://serpapi.com/search.json?device=desktop&engine=yandex&lang=en&lr=84&p=1&text=coffee&yandex_domain=yandex.com",
    "other_pages": {
      "2": "https://serpapi.com/search.json?device=desktop&engine=yandex&lang=en&lr=84&p=1&text=coffee&yandex_domain=yandex.com",
      "3": "https://serpapi.com/search.json?device=desktop&engine=yandex&lang=en&lr=84&p=2&text=coffee&yandex_domain=yandex.com",
      "4": "https://serpapi.com/search.json?device=desktop&engine=yandex&lang=en&lr=84&p=3&text=coffee&yandex_domain=yandex.com",
      "5": "https://serpapi.com/search.json?device=desktop&engine=yandex&lang=en&lr=84&p=4&text=coffee&yandex_domain=yandex.com"
    }
  }
}

More complex examples with multiple optional parameters

The URL below fetches:

  • • The forth page (p=3) of the results,
  • • for the search "apple" (q=apple),
  • • with the Russian language and domain (lang=ru, yandex_domain=yandex.ru)
  • • inside USA (lr=84)
  • • sorted by time (sort_mode=time)
  • • within 24 hours (period=day)

More complex examples with multiple optional parameters

JSON Example

{
  "search_metadata": {
    "id": "69cd972cc8be6510e6dda270",
    "status": "Success",
    "json_endpoint": "https://serpapi.com/searches/EFlFWo2i54k1LN25w9Nj5A/69cd972cc8be6510e6dda270.json",
    "created_at": "2026-04-01 22:07:40 UTC",
    "processed_at": "2026-04-01 22:07:41 UTC",
    "yandex_url": "https://yandex.ru/search/?lang=ru&lr=84&p=3&text=Coffee",
    "raw_html_file": "https://serpapi.com/searches/EFlFWo2i54k1LN25w9Nj5A/69cd972cc8be6510e6dda270.html",
    "total_time_taken": 1.45
  },
  "search_parameters": {
    "text": "Coffee",
    "engine": "yandex",
    "lang": "ru",
    "p": "3",
    "lr": "84",
    "yandex_domain": "yandex.ru",
    "device": "desktop",
    "sort_mode": "time",
    "period": "day"
  },
  "search_information": {
    "organic_results_state": "Results for exact spelling",
    "query_displayed": "Coffee"
  },
  "organic_results": [
    {
      "position": 1,
      "title": "Айгор - Кофе на двоих » Скачать музыку...",
      "link": "https://bloomuz.com/7976-ajgor-kofe-na-dvoih.html",
      "displayed_link": "bloomuz.com›7976-ajgor-kofe-na-dvoih.html",
      "snippet": "Скачайте песню «Айгор – Кофе на двоих» в формате MP3 бесплатно. Качество 320 kbps, длительность 04:08, размер 9.5 MB.",
      "date": "22 часа назад"
    },
    {
      "position": 2,
      "title": "Casino Beef Играй каждый день",
      "link": "https://beef-0.ik1.casino/",
      "displayed_link": "beef-0.ik1.casino",
      "snippet": "Запусти своё везение! Beef Online казино. Держи темп на Биф Официальный портал  Турниры и розыгрыши, Играй на максимум. Запускай слот...",
      "date": "22 часа назад"
    },
    {
      "position": 3,
      "title": "Demi Cafe, кофейня, Вена — Яндекс Карты",
      "link": "https://yandex.ru/maps/org/demi_cafe/192027068486/",
      "displayed_link": "yandex.ru›maps/org/demi_cafe/192027068486/",
      "snippet": "Кофейня Demi Cafe по адресу Вена, +43 12023869. Смотреть часы работы. Построить маршрут в Яндекс Картах.",
      "date": "22 часа назад"
    },
    ...
  ],
  "ads_results": [
    {
      "position_on_page": 11,
      "title": "Кофе в Москве по выгодным ценам",
      "link": "https://yabs.yandex.ru/count/WeCejI_zOoVX2La60gqJ07FbZxxMbd029s3s2N2zOG9wi-yj3Gq1xqT0XpwVovqzs-_SUSEThz_nUiCTBWdhrOW62UlLY4PzWpeZYCGIqWWQIKHraP4CAbArQaMoTy2KJGg8BAYG25Nw25g0kUWdCEWuwZ3TTV1Hf80cT07X3Q8Au7hWvAC0hGTEM0LeFN2wAa3hWPDL0LeFd7eKeFN0ILk0jWEliWAq7NXr2z1suCKjGDk15ra1sWwynWhGTd2r8-ThGgz33EwNUvlJfSMFXNRBgCGktpwsB883V5dq-DJJg5rJXsf0dz2eRUCsT2gTthXjFsie_fn6eNRqQUTEg5HgIu233TfYnOoBMeyzinjlyuD36rz8E9zlc3pNPlU1W1l0VWFtWpOpuLnN7vTB7vSBM4n8LOqOWwxlUetkQRPjE0mVIAiX8O0l3vnw1B1r04pxnHGJLKMGSUk2-Ng5S4n4y4eUceMj2RUxgWuEs6B4mWuwh4BvvWgOWhd9Gu_2rbFGOIQKBOHzfyIGcpeMpAHZznYnZz4zZ5a3rugx0YP4q0AcUuM2mmW970JLJRsbtlnwRfFhkStT_yOb5EuFMr0I_c0GzlzTKVUzA-e-juEflzEHIRwMvZx-BCrzP9fvjinorGTpp5nw_PGctxnTrtMTDby84ripf1jZwB4C3SR9ox97xpXvMVReBGtfozwiJ3BGapyO5pWsFwOzE86_BdrX_yMhm6bvcu3ybRtsJteVTOXbfSHAfdp9sqfi2YdvKTi7O34icyfF0GN3RTH34We14FopDGeBMejIxPZSorSQq9fv4uAStj-UIXwr6Y8f1ZU47Dr8MohL1uxkHzquwce8Vue2~2?etext=2202.pVYf5x-2pmktSyoYTbyc529mcmNxZ3dvZHllbWFmeGo.d9fd1f6ecf914f16a897469ba8e2bd91be676997&from=yandex.ru%3Bsearch%3Bweb%3B%3B0%3B&q=coffee",
      "displayed_link": "reddragon-msk.ru›Кофе-Москва…",
      "snippet": "ПромоШирокий ассортимент, выгодные условия, программа лояльности, доставкаВакансииКонтактыСладостиВодорослиКонтактная информацияТелефон+7 (495) 085-XX-XX ПоказатьВремя работыежедневно 10:00-21:00Метром. Краснопресненская",
      "sitelinks": {
        "inline": [
          {
            "title": "Вакансии",
            "link": "https://yabs.yandex.ru/count/WdaejI_zOoVX2Ldy0LqJ0DDaZRxMbd029s3s2N2zOG9wi-yj3Gq1xqT0XpwVovqzs-_SUSEThz_nUiCTBWchab0IYIMa4JIIYEeY8nbKf6hLYcJ03fYoIG6H1HKIeKeVGGim5_q41Xr77QQx3ZwA5D24BY2yGLG1N0-SV1IWzS09gm2j1qvN1MWzSB8gGEk1Kuy2j1uuQGlGTk1LLe2s0wzk0TeElBW5Q3lm8Yj0su7NM07Q3gvsv7nDw7M8mVroRtEwjFYnq6uPbTZbsyUMHN20BuiUdteQjMlgK0te4ngrRTo6JgNJ6xVjPmt5dzCer8u-xTm9bKfj2N2mGLkic75Hwx5dTkDjVd1eumi9v_CDa-VQx3uGS0FOR-1-q6OcdElgutBfut81YmcfgX5ZqFLThz4zpRODX-43QJKa1F3bWLEF0BOEW6c_c6AYgWWoRbqmNwyGZea8Nib3ix0ruNPNrS41MunOs467LIZVN05JC3Tvw57OUWewp8IoXR3lb1XoKyU2cNJi7YFsCRg7CMlWMd5Nm8G8Mi1qhr1m6261Ww2wgRVKcr_FRN8zjxdxtxY4mlrX2qh27mp2_hyhwhvtHTtdTZ3rTpeooTVItCUVfRcFJ3FFbbck-c2EcKkldzBacxVhkgxJvWjXOck6T6CCFPQXmJXvMVRe7ISlonwzfI5zsPkLIGPwyWVZ0iVcnmruS09_NVh2_ejNWTFoDW7vAtljd_G-wX3BIecLJFcIjvNO55BoexOFm6AW9PK_xkrnAUeX2OKG_C6a2nnQYrBjcDpBLnhGcdaJWfpUtvvA7hKQ8Ya6DuGStKXRAjK7Zkv7tJZgQWX_YW80~2?etext=2202.pVYf5x-2pmktSyoYTbyc529mcmNxZ3dvZHllbWFmeGo.d9fd1f6ecf914f16a897469ba8e2bd91be676997&from=yandex.ru%3Bsearch%3Bweb%3B%3B0%3B&q=coffee"
          },
          {
            "title": "Контакты",
            "link": "https://yabs.yandex.ru/count/WdyejI_zOoVX2Ldy0OqJ06FbZxxMbd029s3s2N2zOG9wi-yj3Gq1xqT0XpwVovqzs-_SUSEThz_nUiCTBeaRIZIeIaL6D4XObOIII2mXZQ2HH5GN6ScW8bMhLYG3Ti2KJGg8BAYG25Nw25g0kUWdCEWuwZ3TTV1Hf80cT07X3Q8Au7hWvAC0hGTEM0LeFN2wAa3hWPDL0LeFd7eKeFN0ILk0jWEliWAq7NXr2z1suCKjGDk15ra1sWwynWhGTd2r8-ThGgz33EwNUvlJfSMFXNRBgCGktpwsB883V5dq-DJJg5rJXsf0dz2eRUCsT2gTthXjFsie_fn6eNRqQUTEg5HgIu233TfYnOoBMeyzinjlyuD36rz8E9zlc3pNPlU1W1l0VWFtWpOpuLnN7vTB7vSBM4n8LOqOWwxlUetkQRPjE0mVIAiX8O0l3vnw1B1r04pxnHGJLKMGSUk2-Ng5S4n4y4eUceMj2RUxgWuEs6B4mWuwh4BvvWgOWhd9Gu_2rbFGOIQKBOHzfyIGcpeMpAHZznYnZz4zZ5a3rugx0YP4q0AcUuM2mmW970JLJRsbtlnwRfFhkStT_yOb5EuFMr0I_c0GzlzTKVUzA-e-juEflzEHIRwMvZx-BCrzP9fvjinorGTpp5nw_PGctxnTrtMTDby84ripf1jZwB4C3SR9ox97xpXvMVReBGtfozwiJ3BGapyO5pWsF_Rnu0J-klI5_HUl0gVbRGBoL_RQF-bzr26MbH8hcV8bRoknAQJaHsqVWCL0Ioh_30K4R4Kz9A4G3_neHQRQCMylNyEWDNDHWgpVb0NBDserC5uCpWKvkZ5ngLGVEF8VVctKrOL450K0~2?etext=2202.pVYf5x-2pmktSyoYTbyc529mcmNxZ3dvZHllbWFmeGo.d9fd1f6ecf914f16a897469ba8e2bd91be676997&from=yandex.ru%3Bsearch%3Bweb%3B%3B0%3B&q=coffee"
          },
          {
            "title": "Сладости",
            "link": "https://yabs.yandex.ru/count/WdqejI_zOoVX2La00dqJ01DbZhxMbd029s3s2N2zOG9wi-yj3Gq1xqT0XpwVovqzs-_SUSEThz_nUiCTBWaXfIIZAdKeYSGIqWWQIKHraP4CAbArQaLIO0TCsQI0o88AYL2bZw05c8j-0eEEemxJNGSVHGfeGXSGtY2g0Au7JZuAq7hWX5M0rWEdgmAq7ZXP5Q3rmAb70LeFdBG5Q3lmAYj0su5Njm1j1rxS0hGTU94LeEt0Qwm0RGTNEtA-9lGwnE1-kRSvNLhyM6YtZ4hiykrZoo8um9T5ZqyzZTerTQW6z0cDsZPkGwVIwOtRzhE6uizf56f7dtRkX4gbjWGusA0jLiougFNOCxlnDZyujF65XFFvXibpRNOV2BW1x3TmFsWp4yvrzN6vz76vWCM4LDM8CUZwhjVedcRRXiFmWRGQ4WBuyi2fHm1R1y2qNqmnKLK46RSkcAzN2CT41A_aeLdOcd2xg-hWW2r6BEoWmogKRww0APYRFFGeR3q57MP2sKBOTqeCkQbZmKmwTeyH-nZTmvWrSAsuAs1212rWkbSeE8oGm45GtTHRwislvpQvdjlS_MzSGk7-i0KbuGy6OV_V5NNVkwBkSpkO-ZiTcUHhQUxZpzBSHwQPPyiiLtqmnyobrqzfyitRTLtNQVE5CB4rGxenXXxBq62Sl2nxz8wJbsMFtjAGlkpDoYG3FVc3SO5ZysCL7fp0NvU-iF_YLU2ql4r0_ifU-oUzZph4ib9Y9LE-v6qbDeMK_AZj0x0ObahbnoSyQH3ra8H24FopDGeBMejIxPZSorSQq9fv4uAStj-UIXwr6Y8f1ZU47Dr8MohL1uxkHzquwce8Vue2~2?etext=2202.pVYf5x-2pmktSyoYTbyc529mcmNxZ3dvZHllbWFmeGo.d9fd1f6ecf914f16a897469ba8e2bd91be676997&from=yandex.ru%3Bsearch%3Bweb%3B%3B0%3B&q=coffee"
          },
          ...
        ]
      }
    },
    {
      "position_on_page": 12,
      "title": "Кофемолка Bosch TSM6A011W",
      "link": "https://yabs.yandex.ru/count/WseejI_zOoVX2LbW0-KQ02Com5w1i9AQLW9cRvY0tknxIqD3mBj4G4z1AvKxJQ3Fvt9dp_OxTzvmv-jtlDvmXmi09IeHaj6rIYM1HubAX6HqJQfIQrYhI3cUF4SvaAmpb8nub79OYuoAU7BSJjjsEgFtyuRoqCZXTDxJgNGQpQDuT6e_eT3SvW7AyNGwx-apd-9G7Xavd4-fD1h5RPidA0UD8skTL4GbCheYMOzg9MfGFIC8AQcs2Ya91GaD7IMP864xSQSqjskX6qDMeDg6RJkfKQ8afNf6K98HK4sbCMH4PBqQqI2X5BHK7H9I4WeQOSE63SKTC6MJ0Y8BAYH2bJw25c0k-WaCEeuc4Fdu-FZubEWm5Q6Xi441JPO5X3rmyb60rWCdh0Aq7ZXT5Q3rmCcg0Aq7JZqAq7hWf2r0su5NMG7Q3how1MWxyE8MeEt0Ywm0RGTUOmLeExZQaVCrCMT06GTVCiZ9wIQbnNq_XEaFtYMJ4tCMbmzPxu5B7z6oOZM0s5yHqt92lD9NDy2NHOzFFOtQDNMe1lG9ZTesRaEdqkcDs_QpXkBFQHHgHvzsxeHAfRO4EDYWBLRCkAZrs3ExyK9r56eNnMnHMMxsB-O5w7muEPzlc3pNPlU1W1l0VWFND-BjsB3rTOHUa7rSBdrSBk0iqwxNw9vcsuR3y86q6X82-FB0gKS0MngirNunOGYRMEJZu-FZuujP0eSOTy5ylK8u9Y9u9G_DmjR46TEM78JX0XPsq64LoZTNm1JC2KJ9KjXw2ZhCXF84Y-4OSbF7Wfcqs3r6x6Dq3sFMmBNYhe094RI0wLwXu3120WT1TLDlgJU_djlaUcvpzx_Hmo7V3zzeelB1jE7Q_zA1LTzB1rPzxl9hxUyKhaX-BOKYJNwMGf4cJ7E9GcPPwiSSvzXrNTTfyuKmiJL3kZ667ilGOC_rH4lldkk9bjxwDbzcHc4KUxBd6qIYzMFQWm_midU6vR-tb28zkBgN4IolzNbSBNzBd4YkzM5LlQ61cq9AVjJs0LWCJ12KFuAwBeseXoGK0Xly0F4r66H0EyvTxXkgEozugqAqN1sSy1CkllUYYi2qXojcXPfXQ42EAyxzUdrl1V8Kz_eBrhzkwFk2unO0OzFWCZb1gY37NPOPWgClCpy1zXGPdww6SFar~2?etext=2202.pVYf5x-2pmktSyoYTbyc529mcmNxZ3dvZHllbWFmeGo.d9fd1f6ecf914f16a897469ba8e2bd91be676997&from=yandex.ru%3Bsearch%3Bweb%3B%3B0%3B&q=coffee",
      "displayed_link": "citilink.ru›Кофемолка-Bosch-Tsm6...",
      "snippet": "ПромоЕсть из чего выбрать. Ведущие производители. Выгодные цены. Гарантия. Купите! · Акции и скидки. С регистрацией цены ниже. Установка и настройкаАкцииДоставкаВсе новинкиПодарочные сертификатыКонтактная информацияТелефон+7 (495) 780-XX-XX ПоказатьВремя работыежедневно 10:00-22:00",
      "sitelinks": {
        "inline": [
          {
            "title": "Акции",
            "link": "https://yabs.yandex.ru/count/WqiejI_zOoVX2Laf0-qP08Dmkbw1i9AQLW9cRvY0tknxIqD3mBj4G4z1AvKxJQ3Fvt9dp_OxTzvmv-jtlDvmXmi09IeHaj6rIYM1HubAX6HqJQfISpXvX89a1EMeOQqYvNZo7EL0iivGCk9Hoc4jCYhYoN4xRTlfZDxF6yf38uVJUK-dqcaqZ-BHgVs4GdER1oZ7q-cyfyzyYaDvPEHmFgNIQ1ItRPwW73IEh7LI4PN8w8faFQgLg47rZ22afDegf2GKP894Kf6Ha58GbSGIqWWQHK93Gaf2GIDisB0nP0TCsQI0o88AYL2bZw05c8j-0eEEemb4FZu-FZubEan5Q2XiK42JPG5X3vny5A3rm0ch0Aq7JbS5Q3rmiYf0wu5JZmAq7ZXf2z1su5LMWBO3hsu1sWwyk0LeE_0YAq3RWTTO0TeEhdRaV4tC6L36mPSCSdAwIMbntmzX-eDtoUJ4dCNbGzPxuD97jAnO3I3sLyIqd12lzDKDy6NHurDFetPD7Qe1VKAZjetRqAbqUkEs_QoX-7CQXThHfvqxeLAfBG4EDcYB5JCkQZtsp6wyK1s5saKnMrIMc_sBUG4w7qxEvnicpxNPVI3W1h3VmFMDU3isR7qTeHTa7vTB7vSBECkqwpMwfzcsuJ1y8As6X02-F73g4S2M1ckrNqmOmYOM-VZu-FZuOfR08SPTC5-l48w925x9GxEmDN76j2K7ORY0XHrqM8NopHKm1NC2KR8Kjfw23ZEXFC5YE8RSrB5W9YrsZn7x6Dt3c3LmhRWhO484BM2wLoWuZ930GL3Tr5lgpQ_dDhcUszpzR_HmoFV3DvgeV31jkFQ_T63LzzA1LP-x_5hxEuKhabzBeKYJdwLGf0dJNAAGMPRwCSSvTbtNTTfy8KnipP1kZA77CZJOSptHqhldUgAbjxxDbvbH6CMUxFa6aMZzk04FFi3BtXcM_zvIYlJWwbv6iBpMvt6r_2rn8hdMXrNrXWPk2YdvKTi7O34m4L1-Cuf3FUeX2OKP_C_OW-Uv_tO3RYy4xtk7Pfm5uQF1HJLHLCTBzpEu--M34RGn4na4yXIV_WNhKDpGqRN47036nlGoEHPLa6EDB3C41rncVcPrB6sVhYQOzZK0~2?etext=2202.pVYf5x-2pmktSyoYTbyc529mcmNxZ3dvZHllbWFmeGo.d9fd1f6ecf914f16a897469ba8e2bd91be676997&from=yandex.ru%3Bsearch%3Bweb%3B%3B0%3B&q=coffee"
          },
          {
            "title": "Доставка",
            "link": "https://yabs.yandex.ru/count/WqOejI_zOoVX2Lam0yKP0CDljrw1i9AQLW9cRvY0tknxIqD3mBj4G4z1AvKxJQ3Fvt9dp_OxTzvmv-jtlDvmXmi09IeHaj6rIYM1HubAX6HqJQfIQrYhI3cUF4SvaAmpb8nub79OYuoAU7BSJjjsEgFtyuRoqCZXTDxJgNGQpQDuT6e_eT3SvW7AyNGwx-apd-9G7Xavd4-fD1h5RPidA0UD8skTL4GbCheYMOzg9MfGFIC8AQcs2Ya91Iaj6G5HIImXZQ1H93Gaf2GKDCA63HjnEs3A9WL45bH8X2fz12t0NFGJ67GSJI3oyV7nyIdHOIf2Gs630fei2mXxuEIZ0Aq7JbW5Q3rmkYf0wu6JLG5Q3vnw5A3rm4bRWBO3hx82j1ruTGlGTk35BK3RWHTP0TeElCOAq7PmjIFdQsBEW38ElcIGazDDIelxVWZJ7xnB9YVcB2uViju3bpwYPSLg0B6_8gRbX7Ybhsw0BuiUdteQjMlgK0te4ngrRTo6JgNJ6xVjPmt5dzCer8u-xTm9bKfj2N2mGLkic75Hwx5dTkE5wYZKBehPehBSx5_C2z3vS78-tp1vhitk0m4tWFq6hc_4sx5Xw-i8lI3xk5pwk5p0MQPThz4zpRODX-43QJKa1F3bWLEF0BOqMAlzOi8GDh78nyV7nySNimGECUw2-Ng5S4n4y4eUceMjYJEcBJa8mmKixA33AfHlhe0fc1E8agMmzHHqc0db2HR3CUIcZWKpQR5xZDZ7w1x6h85hnLq14o9e0TEzGi5XX0GEWkgctb9lVZstoVNSvkv_euT3lX--qKJbWsd3jV-b0wk-bmwi-jpbrzhVALoH_5eAHPhyB8KYJPZc4eNCijIFESwnwxgkq-OBOM9hXdHZ33sMeS6UwucMtZtN4oszzMs-p8p2AFPappU8HEl7FXvyW9UzCop_lQKKwS7LlOnWUQtFushvM-94SgqFg-eD3TmKKlAZjW_0Oc0wbLyRcQI3g8Sa508R_D3mDLXZG3lENRuRgZiZUAiyj5mNdF0DBhwNeXg1TG_ENKOHHkffuX-PvhZc84z1xL-mdiKDhIvBm05WR4mlasDH1JdMo393SC1bvcTMnzBswMg2QLy3~2?etext=2202.pVYf5x-2pmktSyoYTbyc529mcmNxZ3dvZHllbWFmeGo.d9fd1f6ecf914f16a897469ba8e2bd91be676997&from=yandex.ru%3Bsearch%3Bweb%3B%3B0%3B&q=coffee"
          },
          {
            "title": "Все новинки",
            "link": "https://yabs.yandex.ru/count/WqOejI_zOoVX2Laj0yKP0CDljrw1i9AQLW9cRvY0tknxIqD3mBj4G4z1AvKxJQ3Fvt9dp_OxTzvmv-jtlDvmXmi09IeHaj6rIYM1HubAX6HqJQfIQrYhI3cUF4SvaAmpb8nub79OYuoAU7BSJjjsEgFtyuRoqCZXTDxJgNGQpQDuT6e_eT3SvW7AyNGwx-apd-9G7Xavd4-fD1h5RPidA0UD8skTL4GbCheYMOzg9MfGFIC8AQcs2Ya91PceRLYBI2mXZQ1H93Gaf2GKDCA63Hj4Ti2KJGg8BAYG25Nw25g0kUWdCEWuca3au-FZurEYmrI4Xi861JHP5X3smCb70LeFdB0Aq7hWT5M0rWCdgmAq7ZZrA43hWPEs06q7NcK5Q3lmwXQWxS2BMu2s0o-o0hGTU8qLeEtWQaVEryIS0MKSVCaW9wURb1Rt_H2cFtYNJ4xCMLm-PBq7Bdr4ouhL069_HKpB2V5ANzq0NnOzFlKqQjVKeHhG9pHgsxWDdKgdDsxRpngAFwTHg1rzshaJAfNQ4k1WWxPOCUEYrcFFxCOBrL6eNHIpHMMvsR-O5w3puUHylc7oN9lT1m9k0FiDND-8jsF3rjSHUa7sSRdqSRc0iqoxNgDxccqR3iC7qcf82E3B0wSU0Mnfi5RxnOGXR6AHZu-FZuylPWaSOjm5y_KAuPY8u9KyD0jR4sTCMt8GXWjOs467LIZVN05JC2SG9KjXwodeC1FA4oo6OyXD7GjcqcBt6B6FqJsCMGFNYhi29aJG0gPxXOB320aS1DLDlQNU_7fka-kvpTt_HW-7V3zyeudA1zE6Q_zB1rPzBnrOzRdBhxM_KxWY-RKKYZJvMGf5cZ3D9GgPPQaVSvnZrtLTfyqNmiJM3Ed667eiGuCzrnCjlNkk9rfwwzjycHc5KUp9dcyGYTQFLNZm0Lxsph3yzvPIf0TNzpA2vRK-ZwlbRuaJoRK-hAetD71JICcFsZu0Yu5PAx-50DWnHJqaeH0R_CtmDKnZG3lENRiRgdiYU4iyjFmMd90DBhwHeXeXTG_8NOOGHcgXYKyyidb7GPw2exzWFOiRMbsMW0F0s9XU9iUY2dAiaMM6u83BpC-iZgNjqzK4qxu6~2?etext=2202.pVYf5x-2pmktSyoYTbyc529mcmNxZ3dvZHllbWFmeGo.d9fd1f6ecf914f16a897469ba8e2bd91be676997&from=yandex.ru%3Bsearch%3Bweb%3B%3B0%3B&q=coffee"
          },
          ...
        ]
      }
    }
  ],
  "pagination": {
    "current": 4,
    "next": "https://yandex.ru/search?text=Coffee&lr=84&p=4&test-mode=1&no-tests=1&promo=nomooa&how=tm&within=77&rnd=93957",
    "other_pages": {
      "2": "https://yandex.ru/search?text=Coffee&lr=84&p=1&test-mode=1&no-tests=1&promo=nomooa&how=tm&within=77&rnd=20714",
      "3": "https://yandex.ru/search?text=Coffee&lr=84&p=2&test-mode=1&no-tests=1&promo=nomooa&how=tm&within=77&rnd=20714",
      "5": "https://yandex.ru/search?text=Coffee&lr=84&p=4&test-mode=1&no-tests=1&promo=nomooa&how=tm&within=77&rnd=20714"
    }
  },
  "serpapi_pagination": {
    "current": 4,
    "next_link": "https://serpapi.com/search.json?device=desktop&engine=yandex&lang=ru&lr=84&p=4&period=day&sort_mode=time&text=Coffee&yandex_domain=yandex.ru",
    "next": "https://serpapi.com/search.json?device=desktop&engine=yandex&lang=ru&lr=84&p=4&period=day&sort_mode=time&text=Coffee&yandex_domain=yandex.ru",
    "other_pages": {
      "2": "https://serpapi.com/search.json?device=desktop&engine=yandex&lang=ru&lr=84&p=1&period=day&sort_mode=time&text=Coffee&yandex_domain=yandex.ru",
      "3": "https://serpapi.com/search.json?device=desktop&engine=yandex&lang=ru&lr=84&p=2&period=day&sort_mode=time&text=Coffee&yandex_domain=yandex.ru",
      "5": "https://serpapi.com/search.json?device=desktop&engine=yandex&lang=ru&lr=84&p=4&period=day&sort_mode=time&text=Coffee&yandex_domain=yandex.ru"
    }
  }
}

JSON structure overview

{
  "organic_results": [
    {
      "position": "Integer - The position of the result on the search results page.",
      "title": "String - The title of the result.",
      "link": "String - The URL of the result.",
      "displayed_link": "String - The displayed URL of the result.",
      "snippet": "String - The snippet of the result.",
      "thumbnail": "String - The thumbnail image URL of the result.",
      "duration": "String - The duration of the result video.",
      "video_quality": "String - The quality of the result video.",
      "date": "String - The publication date of the result.",
      "sitelinks": {
        "inline": {
          "title": "String - The title of the inline sitelink.",
          "link": "String - The URL of the inline sitelink.",
          "snippet": "String - The snippet of the inline sitelink."
        },
        "expanded": {
          "title": "String - The title of the expanded sitelink.",
          "link": "String - The URL of the expanded sitelink.",
          "snippet": "String - The snippet of the expanded sitelink."
        }
      }
    },
    ...
  },
  "ads_results": [
    {
      "position_on_page": "Integer - The position of the ad on the search results page.",
      "title": "String - The title of the ad.",
      "link": "String - The URL of the ad.",
      "displayed_link": "String - The displayed URL of the ad.",
      "snippet": "String - The snippet of the ad.",
      "thumbnail": "String - The thumbnail image URL of the ad.",
      "duration": "String - The duration of the ad video.",
      "video_quality": "String - The quality of the ad video.",
      "sitelinks": {
        "inline": {
          "title": "String - The title of the inline sitelink.",
          "link": "String - The URL of the inline sitelink.",
          "snippet": "String - The snippet of the inline sitelink."
        },
        "expanded": {
          "title": "String - The title of the expanded sitelink.",
          "link": "String - The URL of the expanded sitelink.",
          "snippet": "String - The snippet of the expanded sitelink."
        }
      }
    }
  ],
  "knowledge_graph": "Hash - The knowledge graph information.",
  "inline_images": [
    {
      "title": "Image Title",
      "url": "Image URL",
      "thumbnail": "Thumbnail URL"
    },
    ...
  ],
  "more_images_link": "Link to more images on Yandex",
  "more_images_serpapi_link": "Link to more images on SerpApi's Yandex Images API",
  "inline_videos": [
    {
      "title": "String - Inline video title",
      "link": "String - Link to the inline video",
      "source": {
        "name": "String - Source name",
        "link": "String - Link to the source"
      },
      "duration": "String - Inline video duration",
      "thumbnail": "String - Link to the inline video thumbnail",
      "views_original": "String - Original views count",
      "views": "Integer - Numeric views count",
      "date": "String - Inline video publication date"
    },
    ...
  ],
  "more_videos_link": "String - Link to more inline videos on Yandex",
  "more_videos_serpapi_link": "String - Link to more inline videos on SerpApi's Yandex Videos API",
  "pagination": {
    "current": "Integer - The current page number.",
    "next": "String - The URL of the next page.",
    "other_pages": {
      "2": "String - The URL of page 2.",
      "3": "String - The URL of page 3.",
      ...
    }
  },
  "serpapi_pagination": {
    "current": "Integer - The current page number.",
    "next_link": "String - The URL of the next page.",
    "next": "String - The URL of the next page.",
    "other_pages": {
      "2": "String - The URL of page 2.",
      "3": "String - The URL of page 3.",
      ...
    }
  }
}