API reference
HappyReplies API.
A small, focused REST API for generating and storing review replies. Currently in private beta — email us for access.
Base URL
https://api.happyreplies.com
Auth
Authorization: Bearer hr_live_…
POST/v1/replies/generate
Generate a reply for a single review.
Request
{
"reviewer_name": "Sarah M.",
"review_text": "The coffee was incredible…",
"star_rating": 5
}Response
{
"reply": "Thanks Sarah! Means a lot — see you soon."
}POST/v1/replies
Save a reply to history.
Request
{
"review_text": "…",
"reply_text": "…",
"star_rating": 5
}Response
{ "id": "rep_01HX…" }GET/v1/replies
List replies for the current workspace.
Request
—Response
[ { "id": "rep_…", "reply_text": "…", "created_at": "…" } ]