get https://api.northstake.dk/v1/validatorMarketplace/webhooks
List all validator marketplace webhooks for the user
import { NorthstakeApi } from '@northstake/northstakeapi'
const api = new NorthstakeApi('apiKey', 'privateKey')
const {body: myWebhooks} = await api.validatorMarketplaceWebhooks.listRegisteredWebhooks()
for (const webhook of myWebhooks) {
console.log(`
Webhook ID: ${webhook.id}
Webhook URL: ${webhook.url}
Webhook Type: ${webhook.eventType}
`)
}