import { Resend } from 'resend';
const resend = new Resend('re_xxxxxxxxx');
const { data, error } = await resend.logs.get(
'37e4414c-5e25-4dbc-a071-43552a4bd53b',
);
{
"object": "log",
"id": "37e4414c-5e25-4dbc-a071-43552a4bd53b",
"created_at": "2026-03-30 13:43:54.622865+00",
"endpoint": "/emails",
"method": "POST",
"response_status": 200,
"user_agent": "resend-node:6.0.3",
"request_body": {
"from": "Acme <onboarding@resend.dev>",
"to": ["delivered@resend.dev"],
"subject": "Hello World"
},
"response_body": {
"id": "4ef9a417-02e9-4d39-ad75-9611e0fcc33c"
}
}
Retrieve a single API request log.
import { Resend } from 'resend';
const resend = new Resend('re_xxxxxxxxx');
const { data, error } = await resend.logs.get(
'37e4414c-5e25-4dbc-a071-43552a4bd53b',
);
{
"object": "log",
"id": "37e4414c-5e25-4dbc-a071-43552a4bd53b",
"created_at": "2026-03-30 13:43:54.622865+00",
"endpoint": "/emails",
"method": "POST",
"response_status": 200,
"user_agent": "resend-node:6.0.3",
"request_body": {
"from": "Acme <onboarding@resend.dev>",
"to": ["delivered@resend.dev"],
"subject": "Hello World"
},
"response_body": {
"id": "4ef9a417-02e9-4d39-ad75-9611e0fcc33c"
}
}
request_body and response_body fields vary depending on the original
API request that was logged.import { Resend } from 'resend';
const resend = new Resend('re_xxxxxxxxx');
const { data, error } = await resend.logs.get(
'37e4414c-5e25-4dbc-a071-43552a4bd53b',
);
{
"object": "log",
"id": "37e4414c-5e25-4dbc-a071-43552a4bd53b",
"created_at": "2026-03-30 13:43:54.622865+00",
"endpoint": "/emails",
"method": "POST",
"response_status": 200,
"user_agent": "resend-node:6.0.3",
"request_body": {
"from": "Acme <onboarding@resend.dev>",
"to": ["delivered@resend.dev"],
"subject": "Hello World"
},
"response_body": {
"id": "4ef9a417-02e9-4d39-ad75-9611e0fcc33c"
}
}
Was this page helpful?