https://github.com/oscarmorrison/getstagram
public api for instagram
https://github.com/oscarmorrison/getstagram
Last synced: about 1 year ago
JSON representation
public api for instagram
- Host: GitHub
- URL: https://github.com/oscarmorrison/getstagram
- Owner: oscarmorrison
- License: mit
- Created: 2016-06-16T21:07:24.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2022-12-10T20:13:20.000Z (over 3 years ago)
- Last Synced: 2024-04-14T13:15:14.805Z (about 2 years ago)
- Language: JavaScript
- Homepage: http://getstagram.heroku.com/tag/getstagram
- Size: 61.5 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# getstagram
public api for instagram
**_Disclaimer_**
_getstagram is an expirimental API, and is not to be consumed for public or commercial use. getstagram is in no way affiliated with instagram, facebook or any other related entities._
## Endpoints
**Get**
Tag images Request
http://getstagram.herokuapp.com/tag/:tag
**Get**
User profile images Request
http://getstagram.herokuapp.com/user/:username
*example*
http://getstagram.heroku.com/tag/instadaily
Response
```
{
posts: [
{
date: date,
caption: string,
dimensions: {
width: number,
height: number
},
likes: {
count: number
},
thumbnail_src: string,
is_video: bool,
display_src: string,
link: string
}
]
}
```