import { Resend } from 'resend';
const resend = new Resend('re_xxxxxxxxx');
const { data, error } = await resend.webhooks.events.list({
webhookId: '4dd369bc-aa82-4ff3-97de-514ae3000ee0',
});
$resend = Resend::client('re_xxxxxxxxx');
$events = $resend->webhooks->events->list(
'4dd369bc-aa82-4ff3-97de-514ae3000ee0'
);
import resend
resend.api_key = 're_xxxxxxxxx'
events = resend.Webhooks.list_events(
webhook_id='4dd369bc-aa82-4ff3-97de-514ae3000ee0'
)
require 'resend'
Resend.api_key = 're_xxxxxxxxx'
events = Resend::Webhooks.list_events('4dd369bc-aa82-4ff3-97de-514ae3000ee0')
package main
import "github.com/resend/resend-go/v4"
func main() {
client := resend.NewClient("re_xxxxxxxxx")
client.Webhooks.ListEvents("4dd369bc-aa82-4ff3-97de-514ae3000ee0")
}
use resend_rs::{list_opts::ListOptions, Resend, Result};
#[tokio::main]
async fn main() -> Result<()> {
let resend = Resend::new("re_xxxxxxxxx");
let _events = resend
.webhooks
.list_events(
"4dd369bc-aa82-4ff3-97de-514ae3000ee0",
ListOptions::default(),
)
.await?;
Ok(())
}
import com.resend.*;
import com.resend.core.exception.ResendException;
import com.resend.services.webhooks.model.ListWebhookEventsResponseSuccess;
public class Main {
public static void main(String[] args) throws ResendException {
Resend resend = new Resend("re_xxxxxxxxx");
ListWebhookEventsResponseSuccess events = resend.webhooks().listEvents(
"4dd369bc-aa82-4ff3-97de-514ae3000ee0"
);
}
}
using Resend;
IResend resend = ResendClient.Create( "re_xxxxxxxxx" ); // Or from DI
var resp = await resend.WebhookEventListAsync(
new Guid( "4dd369bc-aa82-4ff3-97de-514ae3000ee0" )
);
curl -X GET 'https://api.resend.com/webhooks/4dd369bc-aa82-4ff3-97de-514ae3000ee0/events' \
-H 'Authorization: Bearer re_xxxxxxxxx'
{
"object": "list",
"has_more": false,
"data": [
{
"id": "msg_1srOsB4mXhCqCVwAxYRNnpFZhb3",
"type": "email.delivered",
"created_at": "2026-08-22T15:28:00.000Z",
"status": "failed"
},
{
"id": "msg_1srOrx2ZWZBpBUvZwXKQmoEYga2",
"type": "email.sent",
"created_at": "2026-08-22T15:27:42.000Z",
"status": "success"
}
]
}
List Events
Retrieve a list of events delivered to a webhook.
GET
/
webhooks
/
:webhook_id
/
events
import { Resend } from 'resend';
const resend = new Resend('re_xxxxxxxxx');
const { data, error } = await resend.webhooks.events.list({
webhookId: '4dd369bc-aa82-4ff3-97de-514ae3000ee0',
});
$resend = Resend::client('re_xxxxxxxxx');
$events = $resend->webhooks->events->list(
'4dd369bc-aa82-4ff3-97de-514ae3000ee0'
);
import resend
resend.api_key = 're_xxxxxxxxx'
events = resend.Webhooks.list_events(
webhook_id='4dd369bc-aa82-4ff3-97de-514ae3000ee0'
)
require 'resend'
Resend.api_key = 're_xxxxxxxxx'
events = Resend::Webhooks.list_events('4dd369bc-aa82-4ff3-97de-514ae3000ee0')
package main
import "github.com/resend/resend-go/v4"
func main() {
client := resend.NewClient("re_xxxxxxxxx")
client.Webhooks.ListEvents("4dd369bc-aa82-4ff3-97de-514ae3000ee0")
}
use resend_rs::{list_opts::ListOptions, Resend, Result};
#[tokio::main]
async fn main() -> Result<()> {
let resend = Resend::new("re_xxxxxxxxx");
let _events = resend
.webhooks
.list_events(
"4dd369bc-aa82-4ff3-97de-514ae3000ee0",
ListOptions::default(),
)
.await?;
Ok(())
}
import com.resend.*;
import com.resend.core.exception.ResendException;
import com.resend.services.webhooks.model.ListWebhookEventsResponseSuccess;
public class Main {
public static void main(String[] args) throws ResendException {
Resend resend = new Resend("re_xxxxxxxxx");
ListWebhookEventsResponseSuccess events = resend.webhooks().listEvents(
"4dd369bc-aa82-4ff3-97de-514ae3000ee0"
);
}
}
using Resend;
IResend resend = ResendClient.Create( "re_xxxxxxxxx" ); // Or from DI
var resp = await resend.WebhookEventListAsync(
new Guid( "4dd369bc-aa82-4ff3-97de-514ae3000ee0" )
);
curl -X GET 'https://api.resend.com/webhooks/4dd369bc-aa82-4ff3-97de-514ae3000ee0/events' \
-H 'Authorization: Bearer re_xxxxxxxxx'
{
"object": "list",
"has_more": false,
"data": [
{
"id": "msg_1srOsB4mXhCqCVwAxYRNnpFZhb3",
"type": "email.delivered",
"created_at": "2026-08-22T15:28:00.000Z",
"status": "failed"
},
{
"id": "msg_1srOrx2ZWZBpBUvZwXKQmoEYga2",
"type": "email.sent",
"created_at": "2026-08-22T15:27:42.000Z",
"status": "success"
}
]
}
Path Parameters
Query Parameters
number
Number of events to return. Between
1 and 100. Defaults to 20.string
The event ID to fetch the next page after.The
before parameter is not supported for this endpoint.Response Fields
string
Always
list.boolean
Whether more events exist beyond this page.
array
The events delivered to this webhook, most recent first.
Hide properties
Hide properties
string
The event ID. Use this to retrieve its details
or list its attempts.
string
The event type, for example
email.sent.string
When the event was created.
string
Delivery status of the event to this webhook:
success, failed,
attempting, or pending.import { Resend } from 'resend';
const resend = new Resend('re_xxxxxxxxx');
const { data, error } = await resend.webhooks.events.list({
webhookId: '4dd369bc-aa82-4ff3-97de-514ae3000ee0',
});
$resend = Resend::client('re_xxxxxxxxx');
$events = $resend->webhooks->events->list(
'4dd369bc-aa82-4ff3-97de-514ae3000ee0'
);
import resend
resend.api_key = 're_xxxxxxxxx'
events = resend.Webhooks.list_events(
webhook_id='4dd369bc-aa82-4ff3-97de-514ae3000ee0'
)
require 'resend'
Resend.api_key = 're_xxxxxxxxx'
events = Resend::Webhooks.list_events('4dd369bc-aa82-4ff3-97de-514ae3000ee0')
package main
import "github.com/resend/resend-go/v4"
func main() {
client := resend.NewClient("re_xxxxxxxxx")
client.Webhooks.ListEvents("4dd369bc-aa82-4ff3-97de-514ae3000ee0")
}
use resend_rs::{list_opts::ListOptions, Resend, Result};
#[tokio::main]
async fn main() -> Result<()> {
let resend = Resend::new("re_xxxxxxxxx");
let _events = resend
.webhooks
.list_events(
"4dd369bc-aa82-4ff3-97de-514ae3000ee0",
ListOptions::default(),
)
.await?;
Ok(())
}
import com.resend.*;
import com.resend.core.exception.ResendException;
import com.resend.services.webhooks.model.ListWebhookEventsResponseSuccess;
public class Main {
public static void main(String[] args) throws ResendException {
Resend resend = new Resend("re_xxxxxxxxx");
ListWebhookEventsResponseSuccess events = resend.webhooks().listEvents(
"4dd369bc-aa82-4ff3-97de-514ae3000ee0"
);
}
}
using Resend;
IResend resend = ResendClient.Create( "re_xxxxxxxxx" ); // Or from DI
var resp = await resend.WebhookEventListAsync(
new Guid( "4dd369bc-aa82-4ff3-97de-514ae3000ee0" )
);
curl -X GET 'https://api.resend.com/webhooks/4dd369bc-aa82-4ff3-97de-514ae3000ee0/events' \
-H 'Authorization: Bearer re_xxxxxxxxx'
{
"object": "list",
"has_more": false,
"data": [
{
"id": "msg_1srOsB4mXhCqCVwAxYRNnpFZhb3",
"type": "email.delivered",
"created_at": "2026-08-22T15:28:00.000Z",
"status": "failed"
},
{
"id": "msg_1srOrx2ZWZBpBUvZwXKQmoEYga2",
"type": "email.sent",
"created_at": "2026-08-22T15:27:42.000Z",
"status": "success"
}
]
}
Was this page helpful?
⌘I