โ† All skills
Tencent SkillHub ยท Developer Tools

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.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Send SMS text messages via TelTel (teltel.io) using the REST API (api.teltel.io). Includes bulk send, delivery report, and bulk sms.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
scripts/send_sms.js, scripts/send_sms_bulk.js, SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.1

Documentation

ClawHub primary doc Primary doc: SKILL.md 7 sections Open source page

Before you use the skill (TelTel prerequisites)

Register at https://www.teltel.io/ Add funds / credit to your TelTel account From the TelTel SMS section, send a test SMS first to confirm your sender name/phone is accepted/verified In TelTel Settings, find your API key Enjoy

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.apiKey โ†’ TELTEL_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.

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Scripts1 Docs
  • SKILL.md Primary doc
  • scripts/send_sms_bulk.js Scripts
  • scripts/send_sms.js Scripts