JavaScript
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}}; fetch('https://api.keystoneos.xyz/v1/admin/settlements/pipeline', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "states": [ { "state": "<string>", "count": 123 } ], "total_in_flight": 123, "total_terminal": 123 }
Returns the current count of settlements per state across all platforms, with totals for in-flight and terminal settlements.
Auth0 JWT access token. See Authentication for details.
Successful Response
Current distribution of settlements across all states.
Show child attributes