--- title: Use Postman with the InfluxDB API description: > Use [Postman](https://www.postman.com/), a popular tool for exploring APIs, to interact with the [InfluxDB API](/influxdb/v2.0/reference/api). menu: influxdb_2_0: parent: Tools & integrations name: Use Postman weight: 105 influxdb/v2.0/tags: [api, authentication] aliases: - /influxdb/v2.0/reference/api/postman/ --- Use [Postman](https://www.postman.com/), a popular tool for exploring APIs, to interact with the [InfluxDB API](/influxdb/v2.0/reference/api). ## Install Postman Download Postman from the [official downloads page](https://www.postman.com/downloads/). Or to install with Homebrew on macOS, run the following command: ```sh brew cask install postman ``` ## Send authenticated API requests with Postman All requests to the InfluxDB API must be authenticated. Postman lets you configure the headers and body of HTTP requests. Use the **Authorization** tab in Postman to include the credentials required when interacting with the InfluxDB API. 1. If you have not already, [create a token](/influxdb/v2.0/security/tokens/create-token/). 2. In the **Authorization** tab, select **API Key** in the **Type** dropdown. 3. For **Key**, enter `Authorization`. 4. For **Value**, enter `Token `, replacing `` with the token generated in step 1. 5. Ensure that the **Add to** option is set to **Header**. #### Test authentication credentials To test the authentication, enter the root endpoint of an InfluxDB OSS instance URL and click **Send**. ###### InfluxDB API endpoint ```sh http://localhost:8086/api/v2 ```