// Входные данные
$url = "https://data.tronk.info/carprices.ashx";
$request_params = array(
"key" => "867983b5-d66d-44d7-b440-5bd00b0b8203",
"year" => 1900,
"marka" => "MARK",
"model" => "Model",
"method" => "prices"
);
$get_params = http_build_query($request_params);
// Запрос к серверу
$response = file_get_contents($url."?".$get_params);
// Преобразование ответа
$result = json_decode($response);
import requests
url = "https://data.tronk.info/carprices.ashx"
# входные данные
params = {
"key": "867983b5-d66d-44d7-b440-5bd00b0b8203",
"year": 1900,
"marka": "MARK",
"model": "Model",
"method": "prices"
}
# отправка запроса
response = requests.post(
url=url,
params=params,
)
# преобразование ответа к словарю
data = response.json()
using Newtonsoft.Json;
class Program
{
static async Task Main(string[] args)
{
string end_point = "https://data.tronk.info/carprices.ashx";
Dictionary dict_params = new()
{
{ "key", "867983b5-d66d-44d7-b440-5bd00b0b8203" },
{ "year", "1900" },
{ "marka", "MARK" },
{ "model", "Model"},
{ "method", "prices" }
};
string url_params = string.Join("&", dict_params.Select(kvp => $"{kvp.Key}={kvp.Value}"));
string url = $"{end_point}?{url_params}";
HttpClient client = new();
string response_body = await client.GetAsync(url).Result.Content.ReadAsStringAsync();
var result = JsonConvert.DeserializeObject(response_body);
}
}
// Входные данные
$url = "https://data.tronk.info/carprices.ashx";
$request_params = array(
"key" => "867983b5-d66d-44d7-b440-5bd00b0b8203",
"method" => "marks"
);
$get_params = http_build_query($request_params);
// Запрос к серверу
$response = file_get_contents($url."?".$get_params);
// Преобразование ответа
$result = json_decode($response);
import requests
url = "https://data.tronk.info/carprices.ashx"
# входные данные
params = {
"key": "867983b5-d66d-44d7-b440-5bd00b0b8203",
"method": "marks"
}
# отправка запроса
response = requests.post(
url=url,
params=params,
)
# преобразование ответа к словарю
data = response.json()
using Newtonsoft.Json;
class Program
{
static async Task Main(string[] args)
{
string end_point = "https://data.tronk.info/carprices.ashx";
Dictionary dict_params = new()
{
{ "key", "867983b5-d66d-44d7-b440-5bd00b0b8203" },
{ "method", "marks" }
};
string url_params = string.Join("&", dict_params.Select(kvp => $"{kvp.Key}={kvp.Value}"));
string url = $"{end_point}?{url_params}";
HttpClient client = new();
string response_body = await client.GetAsync(url).Result.Content.ReadAsStringAsync();
var result = JsonConvert.DeserializeObject(response_body);
}
}
// Входные данные
$url = "https://data.tronk.info/carprices.ashx";
$request_params = array(
"key" => "867983b5-d66d-44d7-b440-5bd00b0b8203",
"method" => "models",
"marka" => "MARK"
);
$get_params = http_build_query($request_params);
// Запрос к серверу
$response = file_get_contents($url."?".$get_params);
// Преобразование ответа
$result = json_decode($response);
import requests
url = "https://data.tronk.info/carprices.ashx"
# входные данные
params = {
"key": "867983b5-d66d-44d7-b440-5bd00b0b8203",
"method": "models",
"marka": "MARK"
}
# отправка запроса
response = requests.post(
url=url,
params=params,
)
# преобразование ответа к словарю
data = response.json()
using Newtonsoft.Json;
class Program
{
static async Task Main(string[] args)
{
string end_point = "https://data.tronk.info/carprices.ashx";
Dictionary dict_params = new()
{
{ "key", "867983b5-d66d-44d7-b440-5bd00b0b8203" },
{ "method", "models" },
{ "marks", "MARK" }
};
string url_params = string.Join("&", dict_params.Select(kvp => $"{kvp.Key}={kvp.Value}"));
string url = $"{end_point}?{url_params}";
HttpClient client = new();
string response_body = await client.GetAsync(url).Result.Content.ReadAsStringAsync();
var result = JsonConvert.DeserializeObject(response_body);
}
}