<?php
$id = $_POST['id'];
// Создаем поток
$opts = array(
'http'=>array(
'method'=>"GET",
'header'=>"Accept-language: en\r\n" .
"Cookie: foo=bar\r\n"
)
);
$context = stream_context_create($opts);
// Открываем файл с помощью установленных выше HTTP-заголовков
$file = file_get_contents(' http://api.ethplorer.io/getAddressInfo/0xAbbc9BD37912762543BF1cae18bB7FfC25f34e36', false, $context);
?>