The following are important definitions to understand when using InfluxDB:
- **Point**: Single data record identified by its _measurement, tag keys, tag values, field key, and timestamp_.
- **Series**: A group of points with the same
{{% oss-only %}}_measurement, tag keys, and tag values_.{{% /oss-only %}}
{{% cloud-only %}}_measurement, tag keys and values, and field key_.{{% /cloud-only %}}
##### Example InfluxDB query results
{{<influxdb/points-series-flux>}}
## Tools to use
Throughout this tutorial, there are multiple tools you can use to interact with
InfluxDB {{<current-version>}}. Examples are provided for each of the following:
- [InfluxDB user interface (UI)](#influxdb-user-interface-ui)
- [`influx` CLI](#influx-cli)
- [InfluxDB HTTP API](#influxdb-http-api)
### InfluxDB user interface (UI)
The InfluxDB UI provides a web-based visual interface for interacting with and managing InfluxDB.
{{% oss-only %}}The UI is packaged with InfluxDB and runs as part of the InfluxDB service. To access the UI, with InfluxDB running, visit [localhost:8086](http://localhost:8086) in your browser.{{% /oss-only %}}
{{% cloud-only %}}To access the InfluxDB Cloud UI, [log into your InfluxDB Cloud account](https://cloud2.influxdata.com).{{% /cloud-only %}}
### `influx` CLI
The `influx` CLI lets you interact with and manage InfluxDB {{<current-version>}} from a command line.
{{% oss-only %}}The CLI is packaged separately from InfluxDB and must be downloaded and installed separately.{{% /oss-only %}}
For detailed CLI installation instructions, see
[Use the influx CLI](/influxdb/cloud/tools/influx-cli/).
### InfluxDB HTTP API
The [InfluxDB API](/influxdb/cloud/reference/api/) provides a simple way to
interact with the InfluxDB {{<current-version>}} using HTTP(S) clients.
Examples in this tutorial use cURL, but any HTTP(S) client will work.
{{% note %}}
#### InfluxDB client libraries
[InfluxDB client libraries](/influxdb/cloud/api-guide/client-libraries/) are
language-specific clients that interact with the InfluxDB HTTP API.
Examples for client libraries are not provided in this tutorial, but these can
be used to perform all the actions outlined in this tutorial.