Find an API

Search public APIs with auth details & Postman guides

← All APIs

smart-me

smart-me · IoT

IoT No Auth Free & Open iot

With the smart-me REST API you get Access to all your devices in the smart-me Cloud and you can add your own devices. So its an easy way to add the smart-me Cloud support to your Hardware or Software Product.

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET Gets a Device by it's Serial Number. The Serial is the part before the "-".

Gets a Device by it's Serial Number. The Serial is the part before the "-".

https://api.apis.guru/v2/specs/smart-me.com/v1/api/DeviceBySerial?serial=1

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/smart-me.com/v1/api/DeviceBySerial?serial=1"
import requests
params = {
    "serial": "1"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/smart-me.com/v1/api/DeviceBySerial",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/smart-me.com/v1/api/DeviceBySerial');
url.searchParams.set('serial', '1');

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/smart-me.com/v1/api/DeviceBySerial")
	q := baseURL.Query()
	q.Set("serial", "1")
	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/smart-me.com/v1/api/DeviceBySerial")
uri.query = URI.encode_www_form({
  "serial" => "1"
})

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/smart-me.com/v1/api/DeviceBySerial?" . http_build_query([
    "serial" => "1"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET Gets all Devices for an Energy Type

Gets all Devices for an Energy Type

https://api.apis.guru/v2/specs/smart-me.com/v1/api/DevicesByEnergy?meterEnergyType=MeterTypeUnknown

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/smart-me.com/v1/api/DevicesByEnergy?meterEnergyType=MeterTypeUnknown"
import requests
params = {
    "meterEnergyType": "MeterTypeUnknown"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/smart-me.com/v1/api/DevicesByEnergy",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/smart-me.com/v1/api/DevicesByEnergy');
url.searchParams.set('meterEnergyType', 'MeterTypeUnknown');

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/smart-me.com/v1/api/DevicesByEnergy")
	q := baseURL.Query()
	q.Set("meterEnergyType", "MeterTypeUnknown")
	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/smart-me.com/v1/api/DevicesByEnergy")
uri.query = URI.encode_www_form({
  "meterEnergyType" => "MeterTypeUnknown"
})

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/smart-me.com/v1/api/DevicesByEnergy?" . http_build_query([
    "meterEnergyType" => "MeterTypeUnknown"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET Gets all Devices by it's Sub Type (e.g. E-Charging Station)

Gets all Devices by it's Sub Type (e.g. E-Charging Station)

https://api.apis.guru/v2/specs/smart-me.com/v1/api/DevicesBySubType?meterSubType=MeterSubTypeUnknown

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/smart-me.com/v1/api/DevicesBySubType?meterSubType=MeterSubTypeUnknown"
import requests
params = {
    "meterSubType": "MeterSubTypeUnknown"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/smart-me.com/v1/api/DevicesBySubType",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/smart-me.com/v1/api/DevicesBySubType');
url.searchParams.set('meterSubType', 'MeterSubTypeUnknown');

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/smart-me.com/v1/api/DevicesBySubType")
	q := baseURL.Query()
	q.Set("meterSubType", "MeterSubTypeUnknown")
	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/smart-me.com/v1/api/DevicesBySubType")
uri.query = URI.encode_www_form({
  "meterSubType" => "MeterSubTypeUnknown"
})

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/smart-me.com/v1/api/DevicesBySubType?" . http_build_query([
    "meterSubType" => "MeterSubTypeUnknown"
]);
$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

Get Postman ↗
  1. See official documentation for authentication and setup.

What can you build with smart-me?

smart-me 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. smart-me 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?

Open documentation ↗