TextBelt

Free API for outgoing SMS (by typpo)

TextBelt Alternatives

Similar projects and alternatives to TextBelt

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better TextBelt alternative or higher similarity.

TextBelt reviews and mentions

Posts with mentions or reviews of TextBelt. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-12-21.
  • Ways to code notifications into your Python scripts?
    2 projects | /r/algotrading | 21 Dec 2022
    I use paid service textbelt.com (also www.twilio.com is there), they have standard plugin for many languages.
  • Elixir and SMS tutorial
    2 projects | dev.to | 5 Dec 2022
    # Path: lib/sms_demo/sms_handler.ex defmodule SmsDemo.SmsHandler do use GenServer def send_message(to_phone, message) do GenServer.cast(SmsDemo.SmsHandler, {:send, {to_phone, message}}) end def receive_message(from_phone, message) do GenServer.cast(SmsDemo.SmsHandler, {:receive, {from_phone, message}}) end def start_link(_) do GenServer.start_link(__MODULE__, [], name: __MODULE__) end def init([]) do {:ok, %{}} end def handle_cast({:send, {phone, message}}, state) do textbelt_url = "https://textbelt.com/text" textbelt_key = Application.get_env(:sms_demo, :textbelt_key) replyWebhookUrl = Application.get_env(:sms_demo, :webhook_url) params = %{ phone: phone, message: message, key: textbelt_key, replyWebhookUrl: replyWebhookUrl } HTTPoison.post(textbelt_url, Poison.encode!(params), [{"Content-type", "application/json"}]) {:noreply, state} end def handle_cast({:receive, {phone, message}}, state) do # TODO: Do something with the message {:noreply, state} end end
  • Free SMS API
    2 projects | /r/devops | 26 Jul 2022
    You can look into this: https://github.com/typpo/textbelt
  • Home Assistant iOS app adds local push notification support
    6 projects | news.ycombinator.com | 8 Jul 2021
    I settled on https://textbelt.com/ since it was cheap, a curl one-liner to use and didn't require me to install something new on my phone.

    % long-running-job.sh ; sms "the job is done"

  • A note from our sponsor - Appwrite
    appwrite.io | 6 Dec 2023
    Add Auth, Databases, Functions, and Storage to your product and build any application at any scale while using your preferred coding languages and tools. Learn more →

Stats

Basic TextBelt repo stats
14
2,772
4.7
3 months ago

typpo/textbelt is an open source project licensed under MIT License which is an OSI approved license.

TextBelt is marked as "self-hosted". This means that it can be used as a standalone application on its own.

The primary programming language of TextBelt is JavaScript.

Learn any GitHub repo in 59 seconds
Onboard AI learns any GitHub repo in minutes and lets you chat with it to locate functionality, understand different parts, and generate new code. Use it for free at www.getonboard.dev.
getonboard.dev