Influx OSS API Service
influxdata · IoT
# Authentication -->
Authentication
No authentication requiredFree to use with no key needed.
Sample Requests
GET
List all authorizations
List all authorizations
https://api.apis.guru/v2/specs/influxdata.com/2.0.0/authorizations?org=example&user=example&orgID=example&userID=example
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/influxdata.com/2.0.0/authorizations?org=example&user=example&orgID=example&userID=example"
import requests
params = {
"org": "example",
"user": "example",
"orgID": "example",
"userID": "example"
}
response = requests.get(
"https://api.apis.guru/v2/specs/influxdata.com/2.0.0/authorizations",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/influxdata.com/2.0.0/authorizations');
url.searchParams.set('org', 'example');
url.searchParams.set('user', 'example');
url.searchParams.set('orgID', 'example');
url.searchParams.set('userID', 'example');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/influxdata.com/2.0.0/authorizations")
q := baseURL.Query()
q.Set("org", "example")
q.Set("user", "example")
q.Set("orgID", "example")
q.Set("userID", "example")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/influxdata.com/2.0.0/authorizations")
uri.query = URI.encode_www_form({
"org" => "example",
"user" => "example",
"orgID" => "example",
"userID" => "example"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/influxdata.com/2.0.0/authorizations?" . http_build_query([
"org" => "example",
"user" => "example",
"orgID" => "example",
"userID" => "example"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET
List all buckets
List all buckets
https://api.apis.guru/v2/specs/influxdata.com/2.0.0/buckets?id=1&org=example&name=test&after=example&limit=20&orgID=example&offset=0
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/influxdata.com/2.0.0/buckets?id=1&org=example&name=test&after=example&limit=20&orgID=example&offset=0"
import requests
params = {
"id": "1",
"org": "example",
"name": "test",
"after": "example",
"limit": "20",
"orgID": "example",
"offset": "0"
}
response = requests.get(
"https://api.apis.guru/v2/specs/influxdata.com/2.0.0/buckets",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/influxdata.com/2.0.0/buckets');
url.searchParams.set('id', '1');
url.searchParams.set('org', 'example');
url.searchParams.set('name', 'test');
url.searchParams.set('after', 'example');
url.searchParams.set('limit', '20');
url.searchParams.set('orgID', 'example');
url.searchParams.set('offset', '0');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/influxdata.com/2.0.0/buckets")
q := baseURL.Query()
q.Set("id", "1")
q.Set("org", "example")
q.Set("name", "test")
q.Set("after", "example")
q.Set("limit", "20")
q.Set("orgID", "example")
q.Set("offset", "0")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/influxdata.com/2.0.0/buckets")
uri.query = URI.encode_www_form({
"id" => "1",
"org" => "example",
"name" => "test",
"after" => "example",
"limit" => "20",
"orgID" => "example",
"offset" => "0"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/influxdata.com/2.0.0/buckets?" . http_build_query([
"id" => "1",
"org" => "example",
"name" => "test",
"after" => "example",
"limit" => "20",
"orgID" => "example",
"offset" => "0"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET
List all checks
List all checks
https://api.apis.guru/v2/specs/influxdata.com/2.0.0/checks?limit=20&orgID=example&offset=0
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/influxdata.com/2.0.0/checks?limit=20&orgID=example&offset=0"
import requests
params = {
"limit": "20",
"orgID": "example",
"offset": "0"
}
response = requests.get(
"https://api.apis.guru/v2/specs/influxdata.com/2.0.0/checks",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/influxdata.com/2.0.0/checks');
url.searchParams.set('limit', '20');
url.searchParams.set('orgID', 'example');
url.searchParams.set('offset', '0');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/influxdata.com/2.0.0/checks")
q := baseURL.Query()
q.Set("limit", "20")
q.Set("orgID", "example")
q.Set("offset", "0")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/influxdata.com/2.0.0/checks")
uri.query = URI.encode_www_form({
"limit" => "20",
"orgID" => "example",
"offset" => "0"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/influxdata.com/2.0.0/checks?" . http_build_query([
"limit" => "20",
"orgID" => "example",
"offset" => "0"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Postman Setup Guide
- See official documentation for authentication and setup.
What can you build with Influx OSS API Service?
Influx OSS API Service is a IoT API. Developers commonly use iot APIs for:
- collecting and streaming sensor and device data
- monitoring and controlling connected devices
- building smart-home and industrial dashboards
- processing device telemetry at scale
- automating device provisioning and alerting
No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. Influx OSS API Service is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide