Skip to main content
GET
/
emails
/
:email_id
import { Resend } from 'resend';

const resend = new Resend('re_xxxxxxxxx');

const { data, error } = await resend.emails.get(
  '37e4414c-5e25-4dbc-a071-43552a4bd53b',
);
$resend = Resend::client('re_xxxxxxxxx');

$resend->emails->get('37e4414c-5e25-4dbc-a071-43552a4bd53b');
import resend

resend.api_key = "re_xxxxxxxxx"
resend.Emails.get(email_id="4ef9a417-02e9-4d39-ad75-9611e0fcc33c")
Resend.api_key = "re_xxxxxxxxx"
email = Resend::Emails.get("4ef9a417-02e9-4d39-ad75-9611e0fcc33c")
puts email
package main

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

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

	client.Emails.Get("4ef9a417-02e9-4d39-ad75-9611e0fcc33c")
}
use resend_rs::{Resend, Result};

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

  let _email = resend
    .emails
    .get("4ef9a417-02e9-4d39-ad75-9611e0fcc33c")
    .await?;

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

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

        Email email = resend.emails().get("4ef9a417-02e9-4d39-ad75-9611e0fcc33c");
    }
}
using Resend;

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

var resp = await resend.EmailRetrieveAsync( new Guid( "4ef9a417-02e9-4d39-ad75-9611e0fcc33c" ) );
Console.WriteLine( "Subject={0}", resp.Content.Subject );
curl -X GET 'https://api.resend.com/emails/4ef9a417-02e9-4d39-ad75-9611e0fcc33c' \
     -H 'Authorization: Bearer re_xxxxxxxxx'
resend emails get 4ef9a417-02e9-4d39-ad75-9611e0fcc33c
{
  "object": "email",
  "id": "4ef9a417-02e9-4d39-ad75-9611e0fcc33c",
  "message_id": "<111-222-333@email.example.com>",
  "to": ["delivered@resend.dev"],
  "from": "Acme <onboarding@resend.dev>",
  "created_at": "2026-04-03 22:13:42.674981+00",
  "subject": "Hello World",
  "html": "Congrats on sending your <strong>first email</strong>!",
  "text": null,
  "bcc": [],
  "cc": [],
  "reply_to": [],
  "last_event": "delivered",
  "scheduled_at": null,
  "tags": [
    {
      "name": "category",
      "value": "confirm_email"
    }
  ]
}

Path Parameters

id
string
required
The Email ID.
See all available last_event types in the Email Events overview.
import { Resend } from 'resend';

const resend = new Resend('re_xxxxxxxxx');

const { data, error } = await resend.emails.get(
  '37e4414c-5e25-4dbc-a071-43552a4bd53b',
);
$resend = Resend::client('re_xxxxxxxxx');

$resend->emails->get('37e4414c-5e25-4dbc-a071-43552a4bd53b');
import resend

resend.api_key = "re_xxxxxxxxx"
resend.Emails.get(email_id="4ef9a417-02e9-4d39-ad75-9611e0fcc33c")
Resend.api_key = "re_xxxxxxxxx"
email = Resend::Emails.get("4ef9a417-02e9-4d39-ad75-9611e0fcc33c")
puts email
package main

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

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

	client.Emails.Get("4ef9a417-02e9-4d39-ad75-9611e0fcc33c")
}
use resend_rs::{Resend, Result};

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

  let _email = resend
    .emails
    .get("4ef9a417-02e9-4d39-ad75-9611e0fcc33c")
    .await?;

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

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

        Email email = resend.emails().get("4ef9a417-02e9-4d39-ad75-9611e0fcc33c");
    }
}
using Resend;

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

var resp = await resend.EmailRetrieveAsync( new Guid( "4ef9a417-02e9-4d39-ad75-9611e0fcc33c" ) );
Console.WriteLine( "Subject={0}", resp.Content.Subject );
curl -X GET 'https://api.resend.com/emails/4ef9a417-02e9-4d39-ad75-9611e0fcc33c' \
     -H 'Authorization: Bearer re_xxxxxxxxx'
resend emails get 4ef9a417-02e9-4d39-ad75-9611e0fcc33c
{
  "object": "email",
  "id": "4ef9a417-02e9-4d39-ad75-9611e0fcc33c",
  "message_id": "<111-222-333@email.example.com>",
  "to": ["delivered@resend.dev"],
  "from": "Acme <onboarding@resend.dev>",
  "created_at": "2026-04-03 22:13:42.674981+00",
  "subject": "Hello World",
  "html": "Congrats on sending your <strong>first email</strong>!",
  "text": null,
  "bcc": [],
  "cc": [],
  "reply_to": [],
  "last_event": "delivered",
  "scheduled_at": null,
  "tags": [
    {
      "name": "category",
      "value": "confirm_email"
    }
  ]
}