API IP poiblí saor in aisce gan fíordheimhniú. Ceithre endpoint ag tabhairt ar ais IPv4, IPv6, ISP, ASN, geolocation agus crios ama — i JSON nó téacs.
# Full data (JSON) https://ippubblico.org/?api=1 # IPv4 + IPv6 (plain text, 2 lines) https://ippubblico.org/?text=1 # IPv4 only https://ipv4.ippubblico.org/ # IPv6 only https://ipv6.ippubblico.org/
Seolann sé ar ais réad JSON iomlán le gach sonraí ar fáil faoi sheoladh IP an glaoire.
curl https://ippubblico.org/?api=1
{
"status": "ok",
"ip": "93.45.12.88",
"ipv4": "93.45.12.88",
"ipv6": null,
"isp": "Telecom Italia S.p.A.",
"asn": "AS3269",
"timezone": "Europe/Rome",
"datetime": "2026-05-05T12:00:00+02:00",
"geo": {
"city": "Rome",
"region": "Lazio",
"country": "Italy",
"lat": 41.9028,
"lon": 12.4964
},
"headers": { /* HTTP request headers */ },
"cached": false,
"lang": "en"
}
| Réimse | Cineál | Cur síos |
|---|---|---|
| status | string | "ok" nó "partial" má theip ar an geolocation |
| ip | string | IP aimsithe (féadann sé a bheith IPv4 nó IPv6) |
| ipv4 | string | null | Seoladh IPv4 má tá sé ar fáil |
| ipv6 | string | null | Seoladh IPv6 má tá sé ar fáil |
| isp | string | null | Ainm an soláthraí seirbhíse idirlín |
| asn | string | null | Uimhir Córas Uathrialach (m.sh. "AS3269") |
| timezone | string | null | Crios ama IANA (m.sh. "Europe/Rome") |
| datetime | string | Dáta/am ISO 8601 i gcrios ama an glaoire |
| geo.city | string | null | Ainm cathrach tuairimeach |
| geo.region | string | null | Réigiún / contae |
| geo.country | string | null | Ainm tíre |
| geo.lat / geo.lon | float | null | Comhordanáidí tuairimeacha |
| cached | boolean | true má tá an toradh ó thaisce 1u |
Seolann sé ar ais IPv4 agus IPv6 ar dhá líne ar leith. Seolann sé ar ais NONE mura bhfuil prótacal ar fáil.
curl https://ippubblico.org/?text=1
IPv4: 93.45.12.88 IPv6: NONE
Seolann sé ar ais seoladh IPv4 amháin mar ghnáth-théacs, nó NONE mura bhfuil sé ar fáil.
curl https://ipv4.ippubblico.org/
93.45.12.88
Seolann sé ar ais seoladh IPv6 amháin mar ghnáth-théacs, nó NONE mura bhfuil sé ar fáil.
curl https://ipv6.ippubblico.org/
2001:db8::1
# Faigh JSON iomlán curl https://ippubblico.org/?api=1 # IPv4 amháin MY_IP=$(curl -s https://ipv4.ippubblico.org/) echo "My IPv4: $MY_IP" # IPv6 amháin MY_IPV6=$(curl -s https://ipv6.ippubblico.org/) echo "My IPv6: $MY_IPV6"
// Full JSON const res = await fetch('https://ippubblico.org/?api=1'); const data = await res.json(); console.log(data.ipv4, data.ipv6, data.geo.country); // IPv4 only const ipv4 = await fetch('https://ipv4.ippubblico.org/').then(r => r.text()); console.log('IPv4:', ipv4);
import requests # Full JSON data = requests.get('https://ippubblico.org/?api=1').json() print(data['ipv4'], data['geo']['country']) # IPv4 only ipv4 = requests.get('https://ipv4.ippubblico.org/').text.strip() print(f'IPv4: {ipv4}')
// Full JSON $data = json_decode(file_get_contents('https://ippubblico.org/?api=1'), true); echo $data['ipv4']; // IPv4 only $ipv4 = trim(file_get_contents('https://ipv4.ippubblico.org/'));
resp, _ := http.Get("https://ipv4.ippubblico.org/") body, _ := io.ReadAll(resp.Body) fmt.Println("IPv4:", strings.TrimSpace(string(body)))
$ip = (Invoke-WebRequest 'https://ipv4.ippubblico.org/').Content.Trim() Write-Host "IPv4: $ip"
require 'open-uri' ipv4 = URI.open('https://ipv4.ippubblico.org/').read.strip puts "IPv4: #{ipv4}"
var client = new HttpClient(); var ipv4 = (await client.GetStringAsync("https://ipv4.ippubblico.org/")).Trim(); Console.WriteLine($"IPv4: {ipv4}");
ipv4.ippubblico.org cuireann sé IPv4 i bhfeidhm trí thaifead DNS Aipv6.ippubblico.org cuireann sé IPv6 i bhfeidhm trí thaifead DNS AAAATá an láithreán gréasáin iomlán ar fáil i 43 teanga. Tá an API féin neamhspleách ar theanga.