@abhidevofficial/simple-apis
v1.1.11
Published
Simple and useful apis for developers.
Downloads
29
Readme
Simple APIs
Simple and useful apis for developers.
Get Started:
> npm install @abhidevofficial/simple-apis
const simpleApis = require('@abhidevofficial/simple-apis')
APIs
Download posts from instagram using its url:
let url = 'https://www.instagram.com/p/....../?igshid=.....='
let post = simpleApis.igPostDownload(url);
console.log(post);
Download story from instagram using username:
let username = '_abhi.76_'
let story = simpleApis.igStoryDownload(username);
console.log(story);
Get direct WhatsApp Chat URL ( wa.me link generator ):
let number = '91xxxx' // Required: Enter WhatsApp number with country code ( OMIT SYMBOLS LIKE PLUS, HYPHENS AND BRACKETS )
let text = 'Hey' // Optional: Prefillied message
let result = simpleApis.generateWaChatUrl(number, text);
console.log(result);
// Returns:
// https://wa.me/91xxxx?text=Hey
Thank You:
Thank You for using @abhidevofficial/simple-apis!
Please feel free to give a STAR 🌟 for our @abhidevofficial/simple-apis.