New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

stackverify

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stackverify

Node.js SDK for StackVerify API (SMS, Email, WhatsApp)

latest
npmnpm
Version
2.0.0
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

StackVerify SDK

A simple Node.js SDK to interact with the StackVerify API for sending SMS and checking message status.

Installation

npm install stackverify

Usage

Get your apikey .

  • @stackverify
import StackVerify from "stackverify";

// Initialize the SDK
const stack = new StackVerify({ apiKey: "YOUR_API_KEY" });

// Send an SMS and check status
async function main() {
  try {
    const response = await stack.sendSMS({
      recipients: ["+1234567890"], // array of phone numbers
      body: "Hello! This is a test message.",
      sender_id: "SMS"
    });
    console.log("SMS sent:", response);

    const status = await stack.getSMSStatus(response.message_id);
    console.log("SMS status:", status);

  } catch (err) {
    console.error("Error:", err.message);
  }
}

main();

Api

new StackVerify({ apiKey, baseUrl })

apiKey (string) — Your StackVerify API key (required)

baseUrl (string) — API base URL (default: https://stackverify.site/api/v1)

sendSMS({ recipients, body, sender_id })

Send an SMS.

recipients — array of phone numbers (required)

body — SMS message text (required)

sender_id — your sender ID (required)

getSMSStatus(messageId)

Get the status of a sent message.

messageId — ID returned by sendSMS (required)

Badges

MIT License GPLv3 License AGPL License

Authors

linkedin twitter

Keywords

stackverify

FAQs

Package last updated on 28 Dec 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts