Access Our API!

We allow developers to access our Instagram API. All data is transmitted as JSON as expected. We do not keep track of any API usage history. All profiles, stories, posts, highlights you will be fetching using our API will be fully anonymous. We do keep track of how many requests are done though.

Send us an email at [email protected] if you are interested for price negotiations.

Example:

Here's some dummy responses to expect from our API.

1. Getting user profile: GET /user/:username
{
	id, 
	username, 
	fullName, 
	bio, 
	followerCount, 
	followingCount, 
	postCount, 
	profilePicUrl, 
	hdProfilePicUrl, 
	isPrivate
}
2. Getting stories: GET /stories/:username
[{
	createdAt, 
	width, 
	height, 
	imageUrl, 
	videoUrl
}]
3. Getting highlights: GET /highlights/:userId
[{
	id, 
	title, 
	image
}]
4. Getting highlight stories: GET /highlightStories/:highlightId
[{
	createdAt, 
	width, 
	height, 
	imageUrl, 
	videoUrl
}]
5. Getting a post: GET /post/:postId
[{
	title, 
	commentCount, 
	likeCount, 
	username, 
	createdAt, 
	thumbUrl, 
	url, 
	type
}]

All requests use GET method, not POST method. We just like it that way. The API key is inserted in the headers. Reach out to us if you are interested to try it out!