Current connection
Return the address seen by the API and its BGP, allocation, and geofeed record.
curl -sS "https://bgp-api.mehrnet.com/v1/me"const response = await fetch("https://bgp-api.mehrnet.com/v1/me");
const data = await response.json();$json = file_get_contents("https://bgp-api.mehrnet.com/v1/me");
$data = json_decode($json, true);from urllib.request import urlopen
import json
data = json.load(urlopen("https://bgp-api.mehrnet.com/v1/me"))