Brain Web API
intellifi · IoT
This document describes the [Intellifi Brain](https://intellifi.zendesk.com/hc/en-us/categories/360000685454) Web API specification using the [OpenAPI specification](https://github.com/OAI/OpenAPI-Specification). The Brain Web API is a RESTful API that allows you to interact with the [Intellifi devices](https://intellifi.zendesk.com/hc/en-us/categories/360000685434) and services in a powerful and simple way. Our end-to-end solution allows you to localize your items/assets based on technologies
Authentication
Sample Requests
Get all binary large objects (blob)
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/intellifi.nl/2.23.2+0.gfbc3926.dirty/blobs?id=1&from=2024-01-01&hash=example&sort=-id&after=example&limit=100&until=example&before=example&select=example&from_id=example&id_only=false&after_id=example&blob_key=example&filename=example&populate=example&until_id=example&before_id=example&timeout_s=1&content_type=example&results_only=false&time_created=example&time_updated=example&time_last_accessed=example"
import requests
params = {
"id": "1",
"from": "2024-01-01",
"hash": "example",
"sort": "-id",
"after": "example",
"limit": "100",
"until": "example",
"before": "example",
"select": "example",
"from_id": "example",
"id_only": "false",
"after_id": "example",
"blob_key": "example",
"filename": "example",
"populate": "example",
"until_id": "example",
"before_id": "example",
"timeout_s": "1",
"content_type": "example",
"results_only": "false",
"time_created": "example",
"time_updated": "example",
"time_last_accessed": "example"
}
response = requests.get(
"https://api.apis.guru/v2/specs/intellifi.nl/2.23.2+0.gfbc3926.dirty/blobs",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/intellifi.nl/2.23.2+0.gfbc3926.dirty/blobs');
url.searchParams.set('id', '1');
url.searchParams.set('from', '2024-01-01');
url.searchParams.set('hash', 'example');
url.searchParams.set('sort', '-id');
url.searchParams.set('after', 'example');
url.searchParams.set('limit', '100');
url.searchParams.set('until', 'example');
url.searchParams.set('before', 'example');
url.searchParams.set('select', 'example');
url.searchParams.set('from_id', 'example');
url.searchParams.set('id_only', 'false');
url.searchParams.set('after_id', 'example');
url.searchParams.set('blob_key', 'example');
url.searchParams.set('filename', 'example');
url.searchParams.set('populate', 'example');
url.searchParams.set('until_id', 'example');
url.searchParams.set('before_id', 'example');
url.searchParams.set('timeout_s', '1');
url.searchParams.set('content_type', 'example');
url.searchParams.set('results_only', 'false');
url.searchParams.set('time_created', 'example');
url.searchParams.set('time_updated', 'example');
url.searchParams.set('time_last_accessed', '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/intellifi.nl/2.23.2+0.gfbc3926.dirty/blobs")
q := baseURL.Query()
q.Set("id", "1")
q.Set("from", "2024-01-01")
q.Set("hash", "example")
q.Set("sort", "-id")
q.Set("after", "example")
q.Set("limit", "100")
q.Set("until", "example")
q.Set("before", "example")
q.Set("select", "example")
q.Set("from_id", "example")
q.Set("id_only", "false")
q.Set("after_id", "example")
q.Set("blob_key", "example")
q.Set("filename", "example")
q.Set("populate", "example")
q.Set("until_id", "example")
q.Set("before_id", "example")
q.Set("timeout_s", "1")
q.Set("content_type", "example")
q.Set("results_only", "false")
q.Set("time_created", "example")
q.Set("time_updated", "example")
q.Set("time_last_accessed", "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/intellifi.nl/2.23.2+0.gfbc3926.dirty/blobs")
uri.query = URI.encode_www_form({
"id" => "1",
"from" => "2024-01-01",
"hash" => "example",
"sort" => "-id",
"after" => "example",
"limit" => "100",
"until" => "example",
"before" => "example",
"select" => "example",
"from_id" => "example",
"id_only" => "false",
"after_id" => "example",
"blob_key" => "example",
"filename" => "example",
"populate" => "example",
"until_id" => "example",
"before_id" => "example",
"timeout_s" => "1",
"content_type" => "example",
"results_only" => "false",
"time_created" => "example",
"time_updated" => "example",
"time_last_accessed" => "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/intellifi.nl/2.23.2+0.gfbc3926.dirty/blobs?" . http_build_query([
"id" => "1",
"from" => "2024-01-01",
"hash" => "example",
"sort" => "-id",
"after" => "example",
"limit" => "100",
"until" => "example",
"before" => "example",
"select" => "example",
"from_id" => "example",
"id_only" => "false",
"after_id" => "example",
"blob_key" => "example",
"filename" => "example",
"populate" => "example",
"until_id" => "example",
"before_id" => "example",
"timeout_s" => "1",
"content_type" => "example",
"results_only" => "false",
"time_created" => "example",
"time_updated" => "example",
"time_last_accessed" => "example"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Can only be used by an **administrative** user.
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/intellifi.nl/2.23.2+0.gfbc3926.dirty/keys?id=1&from=2024-01-01&sort=-id&after=example&label=example&limit=100&until=example&before=example&secret=example&select=example&from_id=example&id_only=false&after_id=example&populate=example&until_id=example&before_id=example&timeout_s=1&is_read_only=true&results_only=false&time_created=example&time_updated=example"
import requests
params = {
"id": "1",
"from": "2024-01-01",
"sort": "-id",
"after": "example",
"label": "example",
"limit": "100",
"until": "example",
"before": "example",
"secret": "example",
"select": "example",
"from_id": "example",
"id_only": "false",
"after_id": "example",
"populate": "example",
"until_id": "example",
"before_id": "example",
"timeout_s": "1",
"is_read_only": "true",
"results_only": "false",
"time_created": "example",
"time_updated": "example"
}
response = requests.get(
"https://api.apis.guru/v2/specs/intellifi.nl/2.23.2+0.gfbc3926.dirty/keys",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/intellifi.nl/2.23.2+0.gfbc3926.dirty/keys');
url.searchParams.set('id', '1');
url.searchParams.set('from', '2024-01-01');
url.searchParams.set('sort', '-id');
url.searchParams.set('after', 'example');
url.searchParams.set('label', 'example');
url.searchParams.set('limit', '100');
url.searchParams.set('until', 'example');
url.searchParams.set('before', 'example');
url.searchParams.set('secret', 'example');
url.searchParams.set('select', 'example');
url.searchParams.set('from_id', 'example');
url.searchParams.set('id_only', 'false');
url.searchParams.set('after_id', 'example');
url.searchParams.set('populate', 'example');
url.searchParams.set('until_id', 'example');
url.searchParams.set('before_id', 'example');
url.searchParams.set('timeout_s', '1');
url.searchParams.set('is_read_only', 'true');
url.searchParams.set('results_only', 'false');
url.searchParams.set('time_created', 'example');
url.searchParams.set('time_updated', '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/intellifi.nl/2.23.2+0.gfbc3926.dirty/keys")
q := baseURL.Query()
q.Set("id", "1")
q.Set("from", "2024-01-01")
q.Set("sort", "-id")
q.Set("after", "example")
q.Set("label", "example")
q.Set("limit", "100")
q.Set("until", "example")
q.Set("before", "example")
q.Set("secret", "example")
q.Set("select", "example")
q.Set("from_id", "example")
q.Set("id_only", "false")
q.Set("after_id", "example")
q.Set("populate", "example")
q.Set("until_id", "example")
q.Set("before_id", "example")
q.Set("timeout_s", "1")
q.Set("is_read_only", "true")
q.Set("results_only", "false")
q.Set("time_created", "example")
q.Set("time_updated", "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/intellifi.nl/2.23.2+0.gfbc3926.dirty/keys")
uri.query = URI.encode_www_form({
"id" => "1",
"from" => "2024-01-01",
"sort" => "-id",
"after" => "example",
"label" => "example",
"limit" => "100",
"until" => "example",
"before" => "example",
"secret" => "example",
"select" => "example",
"from_id" => "example",
"id_only" => "false",
"after_id" => "example",
"populate" => "example",
"until_id" => "example",
"before_id" => "example",
"timeout_s" => "1",
"is_read_only" => "true",
"results_only" => "false",
"time_created" => "example",
"time_updated" => "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/intellifi.nl/2.23.2+0.gfbc3926.dirty/keys?" . http_build_query([
"id" => "1",
"from" => "2024-01-01",
"sort" => "-id",
"after" => "example",
"label" => "example",
"limit" => "100",
"until" => "example",
"before" => "example",
"secret" => "example",
"select" => "example",
"from_id" => "example",
"id_only" => "false",
"after_id" => "example",
"populate" => "example",
"until_id" => "example",
"before_id" => "example",
"timeout_s" => "1",
"is_read_only" => "true",
"results_only" => "false",
"time_created" => "example",
"time_updated" => "example"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Get all key-value pairs
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/intellifi.nl/2.23.2+0.gfbc3926.dirty/kvpairs?id=1&from=2024-01-01&sort=-id&after=example&limit=100&until=example&before=example&kv_key=example&select=example&from_id=example&id_only=false&after_id=example&populate=example&until_id=example&before_id=example&timeout_s=1&results_only=false&time_created=example&time_updated=example"
import requests
params = {
"id": "1",
"from": "2024-01-01",
"sort": "-id",
"after": "example",
"limit": "100",
"until": "example",
"before": "example",
"kv_key": "example",
"select": "example",
"from_id": "example",
"id_only": "false",
"after_id": "example",
"populate": "example",
"until_id": "example",
"before_id": "example",
"timeout_s": "1",
"results_only": "false",
"time_created": "example",
"time_updated": "example"
}
response = requests.get(
"https://api.apis.guru/v2/specs/intellifi.nl/2.23.2+0.gfbc3926.dirty/kvpairs",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/intellifi.nl/2.23.2+0.gfbc3926.dirty/kvpairs');
url.searchParams.set('id', '1');
url.searchParams.set('from', '2024-01-01');
url.searchParams.set('sort', '-id');
url.searchParams.set('after', 'example');
url.searchParams.set('limit', '100');
url.searchParams.set('until', 'example');
url.searchParams.set('before', 'example');
url.searchParams.set('kv_key', 'example');
url.searchParams.set('select', 'example');
url.searchParams.set('from_id', 'example');
url.searchParams.set('id_only', 'false');
url.searchParams.set('after_id', 'example');
url.searchParams.set('populate', 'example');
url.searchParams.set('until_id', 'example');
url.searchParams.set('before_id', 'example');
url.searchParams.set('timeout_s', '1');
url.searchParams.set('results_only', 'false');
url.searchParams.set('time_created', 'example');
url.searchParams.set('time_updated', '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/intellifi.nl/2.23.2+0.gfbc3926.dirty/kvpairs")
q := baseURL.Query()
q.Set("id", "1")
q.Set("from", "2024-01-01")
q.Set("sort", "-id")
q.Set("after", "example")
q.Set("limit", "100")
q.Set("until", "example")
q.Set("before", "example")
q.Set("kv_key", "example")
q.Set("select", "example")
q.Set("from_id", "example")
q.Set("id_only", "false")
q.Set("after_id", "example")
q.Set("populate", "example")
q.Set("until_id", "example")
q.Set("before_id", "example")
q.Set("timeout_s", "1")
q.Set("results_only", "false")
q.Set("time_created", "example")
q.Set("time_updated", "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/intellifi.nl/2.23.2+0.gfbc3926.dirty/kvpairs")
uri.query = URI.encode_www_form({
"id" => "1",
"from" => "2024-01-01",
"sort" => "-id",
"after" => "example",
"limit" => "100",
"until" => "example",
"before" => "example",
"kv_key" => "example",
"select" => "example",
"from_id" => "example",
"id_only" => "false",
"after_id" => "example",
"populate" => "example",
"until_id" => "example",
"before_id" => "example",
"timeout_s" => "1",
"results_only" => "false",
"time_created" => "example",
"time_updated" => "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/intellifi.nl/2.23.2+0.gfbc3926.dirty/kvpairs?" . http_build_query([
"id" => "1",
"from" => "2024-01-01",
"sort" => "-id",
"after" => "example",
"limit" => "100",
"until" => "example",
"before" => "example",
"kv_key" => "example",
"select" => "example",
"from_id" => "example",
"id_only" => "false",
"after_id" => "example",
"populate" => "example",
"until_id" => "example",
"before_id" => "example",
"timeout_s" => "1",
"results_only" => "false",
"time_created" => "example",
"time_updated" => "example"
]);
$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 Brain Web API?
Brain Web API 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. Brain Web API is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide · Learn about API keys · What is REST?