GET
/api/instancesList instances
Returns all publicly available Ollama instances discovered across major cloud providers, as an array of GeoJSON Feature objects. Results are cached and revalidated every 8 hours.
Example
Request
curl https://ollama-online.example.com/api/instances
Response
[
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.4194,
37.7749
]
},
"properties": {
"ip": "1.2.3.4",
"port": 11434,
"city": "San Francisco",
"countryCode": "US",
"countryName": "United States",
"lastUpdated": "2025-05-10T08:06:48.000Z",
"models": [
"llama3.2:latest",
"deepseek-r1:latest"
]
}
}
]Feature properties
| Field | Type | Description |
|---|---|---|
ip | string | IP address of the instance. |
port | number | Port the Ollama server is listening on. |
city | string | null | City derived from IP geolocation. |
countryCode | string | null | ISO 3166-1 alpha-2 country code. |
countryName | string | null | Full country name. |
lastUpdated | string | null | ISO 8601 timestamp of the last Shodan scan. |
models | string[] | null | Model names available on the instance. |