JavaScript
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}}; fetch('https://api.keystoneos.xyz/v1/platforms/me/dashboard', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "settlements_by_state": {}, "compliance_by_status": {}, "recent_activity_count": 123 }
Returns an operational overview for the current environment: settlement counts by state, compliance check results, and recent activity count (last 24 hours).
Auth0 JWT access token. See Authentication for details.
Successful Response
Show child attributes