Execute queries
InfluxDB 3 Enterprise is in Public Alpha
InfluxDB 3 Enterprise is in public alpha and available for testing and feedback, but is not meant for production use. Both the product and this documentation are works in progress. We welcome and encourage your input about your experience with the alpha and invite you to join our public channels for updates and to share feedback.
Use tools and libraries to query data stored in an InfluxDB 3 Enterprise database.
InfluxDB client libraries and Flight clients can use the Flight+gRPC protocol to
query with SQL or InfluxQL and retrieve data in the
Arrow in-memory format.
HTTP clients can use the InfluxDB v1 /query
REST API to query with InfluxQL
and retrieve data in JSON format.
Learn how to connect to InfluxDB and query your data using the following tools:
Use the influxdb3 query
command to query data in InfluxDB 3 Enterprise with SQL.
influxdb3 query \
--database DATABASE_NAME \
"SELECT * FROM home"
<h2 id="use-the-v1-query-api-and-influxql">Use the v1 query API and InfluxQL</h2>
Use the InfluxDB v1 HTTP query API to query data in InfluxDB 3 Enterprise with InfluxQL.
curl --get http://localhost:8181/query \
--header "Authorization: Token DATABASE_TOKEN" \
--data-urlencode "db=DATABASE_NAME" \
--data-urlencode "q=SELECT * FROM home"
Was this page helpful?
Thank you for your feedback!
Support and feedback
Thank you for being part of our community! We welcome and encourage your feedback and bug reports for InfluxDB 3 Enterprise and this documentation. To find support, use the following resources:
Customers with an annual or support contract can contact InfluxData Support.