Logo
Logo

PRODUCTS

TOOLS

pricing background

PHPAPI Integration

api

ASN

1<?php
2$ch = curl_init();
3curl_setopt($ch, CURLOPT_URL, "https://api.whoisfreaks.com/v1.0/asn-whois?apiKey=API_KEY&asn=as56554");
4curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET");
5curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
6$response = curl_exec($ch);
7echo $response;
8curl_close($ch);