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 SMS, send from Python, and track delivery.
Connect your platform
SMS connections are coming soon. Once they ship, this is how you will set up SMS messaging with yeetpost:
- Go to app.yeetpost.com
- Click Add connection and select SMS
- Enter the recipient phone number
- Verify with the code sent via SMS
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
Install the requests library:
pip install requestsSend a post:
import requests
response = requests.post(
"https://api.yeetpost.com/api/v2/post/<your-connection-slug>",
headers={"x-api-key": "<your-api-key>"},
data="Hello from yeetpost!",
)
print(response.json())To post to several connections in one call, use the JSON endpoint. Read the
per-connection status in results, not just the HTTP status:
import requests
response = requests.post(
"https://api.yeetpost.com/api/v2/posts",
headers={"x-api-key": "<your-api-key>"},
json={
"text": "Hello from yeetpost!",
"connectionSlugs": ["<your-connection-slug>"],
},
)
for result in response.json()["results"]:
print(result["connectionSlug"], result["status"])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.