Skip to main content
GET
/
v1
/
emails
/
{id}
/
body
Retrieve the rendered body
curl --request GET \
  --url https://api.drin.run/v1/emails/{id}/body \
  --header 'Authorization: Bearer <token>'
{
  "html": "<string>",
  "text": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.drin.run/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Your Drin API key, sent as Authorization: Bearer <key>.

Path Parameters

id
string
required

Response

200 - application/json

The exact { html, text } archived at send time (either may be null).

html
string | null
text
string | null