validator_address defines the validator address to query for.
A successful response.
slashes defines the slashes the validator received.
pagination defines the pagination in the response.
const response = await fetch('//osmo.nownodes.io/cosmos/distribution/v1beta1/validators/{validator_address}/slashes', { method: 'GET', headers: {}, }); const data = await response.json();
{ "slashes": [ { "validator_period": "text", "fraction": "text" } ], "pagination": { "next_key": "Ynl0ZXM=", "total": "text" } }