List API Keys
List all API keys for the organization. The full token is not returned for security reasons.
GET
/api-keysResend Compatibility: Compatible
Requires a full_access API key.
Query Parameters
limitnumberMaximum number of results to return. Min 1, max 100. Default 100.
afterstringCursor for forward pagination.
beforestringCursor for backward pagination.
Response Fields
objectstringAlways "list".
has_morebooleanWhether there are more results available.
dataarrayArray of API key objects (without tokens).
curl -X GET 'https://api.postflare.app/api-keys' \
-H 'Authorization: Bearer re_xxxxxxxxx'import { Resend } from 'resend';
const resend = new Resend('re_xxxxxxxxx');
const { data, error } = await resend.apiKeys.list();Response
{
"object": "list",
"has_more": false,
"data": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"name": "Production Key",
"created_at": "2026-01-01T00:00:00.000Z"
}
]
}