Get Item Graph Summary
curl --request GET \
--url https://api.example.com/admin/v1/item-graph/summaryimport requests
url = "https://api.example.com/admin/v1/item-graph/summary"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/admin/v1/item-graph/summary', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/admin/v1/item-graph/summary"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"data": {
"entityCount": 123,
"aliasCount": 123,
"mentionCount": 123,
"itemLinkCount": 123,
"cooccurrenceCount": 123,
"graphBatchCountByState": [
{
"name": "<string>",
"count": 123
}
],
"itemLinkCountByType": [
{
"name": "<string>",
"count": 123
}
],
"entityCountByType": [
{
"name": "<string>",
"count": 123
}
]
}
}Item Graph
Get Item Graph Summary
GET
/
admin
/
v1
/
item-graph
/
summary
Get Item Graph Summary
curl --request GET \
--url https://api.example.com/admin/v1/item-graph/summaryimport requests
url = "https://api.example.com/admin/v1/item-graph/summary"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/admin/v1/item-graph/summary', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/admin/v1/item-graph/summary"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"data": {
"entityCount": 123,
"aliasCount": 123,
"mentionCount": 123,
"itemLinkCount": 123,
"cooccurrenceCount": 123,
"graphBatchCountByState": [
{
"name": "<string>",
"count": 123
}
],
"itemLinkCountByType": [
{
"name": "<string>",
"count": 123
}
],
"entityCountByType": [
{
"name": "<string>",
"count": 123
}
]
}
}
