Appearance
API Overview
The Resend Plus API is a RESTful API that uses JSON for request and response bodies.
Base URL
https://api.resendplus.com/v1Authentication
All API requests require an API key passed in the Authorization header:
Authorization: Bearer rp_your_api_keySee Authentication for details.
Response Format
All responses are JSON objects. Successful responses include the resource data:
json
{
"id": "email_abc123",
"status": "sent",
"created_at": "2024-01-15T10:30:00Z"
}Error Responses
Errors return an appropriate HTTP status code and a JSON body:
json
{
"error": {
"code": "invalid_request",
"message": "The 'to' field is required"
}
}Status Codes
| Code | Description |
|---|---|
| 200 | Success |
| 201 | Created |
| 400 | Bad Request |
| 401 | Unauthorized |
| 403 | Forbidden |
| 404 | Not Found |
| 429 | Rate Limited |
| 500 | Server Error |
Rate Limits
API requests are rate limited to 100 requests per second per API key.