SkillAgentSearch skills...

Insta.js

๐Ÿ’ฌ Object-oriented library for sending and receiving messages via Instagram

Install / Use

/learn @Androz2091/Insta.js
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

<img width="150" height="150" align="left" style="float: left; margin: 0 10px 0 0;" alt="Xiao" src="https://i.goopics.net/PO1L4.png">

Insta.js

๐Ÿ’ฌ Object-oriented library to interact with Instagram! Based on instagram-private-api, it is very similiar to discord.js.

Installation

npm install @androz2091/insta.js

Example

Here is a simple ping command made with the library:

const Insta = require('@androz2091/insta.js');

const client = new Insta.Client();

client.on('connected', () => {
    console.log(`Logged in as ${client.user.username}`);
});

client.on('messageCreate', (message) => {
    if (message.author.id === client.user.id) return

    message.markSeen();

    if (message.content === '!ping') {
        message.reply('!pong');
    }
});

client.login('username', 'password');

Links

Credits

๐Ÿงก Big thanks to Nerixyz and dilame for their libraries.

View on GitHub
GitHub Stars142
CategoryDevelopment
Updated18d ago
Forks41

Languages

JavaScript

Security Score

80/100

Audited on Mar 16, 2026

No findings