A little API to spread holiday cheer, powered by AWS Lambda and API Gateway.
GET https://api.holidaycheer.xyz/cheer
200 OK
{
"holidaySeason": true,
"greeting": "Merry Christmas!"
}
Or, get a personalized greeting:
POST https://api.holidaycheer.xyz/cheer
Content-Type: application/json
{
"name": "Nate"
}
200 OK
{
"holidaySeason": true,
"greeting": "Happy holidays, Nate!"
}
Follow my tutorial to learn how to build your own cheerful API, or check out the code on GitHub.
Merry Christmas! ❄️
Love, Nate