added
2025-06-30 - Bulk Geo IP Lookup via Node.js SDK
17 days ago by Jared Wray
@hyphen/sdk has been released (v1.8.0) with the ability to do bulk geo ip address lookups. Here is an example:
import { NetInfo } from '@hyphen/sdk';
const netInfo = new NetInfo({
apiKey: 'your_api_key',
});
const ips = ['8.8.8.8', '1.1.1.1'];
const ipInfos = await netInfo.getIpInfos(ips);
console.log('IP Infos:', ipInfos);