Yandex

Yandex can be targeted either using direct URL or by using the query parameter to the Yandex search bar.

yandex

Parseable: No
Required parameters: url
Optional parameters: device_type, session_id

Retrieve HTML from Yandex search engine results page by supplying a full Yandex URL to the url parameter. In this case, additional parameters can be specified in the URL itself.

curl -u SPusername:SPpassword -X POST --url https://scraper-api.smartproxy.com/v2/scrape -H "Content-Type: application/json" -d "{\"target\": \"yandex\", \"url\": \"https://yandex.com/search/?text=cookies&lr=10393\", \"parse\": \"False\"}"
import requests

task_params = {
    'target': 'yandex',
    'url': 'https://yandex.com/search/?text=cookies&lr=10393',
    'parse': False,
}

username = 'SPusername'
password = 'SPpassword'

response = requests.post(
    'https://scraper-api.smartproxy.com/v2/scrape',
    json = task_params,
    auth = (username, password)
)

print(response.text)
<?php

$params = array(
    'target' => 'yandex',
    'url' => 'https://yandex.com/search/?text=cookies&lr=10393',
    'parse' => False
);

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, 'https://scraper-api.smartproxy.com/v2/scrape');
curl_setopt($ch, CURLOPT_USERPWD, 'SPusername' . ':' . 'SPpassword');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($params));
curl_setopt($ch, CURLOPT_POST, 1);

$headers = array();
$headers[] = 'Content-Type: application/json';
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);

$result = curl_exec($ch);
echo $result;

if (curl_errno($ch)) {
    echo 'Error:' . curl_error($ch);
}
curl_close ($ch);
?>

yandex_search

Parseable: No
Required parameters: query
Optional parameters: domain (com, ru, by, kz), page_from, num_pages, locale, geo (City,Region,Country), device_type, session_id

Retrieve HTML from Yandex search engine results page by supplying your query to the query parameter.

curl -u SPusername:SPpassword -X POST --url https://scraper-api.smartproxy.com/v2/scrape -H "Content-Type: application/json" -d "{\"target\": \"yandex_search\", \"query\": \"cookies\", \"parse\": \"False\"}"
import requests

task_params = {
    'target': 'yandex_search',
    'query': 'cookies',
    'parse': False,
}

username = 'SPusername'
password = 'SPpassword'

response = requests.post(
    'https://scraper-api.smartproxy.com/v2/scrape',
    json = task_params,
    auth = (username, password)
)

print(response.text)
<?php

$params = array(
    'target' => 'yandex_search',
    'query' => 'cookies',
    'parse' => False
);

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, 'https://scraper-api.smartproxy.com/v2/scrape');
curl_setopt($ch, CURLOPT_USERPWD, 'SPusername' . ':' . 'SPpassword');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($params));
curl_setopt($ch, CURLOPT_POST, 1);

$headers = array();
$headers[] = 'Content-Type: application/json';
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);

$result = curl_exec($ch);
echo $result;

if (curl_errno($ch)) {
    echo 'Error:' . curl_error($ch);
}
curl_close ($ch);
?>