Mobile Apps Security KPIs Endpoints

See the Introduction for an overview of the API and information relevant to all API operations.

Mobile Apps Security KPIs

This endpoint provides a JSON object with a metrics key. The metrics key contains a list of Security Key Performance Indicators (KPIs) with their count that Data Theorem has detected across applications in your inventory.

Sample Request

1
GET https://api.securetheorem.com/apis/mobile_security/results/v2/mobile_apps_security_kpis

Sample Response

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"metrics": [
{
"count": "51",
"title": "Critical & High Severity Issues Fixed"
},
{
"count": "107",
"title": "OWASP Top 10 Issues Fixed"
},
{
"count": "23",
"title": "App Store Delays Avoided"
},
{
"count": "13",
"title": "Secret Keys Found & Removed"
},
{
"count": "271",
"title": "Open Issues (Overall)"
},
{
"count": "62",
"title": "Open Issues (High Severity)"
},
{
"count": "45",
"title": "Open Issues (Malicious Network)"
},
{
"count": "159",
"title": "Closed Issues (Overall)"
},
{
"count": "10852",
"title": "Mobile Attacks Detected"
},
{
"count": "684",
"title": "Mobile Attacks Blocked"
},
{
"count": "401",
"title": "Mobile SDKs In Use"
}
]
}