Flask webapp with a rest api to get information on IP addresses, and of course an anime girl to read you the IP!
- Loli voice
- Web API
- Crabrave plays when you get banned
curl https://[domain]/api/v1?ip=8.8.8.8&data=all"
{
"status": "true",
"IP": "8.8.8.8",
"audio": "/static/generated/8-8-8-8.mp3",
"country_name": "United States",
"country_iso_code": "US",
"subdiv": "California",
"subdiv_iso_code": "CA",
"city": "Mountain View",
"postal_code": "94035",
"latitude": 37.751,
"longitude": -97.822,
"isp": "GOOGLE - Google LLC, US",
"asn": 15169,
"proxy_type": "DCH"
}
curl https://[domain]/api/v1?ip=8.8.8.8&data=audio,isp,asn"
{
"audio": "/static/generated/8-8-8-8.mp3",
"isp": "GOOGLE - Google LLC, US",
"asn": 15169
}