ApplicationInsightsManagementClient
azure · Cloud
Azure Application Insights client for saved items.
Authentication
Sample Requests
Gets a list of Analytics Items defined within an Application Insights component.
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/azure.com/applicationinsights-analyticsItems_API/2015-05-01/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/components/{resourceName}/{scopePath}?type=none&scope=shared&api-version=v1&includeContent=true"import requests
params = {
"type": "none",
"scope": "shared",
"api-version": "v1",
"includeContent": "true"
}
response = requests.get(
"https://api.apis.guru/v2/specs/azure.com/applicationinsights-analyticsItems_API/2015-05-01/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/components/{resourceName}/{scopePath}",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/azure.com/applicationinsights-analyticsItems_API/2015-05-01/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/components/{resourceName}/{scopePath}');
url.searchParams.set('type', 'none');
url.searchParams.set('scope', 'shared');
url.searchParams.set('api-version', 'v1');
url.searchParams.set('includeContent', 'true');
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/azure.com/applicationinsights-analyticsItems_API/2015-05-01/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/components/{resourceName}/{scopePath}")
q := baseURL.Query()
q.Set("type", "none")
q.Set("scope", "shared")
q.Set("api-version", "v1")
q.Set("includeContent", "true")
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/azure.com/applicationinsights-analyticsItems_API/2015-05-01/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/components/{resourceName}/{scopePath}")
uri.query = URI.encode_www_form({
"type" => "none",
"scope" => "shared",
"api-version" => "v1",
"includeContent" => "true"
})
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/azure.com/applicationinsights-analyticsItems_API/2015-05-01/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/components/{resourceName}/{scopePath}?" . http_build_query([
"type" => "none",
"scope" => "shared",
"api-version" => "v1",
"includeContent" => "true"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Gets a specific Analytics Items defined within an Application Insights component.
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/azure.com/applicationinsights-analyticsItems_API/2015-05-01/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/components/{resourceName}/{scopePath}/item?id=1&name=test&api-version=v1"import requests
params = {
"id": "1",
"name": "test",
"api-version": "v1"
}
response = requests.get(
"https://api.apis.guru/v2/specs/azure.com/applicationinsights-analyticsItems_API/2015-05-01/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/components/{resourceName}/{scopePath}/item",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/azure.com/applicationinsights-analyticsItems_API/2015-05-01/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/components/{resourceName}/{scopePath}/item');
url.searchParams.set('id', '1');
url.searchParams.set('name', 'test');
url.searchParams.set('api-version', 'v1');
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/azure.com/applicationinsights-analyticsItems_API/2015-05-01/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/components/{resourceName}/{scopePath}/item")
q := baseURL.Query()
q.Set("id", "1")
q.Set("name", "test")
q.Set("api-version", "v1")
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/azure.com/applicationinsights-analyticsItems_API/2015-05-01/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/components/{resourceName}/{scopePath}/item")
uri.query = URI.encode_www_form({
"id" => "1",
"name" => "test",
"api-version" => "v1"
})
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/azure.com/applicationinsights-analyticsItems_API/2015-05-01/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/components/{resourceName}/{scopePath}/item?" . http_build_query([
"id" => "1",
"name" => "test",
"api-version" => "v1"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Adds or Updates a specific Analytics Item within an Application Insights component.
Hover any highlighted part to learn what it does
curl -X PUT "https://api.apis.guru/v2/specs/azure.com/applicationinsights-analyticsItems_API/2015-05-01/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/components/{resourceName}/{scopePath}/item?api-version=v1&overrideItem=true"import requests
params = {
"api-version": "v1",
"overrideItem": "true"
}
response = requests.put(
"https://api.apis.guru/v2/specs/azure.com/applicationinsights-analyticsItems_API/2015-05-01/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/components/{resourceName}/{scopePath}/item",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/azure.com/applicationinsights-analyticsItems_API/2015-05-01/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/components/{resourceName}/{scopePath}/item');
url.searchParams.set('api-version', 'v1');
url.searchParams.set('overrideItem', 'true');
const response = await fetch(url, {
method: 'PUT',
});
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/azure.com/applicationinsights-analyticsItems_API/2015-05-01/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/components/{resourceName}/{scopePath}/item")
q := baseURL.Query()
q.Set("api-version", "v1")
q.Set("overrideItem", "true")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("PUT", 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/azure.com/applicationinsights-analyticsItems_API/2015-05-01/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/components/{resourceName}/{scopePath}/item")
uri.query = URI.encode_www_form({
"api-version" => "v1",
"overrideItem" => "true"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Put.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/azure.com/applicationinsights-analyticsItems_API/2015-05-01/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/components/{resourceName}/{scopePath}/item?" . http_build_query([
"api-version" => "v1",
"overrideItem" => "true"
]);
$opts = ["http" => [
"method" => "PUT",
]];
$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 ApplicationInsightsManagementClient?
ApplicationInsightsManagementClient 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. ApplicationInsightsManagementClient is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide