Skip to main content
GET
/
webhooks
import { Resend } from 'resend';

const resend = new Resend('re_xxxxxxxxx');

const { data, error } = await resend.webhooks.list();
$resend = Resend::client('re_xxxxxxxxx');

$resend->webhooks->list();
import resend

resend.api_key = 're_xxxxxxxxx'

webhooks = resend.Webhooks.list()
require 'resend'

Resend.api_key = 're_xxxxxxxxx'

webhooks = Resend::Webhooks.list
package main

import "github.com/resend/resend-go/v3"

func main() {
	client := resend.NewClient("re_xxxxxxxxx")

	client.Webhooks.List()
}
use resend_rs::{list_opts::ListOptions, Resend, Result};

#[tokio::main]
async fn main() -> Result<()> {
  let resend = Resend::new("re_xxxxxxxxx");

  let _webhooks = resend.webhooks.list(ListOptions::default()).await?;

  Ok(())
}
import com.resend.*;

public class Main {
    public static void main(String[] args) {
        Resend resend = new Resend("re_xxxxxxxxx");

        ListWebhooksResponseSuccess response = resend.webhooks().list();
    }
}
using Resend;

IResend resend = ResendClient.Create( "re_xxxxxxxxx" ); // Or from DI

var resp = await resend.WebhookListAsync();
Console.WriteLine( "Nr Webhooks={0}", resp.Content.Data.Count );
curl -X GET 'https://api.resend.com/webhooks' \
     -H 'Authorization: Bearer re_xxxxxxxxx'
resend webhooks list
{
  "object": "list",
  "has_more": false,
  "data": [
    {
      "id": "7ab123cd-ef45-6789-abcd-ef0123456789",
      "created_at": "2026-09-10 10:15:30.000+00",
      "status": "disabled",
      "endpoint": "https://first-webhook.example.com/handler",
      "events": ["email.sent"]
    },
    {
      "id": "4dd369bc-aa82-4ff3-97de-514ae3000ee0",
      "created_at": "2026-08-22 15:28:00.000+00",
      "status": "enabled",
      "endpoint": "https://second-webhook.example.com/receive",
      "events": ["email.received"]
    }
  ]
}
import { Resend } from 'resend';

const resend = new Resend('re_xxxxxxxxx');

const { data, error } = await resend.webhooks.list();
$resend = Resend::client('re_xxxxxxxxx');

$resend->webhooks->list();
import resend

resend.api_key = 're_xxxxxxxxx'

webhooks = resend.Webhooks.list()
require 'resend'

Resend.api_key = 're_xxxxxxxxx'

webhooks = Resend::Webhooks.list
package main

import "github.com/resend/resend-go/v3"

func main() {
	client := resend.NewClient("re_xxxxxxxxx")

	client.Webhooks.List()
}
use resend_rs::{list_opts::ListOptions, Resend, Result};

#[tokio::main]
async fn main() -> Result<()> {
  let resend = Resend::new("re_xxxxxxxxx");

  let _webhooks = resend.webhooks.list(ListOptions::default()).await?;

  Ok(())
}
import com.resend.*;

public class Main {
    public static void main(String[] args) {
        Resend resend = new Resend("re_xxxxxxxxx");

        ListWebhooksResponseSuccess response = resend.webhooks().list();
    }
}
using Resend;

IResend resend = ResendClient.Create( "re_xxxxxxxxx" ); // Or from DI

var resp = await resend.WebhookListAsync();
Console.WriteLine( "Nr Webhooks={0}", resp.Content.Data.Count );
curl -X GET 'https://api.resend.com/webhooks' \
     -H 'Authorization: Bearer re_xxxxxxxxx'
resend webhooks list
{
  "object": "list",
  "has_more": false,
  "data": [
    {
      "id": "7ab123cd-ef45-6789-abcd-ef0123456789",
      "created_at": "2026-09-10 10:15:30.000+00",
      "status": "disabled",
      "endpoint": "https://first-webhook.example.com/handler",
      "events": ["email.sent"]
    },
    {
      "id": "4dd369bc-aa82-4ff3-97de-514ae3000ee0",
      "created_at": "2026-08-22 15:28:00.000+00",
      "status": "enabled",
      "endpoint": "https://second-webhook.example.com/receive",
      "events": ["email.received"]
    }
  ]
}