Get dashboard monitoring statistics
curl --request GET \
--url https://api.blazemonitors.com/monitor/stats \
--header 'X-Api-Key: <api-key>'import requests
url = "https://api.blazemonitors.com/monitor/stats"
headers = {"X-Api-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Api-Key': '<api-key>'}};
fetch('https://api.blazemonitors.com/monitor/stats', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.blazemonitors.com/monitor/stats",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Api-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.blazemonitors.com/monitor/stats"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Api-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.blazemonitors.com/monitor/stats")
.header("X-Api-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.blazemonitors.com/monitor/stats")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Api-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"totalMonitoredItems": 123,
"totalListItems": 123,
"totalHypedProducts": 123,
"totalMutedItems": 123,
"totalAffiliateLinks": 123,
"totalHypedSites": 123,
"monitorLimit": 123,
"recentRestocks": [
{
"product": {
"productSku": "<string>",
"productSite": "<string>",
"productImg": "<string>",
"productName": "<string>",
"retailPrice": 123,
"currentPrice": 123,
"productUrl": "<string>",
"productStyle": "<string>",
"productColor": "<string>",
"productType": "<string>",
"launchTime": "<string>",
"lastRestocked": 123,
"lastDiscounted": 123,
"firstAdded": 123
},
"site": {
"platformName": "amazon",
"siteType": "retail",
"siteId": "amazon.com",
"siteName": "AmazonUS",
"siteUrl": "https://amazon.com",
"siteCurrency": "USD",
"hasLists": true,
"hasProducts": true,
"hasReleases": false,
"hasForceAdd": true,
"queryType": "productSku",
"notificationTypes": [
"Restock"
],
"altNames": [
"amazon",
"amz",
"amzus"
],
"platformCategories": [
"retail"
],
"sellers": [
"<string>"
]
},
"isList": true,
"isHyped": true
}
],
"mostMonitoredSites": [
{
"siteName": "<string>",
"numMonitoredItems": 123,
"numListItems": 123,
"numHypedProducts": 123,
"hypedEnabled": true
}
]
}{
"status": 123,
"message": "<string>"
}{
"status": 123,
"message": "<string>"
}Monitor
Get Monitoring Statistics
GET
/
monitor
/
stats
Get dashboard monitoring statistics
curl --request GET \
--url https://api.blazemonitors.com/monitor/stats \
--header 'X-Api-Key: <api-key>'import requests
url = "https://api.blazemonitors.com/monitor/stats"
headers = {"X-Api-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Api-Key': '<api-key>'}};
fetch('https://api.blazemonitors.com/monitor/stats', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.blazemonitors.com/monitor/stats",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Api-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.blazemonitors.com/monitor/stats"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Api-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.blazemonitors.com/monitor/stats")
.header("X-Api-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.blazemonitors.com/monitor/stats")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Api-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"totalMonitoredItems": 123,
"totalListItems": 123,
"totalHypedProducts": 123,
"totalMutedItems": 123,
"totalAffiliateLinks": 123,
"totalHypedSites": 123,
"monitorLimit": 123,
"recentRestocks": [
{
"product": {
"productSku": "<string>",
"productSite": "<string>",
"productImg": "<string>",
"productName": "<string>",
"retailPrice": 123,
"currentPrice": 123,
"productUrl": "<string>",
"productStyle": "<string>",
"productColor": "<string>",
"productType": "<string>",
"launchTime": "<string>",
"lastRestocked": 123,
"lastDiscounted": 123,
"firstAdded": 123
},
"site": {
"platformName": "amazon",
"siteType": "retail",
"siteId": "amazon.com",
"siteName": "AmazonUS",
"siteUrl": "https://amazon.com",
"siteCurrency": "USD",
"hasLists": true,
"hasProducts": true,
"hasReleases": false,
"hasForceAdd": true,
"queryType": "productSku",
"notificationTypes": [
"Restock"
],
"altNames": [
"amazon",
"amz",
"amzus"
],
"platformCategories": [
"retail"
],
"sellers": [
"<string>"
]
},
"isList": true,
"isHyped": true
}
],
"mostMonitoredSites": [
{
"siteName": "<string>",
"numMonitoredItems": 123,
"numListItems": 123,
"numHypedProducts": 123,
"hypedEnabled": true
}
]
}{
"status": 123,
"message": "<string>"
}{
"status": 123,
"message": "<string>"
}Authorizations
API key for authentication
Query Parameters
Dashboard server ID used to include Hyped Automation activity
Rolling recent-restock window in days
Required range:
1 <= x <= 30Response
Monitoring statistics
Unique list and hype product workload counted toward the monitor limit.
Unique hype-eligible products, including products also present in a list.
Number of distinct sites with Hyped Automation enabled across the client's active servers.
Maximum array length:
20Show child attributes
Show child attributes
Show child attributes
Show child attributes
⌘I

