Amazon Lookout for Equipment
amazonaws · Cloud
Amazon Lookout for Equipment is a machine learning service that uses advanced analytics to identify anomalies in machines from sensor data for use in predictive maintenance.
Authentication
Sample Requests
Provides a list of all data ingestion jobs, including dataset name and ARN, S3 location of the input data, status, and so on.
Hover any highlighted part to learn what it does
| X-Amz-Target | AWSLookoutEquipmentFrontendService.ListDataIngestionJobs |
curl -X POST "https://api.apis.guru/v2/specs/amazonaws.com/lookoutequipment/2020-12-15/#X-Amz-Target=AWSLookoutEquipmentFrontendService.ListDataIngestionJobs?NextToken=example&MaxResults=example" \ -H "X-Amz-Target: AWSLookoutEquipmentFrontendService.ListDataIngestionJobs"
import requests
params = {
"NextToken": "example",
"MaxResults": "example"
}
headers = {
"X-Amz-Target": "AWSLookoutEquipmentFrontendService.ListDataIngestionJobs"
}
response = requests.post(
"https://api.apis.guru/v2/specs/amazonaws.com/lookoutequipment/2020-12-15/#X-Amz-Target=AWSLookoutEquipmentFrontendService.ListDataIngestionJobs",
params=params,
headers=headers,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/amazonaws.com/lookoutequipment/2020-12-15/#X-Amz-Target=AWSLookoutEquipmentFrontendService.ListDataIngestionJobs');
url.searchParams.set('NextToken', 'example');
url.searchParams.set('MaxResults', 'example');
const response = await fetch(url, {
method: 'POST',
headers: {
'X-Amz-Target': 'AWSLookoutEquipmentFrontendService.ListDataIngestionJobs'
},
});
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/amazonaws.com/lookoutequipment/2020-12-15/#X-Amz-Target=AWSLookoutEquipmentFrontendService.ListDataIngestionJobs")
q := baseURL.Query()
q.Set("NextToken", "example")
q.Set("MaxResults", "example")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("POST", targetURL, nil)
req.Header.Set("X-Amz-Target", "AWSLookoutEquipmentFrontendService.ListDataIngestionJobs")
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/amazonaws.com/lookoutequipment/2020-12-15/#X-Amz-Target=AWSLookoutEquipmentFrontendService.ListDataIngestionJobs")
uri.query = URI.encode_www_form({
"NextToken" => "example",
"MaxResults" => "example"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Post.new(uri)
req["X-Amz-Target"] = "AWSLookoutEquipmentFrontendService.ListDataIngestionJobs"
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/amazonaws.com/lookoutequipment/2020-12-15/#X-Amz-Target=AWSLookoutEquipmentFrontendService.ListDataIngestionJobs?" . http_build_query([
"NextToken" => "example",
"MaxResults" => "example"
]);
$opts = ["http" => [
"method" => "POST",
"header" => implode("\r\n", [
"X-Amz-Target: AWSLookoutEquipmentFrontendService.ListDataIngestionJobs"
]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Lists all datasets currently available in your account, filtering on the dataset name.
Hover any highlighted part to learn what it does
| X-Amz-Target | AWSLookoutEquipmentFrontendService.ListDatasets |
curl -X POST "https://api.apis.guru/v2/specs/amazonaws.com/lookoutequipment/2020-12-15/#X-Amz-Target=AWSLookoutEquipmentFrontendService.ListDatasets?NextToken=example&MaxResults=example" \ -H "X-Amz-Target: AWSLookoutEquipmentFrontendService.ListDatasets"
import requests
params = {
"NextToken": "example",
"MaxResults": "example"
}
headers = {
"X-Amz-Target": "AWSLookoutEquipmentFrontendService.ListDatasets"
}
response = requests.post(
"https://api.apis.guru/v2/specs/amazonaws.com/lookoutequipment/2020-12-15/#X-Amz-Target=AWSLookoutEquipmentFrontendService.ListDatasets",
params=params,
headers=headers,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/amazonaws.com/lookoutequipment/2020-12-15/#X-Amz-Target=AWSLookoutEquipmentFrontendService.ListDatasets');
url.searchParams.set('NextToken', 'example');
url.searchParams.set('MaxResults', 'example');
const response = await fetch(url, {
method: 'POST',
headers: {
'X-Amz-Target': 'AWSLookoutEquipmentFrontendService.ListDatasets'
},
});
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/amazonaws.com/lookoutequipment/2020-12-15/#X-Amz-Target=AWSLookoutEquipmentFrontendService.ListDatasets")
q := baseURL.Query()
q.Set("NextToken", "example")
q.Set("MaxResults", "example")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("POST", targetURL, nil)
req.Header.Set("X-Amz-Target", "AWSLookoutEquipmentFrontendService.ListDatasets")
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/amazonaws.com/lookoutequipment/2020-12-15/#X-Amz-Target=AWSLookoutEquipmentFrontendService.ListDatasets")
uri.query = URI.encode_www_form({
"NextToken" => "example",
"MaxResults" => "example"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Post.new(uri)
req["X-Amz-Target"] = "AWSLookoutEquipmentFrontendService.ListDatasets"
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/amazonaws.com/lookoutequipment/2020-12-15/#X-Amz-Target=AWSLookoutEquipmentFrontendService.ListDatasets?" . http_build_query([
"NextToken" => "example",
"MaxResults" => "example"
]);
$opts = ["http" => [
"method" => "POST",
"header" => implode("\r\n", [
"X-Amz-Target: AWSLookoutEquipmentFrontendService.ListDatasets"
]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Lists all inference events that have been found for the specified inference scheduler.
Hover any highlighted part to learn what it does
| X-Amz-Target | AWSLookoutEquipmentFrontendService.ListInferenceEvents |
curl -X POST "https://api.apis.guru/v2/specs/amazonaws.com/lookoutequipment/2020-12-15/#X-Amz-Target=AWSLookoutEquipmentFrontendService.ListInferenceEvents?NextToken=example&MaxResults=example" \ -H "X-Amz-Target: AWSLookoutEquipmentFrontendService.ListInferenceEvents"
import requests
params = {
"NextToken": "example",
"MaxResults": "example"
}
headers = {
"X-Amz-Target": "AWSLookoutEquipmentFrontendService.ListInferenceEvents"
}
response = requests.post(
"https://api.apis.guru/v2/specs/amazonaws.com/lookoutequipment/2020-12-15/#X-Amz-Target=AWSLookoutEquipmentFrontendService.ListInferenceEvents",
params=params,
headers=headers,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/amazonaws.com/lookoutequipment/2020-12-15/#X-Amz-Target=AWSLookoutEquipmentFrontendService.ListInferenceEvents');
url.searchParams.set('NextToken', 'example');
url.searchParams.set('MaxResults', 'example');
const response = await fetch(url, {
method: 'POST',
headers: {
'X-Amz-Target': 'AWSLookoutEquipmentFrontendService.ListInferenceEvents'
},
});
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/amazonaws.com/lookoutequipment/2020-12-15/#X-Amz-Target=AWSLookoutEquipmentFrontendService.ListInferenceEvents")
q := baseURL.Query()
q.Set("NextToken", "example")
q.Set("MaxResults", "example")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("POST", targetURL, nil)
req.Header.Set("X-Amz-Target", "AWSLookoutEquipmentFrontendService.ListInferenceEvents")
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/amazonaws.com/lookoutequipment/2020-12-15/#X-Amz-Target=AWSLookoutEquipmentFrontendService.ListInferenceEvents")
uri.query = URI.encode_www_form({
"NextToken" => "example",
"MaxResults" => "example"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Post.new(uri)
req["X-Amz-Target"] = "AWSLookoutEquipmentFrontendService.ListInferenceEvents"
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/amazonaws.com/lookoutequipment/2020-12-15/#X-Amz-Target=AWSLookoutEquipmentFrontendService.ListInferenceEvents?" . http_build_query([
"NextToken" => "example",
"MaxResults" => "example"
]);
$opts = ["http" => [
"method" => "POST",
"header" => implode("\r\n", [
"X-Amz-Target: AWSLookoutEquipmentFrontendService.ListInferenceEvents"
]),
]];
$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 Amazon Lookout for Equipment?
Amazon Lookout for Equipment is a Cloud API. Developers commonly use cloud APIs for:
- provisioning and managing cloud infrastructure
- automating deployments and container orchestration
- monitoring uptime and performance metrics
- managing storage buckets and databases
- setting up auto-scaling and load balancing
No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. Amazon Lookout for Equipment is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide