Get dashboard metrics
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api-staging.keystoneos.xyz/v1/platforms/me/dashboard', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api-staging.keystoneos.xyz/v1/platforms/me/dashboard"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)curl --request GET \
--url https://api-staging.keystoneos.xyz/v1/platforms/me/dashboard \
--header 'Authorization: Bearer <token>'{
"settlements_by_state": {},
"compliance_by_status": {},
"recent_activity_count": 123
}Platforms
Get dashboard metrics
Returns an operational overview for the current environment: settlement counts by state, compliance check results, and recent activity count (last 24 hours).
GET
/
v1
/
platforms
/
me
/
dashboard
Get dashboard metrics
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api-staging.keystoneos.xyz/v1/platforms/me/dashboard', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api-staging.keystoneos.xyz/v1/platforms/me/dashboard"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)curl --request GET \
--url https://api-staging.keystoneos.xyz/v1/platforms/me/dashboard \
--header 'Authorization: Bearer <token>'{
"settlements_by_state": {},
"compliance_by_status": {},
"recent_activity_count": 123
}Authorizations
Auth0 JWT access token. See Authentication for details.