Versioned lookups
Every response carries a dataset version so caches and clients can coordinate without guessing.
LimesIndex serves versioned lookup results for networks, security systems, proxies, and data products that need predictable cache behavior.
GET /v1/ip/8.8.8.8X-Dataset-Versiondashboard.limesindex.comEvery response carries a dataset version so caches and clients can coordinate without guessing.
Lookups resolve against CIDR ranges directly, not brittle string maps or hand-maintained exception lists.
The API is designed for cacheable edge traffic, fast refreshes, and deterministic rollout behavior.
Dataset versioning is part of the contract, not an afterthought bolted on after the cache starts lying.
curl https://api.limesindex.com/v1/ip/8.8.8.8
{
"data": {
"ip": "8.8.8.8",
"prefix": "8.8.8.0/24",
"asn": 15169,
"asn_name": "Google LLC"
},
"meta": {
"dataset_version": 1
}
}