npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

tempnumber

v1.3.8

Published

temp-number.org SMS Javascript SDK

Downloads

9

Readme

tempnumber

Tempnumber - JavaScript client for tempnumber

About

Get temporary mobile numbers and receive SMS with API for online accounts verification and QA tests.

  • Temporary phone number in more than 150 countries.
  • Thousands of listed services.
  • Get SMS for not listed services as well.

Most of TempNumber phone numbers are real mobile numbers (not virtual) coming from physical SIM cards. This greatly increases chances to receive SMS for online account verification. You can find out more about the service at https://temp-number.org.

API docs and OpenAPI specs

Basic usage

Get number and receive SMS

  1. Get temporary mobile phone number by sending POST request to /activations while passing both service and country as request parameters. For example, in order to request activation code for Facebook using Germany phone number set:

    {
        "serviceId": "facebook",
        "countryId": "us"
    }

    In response you will get:

    • activation id
    • phone number
    {
        "id": 12312,
        "number": 18454123223
    }
  2. Use phone number to send SMS from service

  3. Get SMS by sending GET request to /acivations/<activation_id>. Continue polling endpoint while status=smsRequested or retryRequested until you get sms. Please, note that rate limits applies (see below).

    {
        "id": 12312,
        "status": "smsReceived",
        "message": "Thanks for activation. Your activation code is: 5678",
        "code": 5678
    }

Balance management

  1. Top up your funds balance through UI:
  2. Check balance by sending request to GET /user/balance

Pricing

Get price list by sending GET request to either:

  • /pricelistByService OR
  • /pricelistByCountry

In response you will get price for each service in each country.

Authentication

You must send your API key in x-api-key header for each request. To get your API key

  1. Login into your account.
  2. In side menu, click on API button.
  3. Generate your API key.

Servers

All requests are relative to following base URLs:

| Base URL | Environment name | Description | | --- | --- | --- | | https://tn-api.com/api/v1 | production | | | https://mock.temp-number.org/v1 | mock | Free of charge. No funds required. Currently only GET requests supported. |

Rate limits

We have two types of rate limits:

  1. SMS delivery per service per country
  2. API requests per endpoint

Delivery rate limit

We require at least 7% from all activations per service per country to receive sms. We start to calculate delivery rate limit after 5-th activation. This limit is required to guard against all numbers being "burned" without actually being used. Delivery Rate limit resets each 24 hours.

Example: 100 activations requested for Whatsapp in Germany but only 1 activation got sms. This is 1% delivery success rate. No more activations allowed in 24 hours to Whatsapp in Netherland.

API requests rate limit

In order to protect service from excessive use whether intended or unintended we are rate limiting request to API endpoints to maintain service availability. Rates apply to each endpoint separately.

| endpoint | method | rate | | --- | --- | --- | | /activations | GET | 10 request per minute | | /activations | POST | 80 requests per 2 minutes | | /activations/:activation_id | GET | 80 requests per 2 minutes | | /activations | PUT | 10 requests per minute | | /services/:serviceId/countries/:countryId | GET | 80 requests per 2 minutes | | /services/pricelistByService | GET | 3 requests per minute | | /services/pricelistByCountry | GET | 3 requests per minute | | /user/balance | GET | 10 requests per minute |

Client SDK

Official

Community contributed clients


This SDK is automatically generated by the OpenAPI Generator project:

Installation

For Node.js

npm

To publish the library as a npm, please follow the procedure in "Publishing npm packages".

Then install it via:

npm install tempnumber --save

Finally, you need to build the module:

npm run build
Local development

To use the library locally without publishing to a remote npm registry, first install the dependencies by changing into the directory containing package.json (and this README). Let's call this JAVASCRIPT_CLIENT_DIR. Then run:

npm install

Next, link it globally in npm with the following, also from JAVASCRIPT_CLIENT_DIR:

npm link

To use the link you just defined in your project, switch to the directory you want to use your tempnumber from, and run:

npm link /path/to/<JAVASCRIPT_CLIENT_DIR>

Finally, you need to build the module:

npm run build

git

If the library is hosted at a git repository, e.g.https://github.com/GIT_USER_ID/GIT_REPO_ID then install it via:

    npm install GIT_USER_ID/GIT_REPO_ID --save

For browser

The library also works in the browser environment via npm and browserify. After following the above steps with Node.js and installing browserify with npm install -g browserify, perform the following (assuming main.js is your entry file):

browserify main.js > bundle.js

Then include bundle.js in the HTML pages.

Webpack Configuration

Using Webpack you may encounter the following error: "Module not found: Error: Cannot resolve module", most certainly you should disable AMD loader. Add/merge the following section to your webpack config:

module: {
  rules: [
    {
      parser: {
        amd: false
      }
    }
  ]
}

Getting Started

Please follow the installation instruction and execute the following JS code:

var Tempnumber = require('tempnumber');

var defaultClient = Tempnumber.ApiClient.instance;
// Configure API key authorization: apikey_auth
var apikey_auth = defaultClient.authentications['apikey_auth'];
apikey_auth.apiKey = "YOUR API KEY"
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//apikey_auth.apiKeyPrefix['x-api-key'] = "Token"

var api = new Tempnumber.ActivationApi()
var activationId = 25687; // {Number} ID of activation
api.getActivation(activationId).then(function(data) {
  console.log('API called successfully. Returned data: ' + data);
}, function(error) {
  console.error(error);
});

Documentation for API Endpoints

All URIs are relative to https://tn-api.com/api/v1

Class | Method | HTTP request | Description ------------ | ------------- | ------------- | ------------- Tempnumber.ActivationApi | getActivation | GET /activations/{activation_id} | Get activation data Tempnumber.ActivationApi | getActivationsHistory | GET /activations | Get activations history Tempnumber.ActivationApi | newActivation | POST /activations | Request new activation Tempnumber.ActivationApi | updateActivation | PUT /activations/{activation_id} | Retry activation with new sms Tempnumber.ServicesApi | getPricelistByCountry | GET /services/pricelistByCountry | Get pricelist by countries Tempnumber.ServicesApi | getPricelistByService | GET /services/pricelistByService | Get pricelist by services Tempnumber.ServicesApi | getSingleService | GET /services/{service_id}/countries/{country_id} | Get single service price and availability in specific country Tempnumber.UserApi | getUserBalance | GET /user/balance | Get user's balance

Documentation for Models

Documentation for Authorization

apikey_auth

  • Type: API key
  • API key parameter name: x-api-key
  • Location: HTTP header