Tokenless, butthurtless private API for Instagram. Get account information, media, explore tags and user feed without any applications and other crap. This wrapper provides basic media from instagram, some of them even without authorization. Note that: there is a simple Instagram API based on web-version of Instagram. This repository based on Instagram API for mobile devices.
Build with dotnet core. Can be used on Mac, Linux, Windows.
Use library as dll, reference from nuget or clone source code.
var api = new InstaApiBuilder()
.UseLogger(new SomeLogger())
.UseHttpClient(new SomeHttpClient())
.SetUser(new UserCredentials(...You user...))
.Build();
bool loggedIn = api.Login();
InstaUser user = api.GetUser();
InstaMediaList media = api.GetUserMedia();
InstaMedia mediaItem = api.GetMediaByCode(mediaCode);
InstaFeed feed = api.GetUserFeed();
MIT
- Provided project MUST NOT be used for marketing purposes
- I will not provide support to anyone who wants this API to send massive messages/likes/follows and so on
- Use this API at your own risk
This code is in no way affiliated with, authorized, maintained, sponsored or endorsed by Instagram or any of its affiliates or subsidiaries. This is an independent and unofficial API.