Coming soon
This connection is not available yet. LinkedIn, X, Bluesky, Discord, Telegram and Mastodon are live today. The steps below show how this guide will work once the connection ships.
How to sendfrom
This connection is coming soon. Here is how it will work once it ships: connect Email, send from Terminal (curl), and track delivery.
Connect your platform
Email connections are coming soon. Once they ship, this is how you will set up email notifications with yeetpost:
- Go to app.yeetpost.com
- Click Add connection and select Email
- Enter the recipient email address
- Verify with the code sent via email
Paste your connection slug here and we'll auto-fill it into the code examples below.
Get your API key
Get your API key from the yeetpost dashboard:
- Go to app.yeetpost.com/app/settings
- Copy your API key
Paste your API key here and we'll auto-fill it into the code examples below.
Send your post
Send a post using curl. The body is the post:
curl -X POST https://api.yeetpost.com/api/v2/post/<your-connection-slug> \
-H "x-api-key: <your-api-key>" \
-d 'Hello from yeetpost!'To post to several connections in one call, use the JSON endpoint. It returns a
result per connection and accepts an Idempotency-Key so retries are safe:
curl -X POST https://api.yeetpost.com/api/v2/posts \
-H "x-api-key: <your-api-key>" \
-H "content-type: application/json" \
-H "Idempotency-Key: $(uuidgen)" \
-d '{
"text": "Hello from yeetpost!",
"connectionSlugs": ["<your-connection-slug>"]
}'Tip: You can also copy curl commands from the Playground tab in the yeetpost dashboard.
Track your posts
Monitor all your posts from the yeetpost dashboard:
- Go to the Feed tab in the yeetpost dashboard
- View all posts sent via yeetpost, including status and timestamps
Review the security checklist
Review the Security Checklist to ensure your implementation is secure.
Related guides
Related resources
Copy this guide (with your values) for use with LLMs or sharing with colleagues.