Personal Letter
A cosy personal letter template with a neutral-warm beige background that feels softer than pure white. Short letters are vertically centered, long letters overflow gracefully across pages. Perfect for personal correspondence, thank-you notes, and informal letters.
Template by Edgar Onghena
Example output
Fields
| Field | Type | Status |
|---|---|---|
title | string | required |
from_details | string | required |
to_details | string | required |
body | string | required |
Example
Request
POST https://api.lobsterpdf.com/render/fireside
Authorization: Bearer $LOBSTER_KEY
Content-Type: application/json
{
"title": "Sarah\nMitchell",
"from_details": "12 Elm Street\nCambridge, MA 02138\nsarah@example.com\n+1 (617) 555-0142",
"to_details": "Prof. James Anderson\nDepartment of Literature\nHarvard University\nCambridge, MA 02138",
"body": "Dear Professor Anderson,\n\nThank you for your thoughtful feedback on my manuscript. Your insights on the narrative structure were particularly helpful, and I have revised the third chapter accordingly.\n\nI would love to meet at your convenience to discuss the remaining sections. I am available most afternoons next week.\n\nWarm regards,\nSarah Mitchell"
}
↓
Response
{"url": "https://api.lobsterpdf.com/pdf/a1b2c3d4e5f6"}
JSON Schema
{
"properties": {
"title": {
"title": "Title",
"type": "string"
},
"from_details": {
"title": "From Details",
"type": "string"
},
"to_details": {
"title": "To Details",
"type": "string"
},
"body": {
"title": "Body",
"type": "string"
}
},
"required": [
"title",
"from_details",
"to_details",
"body"
],
"title": "FiresideData",
"type": "object"
}