← 返回
开发者工具 Key 中文

Send SMS text and bulk messages via TelTel.io API

Send SMS text messages via TelTel (teltel.io) using the REST API (api.teltel.io). Includes bulk send, delivery report, and bulk sms.
通过 TelTel (teltel.io) 的 REST API (api.teltel.io) 发送短信,支持批量发送、送达报告和批量短信功能。
teltel-call-center
开发者工具 clawhub v1.0.1 1 版本 99716.2 Key: 需要
★ 0
Stars
📥 1,757
下载
💾 12
安装
1
版本
#latest

概述

Use the bundled Node scripts to send SMS via the TelTel API.

Before you use the skill (TelTel prerequisites)

1) Register at https://www.teltel.io/

2) Add funds / credit to your TelTel account

3) From the TelTel SMS section, send a test SMS first to confirm your sender name/phone is accepted/verified

4) In TelTel Settings, find your API key

5) Enjoy

Configure from the OpenClaw Skills panel

API key field (shown in the Skills UI)

This skill declares TELTEL_API_KEY as its primary env var, so the OpenClaw Skills UI can show an API key input for it.

Under the hood it maps to:

  • skills.entries.teltel-send-sms-text-message.apiKeyTELTEL_API_KEY

Default sender

Set a default sender name/number (used when you do not pass --from):

  • skills.entries.teltel-send-sms-text-message.env.TELTEL_SMS_FROM

Configure via environment variables (alternative)

  • TELTEL_API_KEY (required)
  • TELTEL_SMS_FROM (optional) — default sender name/number
  • TELTEL_BASE_URL (optional) — defaults to https://api.teltel.io/v2

Send a single SMS

node {baseDir}/scripts/send_sms.js \
  --to "+3712xxxxxxx" \
  --message "Hello from TelTel" \
  --from "37167881855"

If you omit --from, the script uses TELTEL_SMS_FROM.

Dry-run (prints URL + payload, does not send):

node {baseDir}/scripts/send_sms.js \
  --dry-run \
  --to "+37111111111" \
  --message "test" \
  --from "37167881855"

Send bulk SMS

node {baseDir}/scripts/send_sms_bulk.js \
  --from "37167881855" \
  --to "+3712...,+1..." \
  --message "Hello everyone"

The --to list can be comma/newline/semicolon separated.

API details (for reference)

  • Base URL: https://api.teltel.io/v2
  • Single SMS: POST /sms/text
  • JSON body: { "data": { "from": "...", "to": "+...", "message": "...", "callback": "https://..."? } }
  • Bulk SMS: POST /sms/bulk/text
  • JSON body: { "data": { "from": "...", "to": ["+...", "+..."], "message": "...", "callback": "https://..."? } }

Notes:

  • to must be in international format.

版本历史

共 1 个版本

  • v1.0.1 当前
    2026-03-28 21:45 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

developer-tools

Gog

steipete
Google Workspace 命令行工具,支持 Gmail、日历、云端硬盘、通讯录、表格和文档。
★ 921 📥 185,771
developer-tools

Github

steipete
使用 `gh` CLI 与 GitHub 交互,通过 `gh issue`、`gh pr`、`gh run` 和 `gh api` 管理议题、PR、CI 运行及高级查询。
★ 668 📥 324,006
developer-tools

Agent Browser

matrixy
专为AI智能体优化的无头浏览器自动化CLI,支持无障碍树快照和基于引用的元素选择。
★ 427 📥 118,128