Longer version:
A colleague was struggling with automated posting to a LinkedIn page from their Next.js project, so I built a simpler API for it. Later I needed notifications from a data pipeline (SMS and Slack alerts during long-running jobs) so I expanded it.
After using it for a while, we thought others might find this useful too.
Compared to LinkedIn/X OAuth or setting up Twilio/Postmark/etc, it's simpler:
1. Sign up
2. Connect your accounts (LinkedIn, X, Slack, or verify your SMS number or email address)
3. Copy API key
4. Post via HTTP API or TypeScript SDK
Example request:
curl -X POST https://api.yeetpost.com/api/v2/post/sms -H "x-api-key: <your-api-key>" -d 'New user registered'
Another example via TypeScript: import { yeetpost } from "yeetpost";
await yeetpost({
connection: "linkedin",
text: "Today's top 3 projects:\n1. ...\n2. ...\n3. ...",
});
If you need to send notifications to yourself or post to your social media accounts, give it a try! Happy to answer any questions.Free tier available for testing: