Get Webhook

Returns a webhook config given a webhook ID

GET /webhooks/:webhookID

Example

const getWebhook = async () => {
    try {
      const response = await fetch(
        "https://api.helius.xyz/v0/webhooks/<webhook-id>?api-key=<PASTE YOUR API KEY HERE>",
        {
          method: 'GET',
          headers: {
            'Content-Type': 'application/json',
          }
        }
      );
      const data = await response.json();
      console.log({ data });
    } catch (e) {
      console.error("error", e);
    }
  };
  getWebhook();

Last updated