GET
GET /usage — Resend API
Resend APIRetrieve account usage
- Base URL
- https://api.resend.com
- Auth
- Authorization: Bearer <RESEND_API_KEY>
- Last verified
- 2026-09-26 · upstream hash matched
Critical gotchas
All requests must include a User-Agent header (e.g. User-Agent: my-app/1.0) or the API returns HTTP 403.
cURL
curl -X GET 'https://api.resend.com/usage' \ -H "Authorization: Bearer $RESEND_API_KEY" \ -H 'User-Agent: my-app/1.0'
Parameters
No parameters.
Response 200 OK
{
"object": "usage",
"emails": {
"daily": {
"used": 0,
"limit": 0,
"sent": 0,
"received": 0,
"resets_at": "string"
},
"monthly": {
"used": 0,
"limit": 0,
"sent": 0,
"received": 0,
"resets_at": "string"
}
},
"contacts": {
"used": 0,
"limit": 0
},
"segments": {
"used": 0,
"limit": 0
},
"broadcasts": {
"used": 0,
"limit": null
},
"ai_credits": {
"used": 0,
"limit": 0,
"next_increase_at": "string"
},
"automation_runs": {
"used": 0,
"limit": 0,
"resets_at": "string"
},
"domains": {
"used": 0,
"limit": 0
},
"rate_limit": {
"limit": 0,
"duration": "string"
}
} Get a free Resend API key → sponsored Affiliate link - we may earn a commission, at no extra cost to you.