This documentation contains work-in-progress information for future Elastic Stack and Cloud releases. Use the version selector to view supported release docs. It also contains some Elastic Cloud serverless information. Check out our serverless docs for more details.
Get IP geolocation database configuration API
editGet IP geolocation database configuration API
editReturns information about one or more IP geolocation database configurations.
GET /_ingest/ip_location/database/my-database-id
Prerequisites
edit-
If the Elasticsearch security features are enabled, you must have the
manage
cluster privilege to use this API.
Path parameters
edit-
<database>
-
(Optional, string) Comma-separated list of database configuration IDs to retrieve. Wildcard (
*
) expressions are supported.To get all database configurations, omit this parameter or use
*
.
Query parameters
edit-
master_timeout
-
(Optional, time units)
Period to wait for the master node. If the master node is not available before
the timeout expires, the request fails and returns an error. Defaults to
30s
. Can also be set to-1
to indicate that the request should never timeout.
Examples
editGet information for a specific IP geolocation database configuration
editGET /_ingest/ip_location/database/my-database-id
The API returns the following response:
{ "databases" : [ { "id" : "my-database-id", "version" : 1, "modified_date_millis" : 1723040276114, "database" : { "name" : "GeoIP2-Domain", "maxmind" : { "account_id" : "1234567" } } } ] }