1.0.23 • Published 4 months ago
majidapi v1.0.23
MajidAPI - Majid WebService
Install
npm i majidapi --save
Website
Telegram
Telegram Support
List of APIs:
- GPT
- Text To Speech
- Speech To Text
- AI Image Generator
- TikTok
- Google Translate
- NumberBook
- TempMail
- Spotify
- SoundCloud
- X Downloader
- Logo
- QRCode Creation
- GooglePlay
- Card number inquiry
- Digikala
- Torob
- AkharinKhabar
- Movies and series FilmRail
- Melodify
- Bonbast
- Gold Price
- Mobile Price
- Car Price
- BitPin Crypto Currency Price
- Fal
- Joke
- Aparat
- Weather
- Myket
- Captcha
- Mopon
- Dictionary of Dehkhoda
- Dictionary of names
- Estekhareh
- DateTime
- Drug information
- Crypto News
- Farsroid
- Tabir Khab
- Cooking
- BirthDate
- Football360
const {instagram} = require("majidapi/modules/social");
// Download with link
instagram({
method: "download",
url: "(Post-Reels-Story-Profile-Highlight) URL"
}).then(console.log);
// Download profile
instagram({
method: "profile",
username: "instagram"
}).then(console.log);
// Download stories
instagram({
method: "stories",
username: "instagram"
}).then(console.log);
// Download highlights
instagram({
method: "highlights",
username: "instagram"
}).then(console.log);
// Download highlight
instagram({
method: "highlight",
highlightId: "highlight:id"
}).then(console.log);
GPT
const {gpt} = require("majidapi/modules/ai");
// GPT 3
gpt({
model: "3",
question: "hello how are you?"
}).then(console.log);
// GPT 3.5 turbo
gpt({
model: "3.5",
question: "hello how are you?"
}).then(console.log);
Text To Speech
const {tts} = require("majidapi/modules/tools");
// Text To Speech
tts({
gender: "woman", // woman - man
text: "Your text ..."
}).then(console.log);
TikTok
const {tiktok} = require("majidapi/modules/social");
// Download
tiktok({
method: "download",
url: "TikTok url ..."
}).then(console.log);
// Profile
tiktok({
method: "profile",
username: "Username of TikTok user"
}).then(console.log);
NumberBook
const {numberBook} = require("majidapi/modules/inquiry");
// Number Book
numberBook({
phoneNumber: "mobile number"
}).then(console.log);
Card number inquiry
const {card, sheba} = require("majidapi/modules/inquiry");
// Card number inquiry
card({
cardNumber: "16-digit card number"
}).then(console.log);
// Sheba number inquiry
sheba({
sheba: "IR000000000000000000000000"
}).then(console.log);
Digikala
const {digikala} = require("majidapi/modules/shopping");
// Home
digikala({
method: "home"
}).then(console.log);
// Categories
digikala({
method: "categories"
}).then(console.log);
// Receive by category
digikala({
method: "category",
categoryId: "1",
page: 1
}).then(console.log);
// Search
digikala({
method: "search",
search: "s25", // product name
page: 1
}).then(console.log);
// Product specifications
digikala({
method: "product",
productId: "Product ID"
}).then(console.log);
Torob
const {torob} = require("majidapi/modules/shopping");
// Categories
torob({
method: "categories"
}).then(console.log);
// Receive by category
torob({
method: "category",
categoryId: "1",
page: 1
}).then(console.log);
// Search
torob({
method: "search",
search: "s25", // product name
page: 1
}).then(console.log);
// Product specifications
torob({
method: "product",
productId: "Product ID"
}).then(console.log);
AkharinKhabar
const {akharinKhabar} = require("majidapi/modules/news");
// Categories
akharinKhabar({
method: "categories"
}).then(console.log);
// Receive by category
akharinKhabar({
method: "category",
categoryId: "0",
page: 1
}).then(console.log);
// Latest news
akharinKhabar({
method: "latest",
page: 1
}).then(console.log);
// Description of the news
akharinKhabar({
method: "details",
newsId: "News ID"
}).then(console.log);
Movies and series FilmRail
const {filmRail} = require("majidapi/modules/movie");
// Home page information
filmRail({
method: "home"
}).then(console.log);
// Get the list of movies
filmRail({
method: "movies",
page: 1
}).then(console.log);
// Get the list of series
filmRail({
method: "series",
page: 1
}).then(console.log);
// Search for movies and series
filmRail({
method: "search",
search: "The name of the movie or series"
}).then(console.log);
// Specifications and download
filmRail({
method: "details",
id: "Movie ID"
}).then(console.log);
Melodify
const {melodify} = require("majidapi/modules/music");
// The latest
melodify({
method: "newest",
page: 1
}).then(console.log);
// Mixes
melodify({
method: "mix",
page: 1
}).then(console.log);
// The most popular
melodify({
method: "popular",
page: 1
}).then(console.log);
// Instagram trends
melodify({
method: "instatrend",
page: 1
}).then(console.log);
// Song search
melodify({
method: "search",
search: "song name",
page: 1
}).then(console.log);
// Download
melodify({
method: "download",
trackId: "Track ID",
out: "track.mp3"
}).then(console.log);
Bonbast
const {bonbast} = require("majidapi/modules/price");
// Bonbast
bonbast().then(console.log);
Gold Price
const {gold} = require("majidapi/modules/price");
// Gold
gold().then(console.log);
Mobile Price
const {mobile} = require("majidapi/modules/price");
// Mobile
mobile({
model: "s25"
}).then(console.log);
TempMail
const {tempMail} = require("majidapi/modules/tools");
// Create a new email
tempMail({
method: "new"
}).then(console.log);
// Receive messages
tempMail({
method: "messages",
email: "The email address you got from the 'new' method"
}).then(console.log);
Spotify
const {spotify} = require("majidapi/modules/music");
// Download from Spotify
spotify({
url: "https://open.spotify.com/track/...",
out: "track.mp3"
}).then(console.log);
Car Price
const {car} = require("majidapi/modules/price");
// Price list
car({
method: "list"
}).then(console.log);
// Get the description
car({
method: "info",
id: "Car ID"
}).then(console.log);
BitPin Crypto Currency Price
const {bitpin} = require("majidapi/modules/price");
// Get rates
bitpin().then(console.log);
QRCode Creation
const {qrcode} = require("majidapi/modules/tools");
// QRCode
qrcode({
text: "Hello",
size: 512,
out: "qrcode.png"
}).then(console.log);
const {pinterest} = require("majidapi/modules/social");
// Search
pinterest({
method: "search",
search: "Mobile"
}).then(console.log);
// Download Video
pinterest({
method: "download",
url: "https://pin.it/..."
}).then(console.log);
Google Translate
const {googleTranslate} = require("majidapi/modules/tools");
// Translate
googleTranslate({
text: "سلام",
to: "en"
}).then(console.log);
Fal
const {fal} = require("majidapi/modules/fun");
fal({
type: "text" // text or photo
}).then(console.log);
Joke
const {joke} = require("majidapi/modules/fun");
joke().then(console.log);
Logo
const {ePhoto} = require("majidapi/modules/image");
// Making a logo
ePhoto({
text: "MajidAPI"
}).then(console.log);
X Downloader
const {x} = require("majidapi/modules/social");
// Download
x({
videoUrl: "x.com video url"
}).then(console.log);
GooglePlay
const {googlePlay} = require("majidapi/modules/googlePlay");
// Search
googlePlay({
method: "search",
search: "vpn"
}).then(console.log);
// Download
googlePlay({
method: "download",
search: "Google play app url"
}).then(console.log);
Aparat
const {aparat} = require("majidapi/modules/vide");
// Home
aparat({
method: "home"
}).then(console.log);
// Categories
aparat({
method: "categories"
}).then(console.log);
// Category
aparat({
method: "category",
catid: "Category ID",
page: 1
}).then(console.log);
// Search
aparat({
method: "search",
search: "Music"
}).then(console.log);
// Info & Download
aparat({
method: "download",
uid: "Video ID (uid)"
}).then(console.log);
Weather
const {weather} = require("majidapi/modules/tools");
// Weather
weather({
city: "tehran"
}).then(console.log);
Myket
const {myket} = require("majidapi/modules/myket");
// Search
myket({
method: "search",
search: "App Name"
}).then(console.log);
// Info & Download
myket({
method: "info",
packageName: "App Package Name"
}).then(console.log);
Captcha
const {captcha} = require("majidapi/modules/tools");
// Captcha generation
captcha({
length: 10
}).then(console.log);
SoundCloud
const {soundCloud} = require("majidapi/modules/music");
// Search
soundCloud({
method: "search",
search: "Shayea"
}).then(console.log);
// Info
soundCloud({
method: "info",
url: "https://soundcloud.com/aslistream/too-ragi"
}).then(console.log);
// Info
soundCloud({
method: "download",
url: "https://soundcloud.com/aslistream/too-ragi"
}).then(console.log);
Mopon
const {mopon} = require("majidapi/modules/shopping");
// Home
mopon({
method: "home"
}).then(console.log);
// Categories
mopon({
method: "categories"
}).then(console.log);
// Category
mopon({
method: "category",
id: "zQoGQ",
page: 1
}).then(console.log);
// Search
mopon({
method: "search",
search: "دیجی کالا",
page: 1
}).then(console.log);
// Info
mopon({
method: "info",
id: "brkmG"
}).then(console.log);
Dictionary of Dehkhoda
const {dehkhoda} = require("majidapi/modules/dictionary");
// Dehkhoda
dehkhoda({
word: "مجید"
}).then(console.log);
Dictionary of names
const {names} = require("majidapi/modules/dictionary");
// Names
names({
name: "مجید"
}).then(console.log);
Estekhareh
const {estekhareh} = require("majidapi/modules/fun");
// Estekhareh
estekhareh().then(console.log);
DateTime
const {dateTime} = require("majidapi/modules/tools");
// Date & Time
dateTime({
timeZone: "Asia/Tehran"
}).then(console.log);
Drug information
const {darooyab} = require("majidapi/modules/drug");
// Search
darooyab({
method: "search",
search: "ملاتونین"
}).then(console.log);
// Info
darooyab({
method: "info",
url: "The link you got from the search method"
}).then(console.log);
Crypto News
const {crypto} = require("majidapi/modules/news");
// List
crypto({
method: "list",
page: 1
}).then(console.log);
// Info
crypto({
method: "info",
link: "The link you got from the search method"
}).then(console.log);
AI Image Generator
const {image} = require("majidapi/modules/ai");
// Text To Image
image({
prompt: "a cute cat"
}).then(console.log);
Farsroid
const {farsroid} = require("majidapi/modules/farsroid");
// Search
farsroid({
method: "search",
search: "AI",
page: 1
}).then(console.log);
// Download
farsroid({
method: "download",
url: "The url you got from the previous method"
}).then(console.log);
Tabir Khab
const {tabirKhab} = require("majidapi/modules/fun");
// Tabir Khab
tabirKhab({
word: "مار"
}).then(console.log);
Cooking
const {cooking} = require("majidapi/modules/fun");
// Home
cooking({
method: "home",
page: 1
}).then(console.log);
// Search
cooking({
method: "search",
search: "سوخاری"
}).then(console.log);
// Info
cooking({
method: "info",
url: "The url you got from the previous method"
}).then(console.log);
Speech To Text
const {stt} = require("majidapi/modules/ai");
// STT
stt({
audioURL: "MP3 URL ..."
}).then(console.log);
BirthDate
const {birthDate} = require("majidapi/modules/fun");
// BithDate Info
birthDate({
year: "1380",
month: "01",
day: "01"
}).then(console.log);
const {facebook} = require("majidapi/modules/social");
// Download video
facebook({
url: "The facebook video url"
}).then(console.log);
Football360
const {football360} = require("majidapi/modules/sport");
// List of competitions
football360({
method: "competitions"
}).then(console.log);
// Competition info
football360({
method: "competition",
id: "The ID you got from the previous method"
}).then(console.log);
// Posts
football360({
method: "posts",
page: 1
}).then(console.log);
// Post
football360({
method: "post",
id: "The ID you got from the previous method"
}).then(console.log);
// Live results
football360({
method: "live"
}).then(console.log);
1.0.23
4 months ago
1.0.22
4 months ago
1.0.21
4 months ago
1.0.20
4 months ago
1.0.19
4 months ago
1.0.18
4 months ago
1.0.17
4 months ago
1.0.16
4 months ago
1.0.15
4 months ago
1.0.14
4 months ago
1.0.13
4 months ago
1.0.12
4 months ago
1.0.11
4 months ago
1.0.10
4 months ago
1.0.9
4 months ago
1.0.8
4 months ago
1.0.7
4 months ago
1.0.6
4 months ago
1.0.5
4 months ago
1.0.4
4 months ago
1.0.3
5 months ago
1.0.2
5 months ago
1.0.1
5 months ago
1.0.0
5 months ago