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

const resend = new Resend('re_xxxxxxxxx');

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

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

resend.api_key = "re_xxxxxxxxx"

resend.Events.list()
require "resend"

Resend.api_key = "re_xxxxxxxxx"

Resend::Events.list
package main

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

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

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

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

  let _events = resend.events.list(ListOptions::default()).await?;

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

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

        ListEventsResponseSuccess data = resend.events().list();
    }
}
using Resend;

IResend resend = ResendClient.Create( "re_xxxxxxxxx" );

var resp = await resend.EventListAsync();
Console.WriteLine( "Count={0}", resp.Content.Data.Count );
curl -X GET 'https://api.resend.com/events' \
     -H 'Authorization: Bearer re_xxxxxxxxx'
resend events list
{
  "object": "list",
  "has_more": false,
  "data": [
    {
      "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "name": "user.created",
      "schema": {
        "plan": "string"
      },
      "created_at": "2026-10-01 12:00:00.000000+00",
      "updated_at": "2026-10-01 12:00:00.000000+00"
    },
    {
      "id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
      "name": "user.upgraded",
      "schema": null,
      "created_at": "2026-09-15 08:30:00.000000+00",
      "updated_at": "2026-09-20 14:00:00.000000+00"
    }
  ]
}
import { Resend } from 'resend';

const resend = new Resend('re_xxxxxxxxx');

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

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

resend.api_key = "re_xxxxxxxxx"

resend.Events.list()
require "resend"

Resend.api_key = "re_xxxxxxxxx"

Resend::Events.list
package main

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

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

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

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

  let _events = resend.events.list(ListOptions::default()).await?;

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

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

        ListEventsResponseSuccess data = resend.events().list();
    }
}
using Resend;

IResend resend = ResendClient.Create( "re_xxxxxxxxx" );

var resp = await resend.EventListAsync();
Console.WriteLine( "Count={0}", resp.Content.Data.Count );
curl -X GET 'https://api.resend.com/events' \
     -H 'Authorization: Bearer re_xxxxxxxxx'
resend events list
{
  "object": "list",
  "has_more": false,
  "data": [
    {
      "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "name": "user.created",
      "schema": {
        "plan": "string"
      },
      "created_at": "2026-10-01 12:00:00.000000+00",
      "updated_at": "2026-10-01 12:00:00.000000+00"
    },
    {
      "id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
      "name": "user.upgraded",
      "schema": null,
      "created_at": "2026-09-15 08:30:00.000000+00",
      "updated_at": "2026-09-20 14:00:00.000000+00"
    }
  ]
}