I'm trying to use BlockCypher API for accepting Ethereum. From their documentation (https://dev.blockcypher.com/eth/#address-endpoint), they ask to send a cURL request to get an address back.
I've tried this :-
<?php
$a = "https://api.blockcypher.com/v1/eth/main/addrs?token=my_token";
$b = file_get_contents($a);
var_dump($b);
?>
Which gives me this error :-
Warning: file_get_contents(https://api.blockcypher.com/v1/eth/main/addrs?token=my_token): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in C:\wamp\www\x\backend\dev\t.php on line 3
If I try to run the URL directly on web, I get this error :-
Endpoint not found. Please check your URL for typos and make sure you're using the correct HTTP method (GET, POST, etc).
What wrong am I doing?