GET/api/instances

List 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

FieldTypeDescription
ipstringIP address of the instance.
portnumberPort the Ollama server is listening on.
citystring | nullCity derived from IP geolocation.
countryCodestring | nullISO 3166-1 alpha-2 country code.
countryNamestring | nullFull country name.
lastUpdatedstring | nullISO 8601 timestamp of the last Shodan scan.
modelsstring[] | nullModel names available on the instance.