API Keys
List API keys
API Keys
List API keys
Retrieve a list of API keys for the authenticated user.
import { Resend } from 'resend';
const resend = new Resend('re_123456789');
resend.apiKeys.list();
{
"data": [
{
"id": "91f3200a-df72-4654-b0cd-f202395f5354",
"name": "Production",
"created_at": "2023-04-08T00:11:13.110779+00:00"
}
]
}
import { Resend } from 'resend';
const resend = new Resend('re_123456789');
resend.apiKeys.list();
{
"data": [
{
"id": "91f3200a-df72-4654-b0cd-f202395f5354",
"name": "Production",
"created_at": "2023-04-08T00:11:13.110779+00:00"
}
]
}
Was this page helpful?
import { Resend } from 'resend';
const resend = new Resend('re_123456789');
resend.apiKeys.list();
{
"data": [
{
"id": "91f3200a-df72-4654-b0cd-f202395f5354",
"name": "Production",
"created_at": "2023-04-08T00:11:13.110779+00:00"
}
]
}