apiip 1.0.0 apiip: ^1.0.0 copied to clipboard
A wrapper around the apiip.net API for IPv4 and IPv6 information lookups.
apiip #
A wrapper around the apiip.net API, which provides an information lookup service for IPv4 and IPv6 addresses.
Getting started #
First, obtain an access key by creating an account at https://apiip.net.
You can then use this key to access the API:
import 'package:apiip/apiip.dart';
void main() {
final client = Apiip('ACCESS_KEY', useHttps: false); // HTTPS is not available for free tier users.
print((await client.lookupSelf()).countryName);
}