Built for 𝕏∙LinkedIn∙Bluesky∙Threads. Powered by AI
Write & schedule, effortlessly
Craft and publish engaging content in an app built for creators.
NEW
Publish anywhere
Publish on X, LinkedIn, Bluesky, Threads, & Mastodon at the same time.
Make it punchier 👊
Typefully
@typefully
We're launching a Command Bar today with great commands and features.
AI ideas and rewrites
Get suggestions, tweet ideas, and rewrites powered by AI.
Turn your tweets & threads into a social blog
Give your content new life with our beautiful, sharable pages. Make it go viral on other platforms too.
+14
Followers
Powerful analytics to grow faster
Easily track your engagement analytics to improve your content and grow faster.
Build in public
Share a recent learning with your followers.
Create engagement
Pose a thought-provoking question.
Never run out of ideas
Get prompts and ideas whenever you write - with examples of popular tweets.
@aaditsh
I think this thread hook could be improved.
@frankdilo
On it 🔥
Share drafts & leave comments
Write with your teammates and get feedback with comments.
NEW
Easlo
@heyeaslo
Reply with "Notion" to get early access to my new template.
Jaga
@kandros5591
Notion 🙏
DM Sent
Create giveaways with Auto-DMs
Send DMs automatically based on engagement with your tweets.
And much more:
Auto-Split Text in Posts
Thread Finisher
Tweet Numbering
Pin Drafts
Connect Multiple Accounts
Automatic Backups
Dark Mode
Keyboard Shortcuts
Creators love Typefully
180,000+ creators and teams chose Typefully to curate their Twitter presence.
Marc Köhlbrugge@marckohlbrugge
Tweeting more with @typefully these days.
🙈 Distraction-free
✍️ Write-only Twitter
🧵 Effortless threads
📈 Actionable metrics
I recommend giving it a shot.
Jurre Houtkamp@jurrehoutkamp
Typefully is fantastic and way too cheap for what you get.
We’ve tried many alternatives at @framer but nothing beats it. If you’re still tweeting from Twitter you’re wasting time.
DHH@dhh
This is my new go-to writing environment for Twitter threads.
They've built something wonderfully simple and distraction free with Typefully 😍
Santiago@svpino
For 24 months, I tried almost a dozen Twitter scheduling tools.
Then I found @typefully, and I've been using it for seven months straight.
When it comes down to the experience of scheduling and long-form content writing, Typefully is in a league of its own.
Luca Rossi ꩜@lucaronin
After trying literally all the major Twitter scheduling tools, I settled with @typefully.
Killer feature to me is the native image editor — unique and super useful 🙏
Visual Theory@visualtheory_
Really impressed by the way @typefully has simplified my Twitter writing + scheduling/publishing experience.
Beautiful user experience.
0 friction.
Simplicity is the ultimate sophistication.
Queue your content in seconds
Write, schedule and boost your tweets - with no need for extra apps.
Schedule with one click
Queue your post with a single click - or pick a time manually.
Pick the perfect time
Time each post to perfection with Typefully's performance analytics.
Boost your content
Retweet and plug your posts for automated engagement.
Start creating a content queue.
Write once, publish everywhere
We natively support multiple platforms, so that you can expand your reach easily.
Check the analytics that matter
Build your audience with insights that make sense.
Writing prompts & personalized post ideas
Break through writer's block with great ideas and suggestions.
Never run out of ideas
Enjoy daily prompts and ideas to inspire your writing.
Use AI for personalized suggestions
Get inspiration from ideas based on your own past tweets.
Flick through topics
Or skim through curated collections of trending tweets for each topic.
Write, edit, and track tweets together
Write and publish with your teammates and friends.
Share your drafts
Brainstorm and bounce ideas with your teammates.
NEW
@aaditsh
I think this thread hook could be improved.
@frankdilo
On it 🔥
Add comments
Get feedback from coworkers before you hit publish.
Read, Write, Publish
Read, WriteRead
Control user access
Decide who can view, edit, or publish your drafts.
This is how I built a SaaS lead magnet, in 3 days, for @weusekana and @atulord.
Problem: Keeping track of your SaaS competitors pricing and offering is v v time-consuming.
Solution: Free instant email alerts whenever a competitor changes their pricing page.
This could be done no-code, but considering I have some JS experience, I went for a low-code solution.
Essentially, mixing a few tools and workflow services with some custom code sprinkled on top ✨
Rough solution requirements.
1. Allow users to track a company's pricing page
2. Weekly check for pricing page changes
3. Send email alerts when a pricing page changes
4. Maintain a list of users tracking each company
5. Maintain a list of companies already being tracked
My chosen tech stack for those requirements.
@visualping for web crawler / visual comparison checks
@SendGrid for emails, email lists and email templates
@pipedream for user sign up and email alert workflows
@airtable for a simple data store
@softr_io for web app / front-end
Tracking every SaaS company would be prohibitively expensive, so we only want to track companies people sign up to.
In short, we want to setup a web crawler and email alert list for each pricing page only when the first user requests it.
And then, subsequent users can just be added to that email list and get alerts from the crawler that already exists.
At this point it's worth saying I'd already built a SaaS pricing index with 300+ companies pricing data: pricing-index.usekana.com/
This was going to be the home for the pricing alerts. But the alerts could have had their own micro-site very easily.
To start, I'll add an email sign-up field to each company on the SaaS index.
This email sign-up pings a webhook I'll create on @pipedream.
It'll send the user's email and the pricing page URL to track.
Next, we'll search our @airtable data store (using a no-code integration) to see if this company is already being tracked.
If it's not being tracked, then we need:
1. @visualping API request to create a new web crawler
2. @SendGrid API request to create a new email list for this company.
We'll do this using some custom JS code 👨💻 as a workflow step.
This company is then saved to our @airtable.
After the crawler and list are setup, or if it already existed, we just need to subscribe the user to the existing email list.
A new @airtable search will give us the list ID for a given pricing page URL.
Another API request to @SendGrid will add the user's email to this list.
And hey presto! We have the first half setup.
✅ Users can track companies.
Now we need to build the alerts for when a pricing page changes.
Goal: Send an email template to a given email list.
I'll create another webhook in @pipedream. This is what @visualping will call when it detects a change in a pricing page.
This is where I started to find @SendGrid very cumbersome to work with 😬
You can't send an email template to a list by its ID. You can only send it to a list of emails.
So two bits of custom code:
1. Fetch an email list and get all its recipients' email addresses.
2. Send an email, using a template, to an array (list) of user email addresses.
And that's it!
The result, a beautiful email alert, received whenever a competitor changes their pricing page.
A few ideas I've had for v2 of these pricing alerts:
- Welcome email on first company tracked, with email verification
- Include the actual pricing page change or screenshot comparison in the alert email