import { Resend } from 'resend';
const resend = new Resend('re_xxxxxxxxx');
const { data, error } = await resend.webhooks.get(
'4dd369bc-aa82-4ff3-97de-514ae3000ee0',
);
$resend = Resend::client('re_xxxxxxxxx');
$resend->webhooks->get('4dd369bc-aa82-4ff3-97de-514ae3000ee0');
import resend
resend.api_key = 're_xxxxxxxxx'
webhook = resend.Webhooks.get(webhook_id='4dd369bc-aa82-4ff3-97de-514ae3000ee0')
require 'resend'
Resend.api_key = 're_xxxxxxxxx'
webhook = Resend::Webhooks.get('4dd369bc-aa82-4ff3-97de-514ae3000ee0')
package main
import "github.com/resend/resend-go/v3"
func main() {
client := resend.NewClient("re_xxxxxxxxx")
client.Webhooks.Get("4dd369bc-aa82-4ff3-97de-514ae3000ee0")
}
use resend_rs::{Resend, Result};
#[tokio::main]
async fn main() -> Result<()> {
let resend = Resend::new("re_xxxxxxxxx");
let _webhook = resend
.webhooks
.get("4dd369bc-aa82-4ff3-97de-514ae3000ee0")
.await?;
Ok(())
}
import com.resend.*;
public class Main {
public static void main(String[] args) {
Resend resend = new Resend("re_xxxxxxxxx");
GetWebhookResponseSuccess webhook = resend.webhooks().get("4dd369bc-aa82-4ff3-97de-514ae3000ee0");
}
}
using Resend;
IResend resend = ResendClient.Create( "re_xxxxxxxxx" ); // Or from DI
var resp = await resend.WebhookRetrieveAsync( new Guid( "559ac32e-9ef5-46fb-82a1-b76b840c0f7b" ) );
Console.WriteLine( "Endpoint={0}", resp.Content.EndpointUrl );
curl -X GET 'https://api.resend.com/webhooks/4dd369bc-aa82-4ff3-97de-514ae3000ee0' \
-H 'Authorization: Bearer re_xxxxxxxxx'
resend webhooks get 4dd369bc-aa82-4ff3-97de-514ae3000ee0
{
"object": "webhook",
"id": "4dd369bc-aa82-4ff3-97de-514ae3000ee0",
"created_at": "2026-08-22 15:28:00.000+00",
"status": "enabled",
"endpoint": "https://example.com/handler",
"events": ["email.sent"],
"signing_secret": "whsec_xxxxxxxxxx"
}
Retrieve Webhook
Retrieve a single webhook for the authenticated user.
GET
/
webhooks
/
:webhook_id
import { Resend } from 'resend';
const resend = new Resend('re_xxxxxxxxx');
const { data, error } = await resend.webhooks.get(
'4dd369bc-aa82-4ff3-97de-514ae3000ee0',
);
$resend = Resend::client('re_xxxxxxxxx');
$resend->webhooks->get('4dd369bc-aa82-4ff3-97de-514ae3000ee0');
import resend
resend.api_key = 're_xxxxxxxxx'
webhook = resend.Webhooks.get(webhook_id='4dd369bc-aa82-4ff3-97de-514ae3000ee0')
require 'resend'
Resend.api_key = 're_xxxxxxxxx'
webhook = Resend::Webhooks.get('4dd369bc-aa82-4ff3-97de-514ae3000ee0')
package main
import "github.com/resend/resend-go/v3"
func main() {
client := resend.NewClient("re_xxxxxxxxx")
client.Webhooks.Get("4dd369bc-aa82-4ff3-97de-514ae3000ee0")
}
use resend_rs::{Resend, Result};
#[tokio::main]
async fn main() -> Result<()> {
let resend = Resend::new("re_xxxxxxxxx");
let _webhook = resend
.webhooks
.get("4dd369bc-aa82-4ff3-97de-514ae3000ee0")
.await?;
Ok(())
}
import com.resend.*;
public class Main {
public static void main(String[] args) {
Resend resend = new Resend("re_xxxxxxxxx");
GetWebhookResponseSuccess webhook = resend.webhooks().get("4dd369bc-aa82-4ff3-97de-514ae3000ee0");
}
}
using Resend;
IResend resend = ResendClient.Create( "re_xxxxxxxxx" ); // Or from DI
var resp = await resend.WebhookRetrieveAsync( new Guid( "559ac32e-9ef5-46fb-82a1-b76b840c0f7b" ) );
Console.WriteLine( "Endpoint={0}", resp.Content.EndpointUrl );
curl -X GET 'https://api.resend.com/webhooks/4dd369bc-aa82-4ff3-97de-514ae3000ee0' \
-H 'Authorization: Bearer re_xxxxxxxxx'
resend webhooks get 4dd369bc-aa82-4ff3-97de-514ae3000ee0
{
"object": "webhook",
"id": "4dd369bc-aa82-4ff3-97de-514ae3000ee0",
"created_at": "2026-08-22 15:28:00.000+00",
"status": "enabled",
"endpoint": "https://example.com/handler",
"events": ["email.sent"],
"signing_secret": "whsec_xxxxxxxxxx"
}
Path Parameters
import { Resend } from 'resend';
const resend = new Resend('re_xxxxxxxxx');
const { data, error } = await resend.webhooks.get(
'4dd369bc-aa82-4ff3-97de-514ae3000ee0',
);
$resend = Resend::client('re_xxxxxxxxx');
$resend->webhooks->get('4dd369bc-aa82-4ff3-97de-514ae3000ee0');
import resend
resend.api_key = 're_xxxxxxxxx'
webhook = resend.Webhooks.get(webhook_id='4dd369bc-aa82-4ff3-97de-514ae3000ee0')
require 'resend'
Resend.api_key = 're_xxxxxxxxx'
webhook = Resend::Webhooks.get('4dd369bc-aa82-4ff3-97de-514ae3000ee0')
package main
import "github.com/resend/resend-go/v3"
func main() {
client := resend.NewClient("re_xxxxxxxxx")
client.Webhooks.Get("4dd369bc-aa82-4ff3-97de-514ae3000ee0")
}
use resend_rs::{Resend, Result};
#[tokio::main]
async fn main() -> Result<()> {
let resend = Resend::new("re_xxxxxxxxx");
let _webhook = resend
.webhooks
.get("4dd369bc-aa82-4ff3-97de-514ae3000ee0")
.await?;
Ok(())
}
import com.resend.*;
public class Main {
public static void main(String[] args) {
Resend resend = new Resend("re_xxxxxxxxx");
GetWebhookResponseSuccess webhook = resend.webhooks().get("4dd369bc-aa82-4ff3-97de-514ae3000ee0");
}
}
using Resend;
IResend resend = ResendClient.Create( "re_xxxxxxxxx" ); // Or from DI
var resp = await resend.WebhookRetrieveAsync( new Guid( "559ac32e-9ef5-46fb-82a1-b76b840c0f7b" ) );
Console.WriteLine( "Endpoint={0}", resp.Content.EndpointUrl );
curl -X GET 'https://api.resend.com/webhooks/4dd369bc-aa82-4ff3-97de-514ae3000ee0' \
-H 'Authorization: Bearer re_xxxxxxxxx'
resend webhooks get 4dd369bc-aa82-4ff3-97de-514ae3000ee0
{
"object": "webhook",
"id": "4dd369bc-aa82-4ff3-97de-514ae3000ee0",
"created_at": "2026-08-22 15:28:00.000+00",
"status": "enabled",
"endpoint": "https://example.com/handler",
"events": ["email.sent"],
"signing_secret": "whsec_xxxxxxxxxx"
}
Was this page helpful?
⌘I