@jerrycoder/instagram-api 2.5.7 โ 2.5.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +37 -16
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
|
+

|
|
2
|
+

|
|
3
|
+

|
|
4
|
+
|
|
1
5
|
# @jerrycoder/instagram-api
|
|
2
6
|
|
|
3
7
|
Unofficial Instagram Downloader API โ fetch Reels, Posts, Stories using JerryCoder API.
|
|
4
8
|
|
|
5
9
|
|
|
6
10
|
## ๐ API Website
|
|
7
|
-
[
|
|
11
|
+
[Official API Endpoint](https://jerrycoder.oggyapi.workers.dev)
|
|
8
12
|
|
|
9
13
|
|
|
10
14
|
## ๐ Installation
|
|
@@ -13,10 +17,10 @@ Unofficial Instagram Downloader API โ fetch Reels, Posts, Stories using JerryC
|
|
|
13
17
|
npm install @jerrycoder/instagram-api
|
|
14
18
|
```
|
|
15
19
|
|
|
16
|
-
โก Quick Usage
|
|
20
|
+
## โก Quick Usage
|
|
17
21
|
|
|
18
22
|
## โ
CommonJS (Node.js)
|
|
19
|
-
```
|
|
23
|
+
```js
|
|
20
24
|
const { instagram } = require("@jerrycoder/instagram-api");
|
|
21
25
|
|
|
22
26
|
(async () => {
|
|
@@ -26,19 +30,30 @@ const { instagram } = require("@jerrycoder/instagram-api");
|
|
|
26
30
|
```
|
|
27
31
|
|
|
28
32
|
## โ
ESM / Modern JS
|
|
29
|
-
```
|
|
33
|
+
```js
|
|
30
34
|
import { instagram } from "@jerrycoder/instagram-api";
|
|
31
35
|
|
|
32
36
|
const data = await instagram("https://www.instagram.com/reel/xxxxx/");
|
|
33
37
|
console.log(data);
|
|
34
38
|
```
|
|
35
39
|
|
|
40
|
+
## ๐ก Response Example
|
|
41
|
+
```json
|
|
42
|
+
{
|
|
43
|
+
"status": "success",
|
|
44
|
+
"data": {
|
|
45
|
+
"type": "https://...",
|
|
46
|
+
"url": "https://..."
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
```
|
|
50
|
+
|
|
36
51
|
## โ๏ธ Deploy on Vercel (API Endpoint)
|
|
37
52
|
|
|
38
53
|
Create file:
|
|
39
54
|
/api/instagram.js
|
|
40
55
|
|
|
41
|
-
```
|
|
56
|
+
```js
|
|
42
57
|
import { instagram } from "@jerrycoder/instagram-api";
|
|
43
58
|
|
|
44
59
|
export default async function handler(req, res) {
|
|
@@ -70,7 +85,8 @@ export default async function handler(req, res) {
|
|
|
70
85
|
|
|
71
86
|
## ๐ API Usage (after deploy)
|
|
72
87
|
|
|
73
|
-
|
|
88
|
+
Example:
|
|
89
|
+
`https://your-domain.vercel.app/api/instagram?url=INSTAGRAM_URL`
|
|
74
90
|
|
|
75
91
|
|
|
76
92
|
## โ ๏ธ Notes
|
|
@@ -78,34 +94,39 @@ URL must be a valid Instagram post/reel/story
|
|
|
78
94
|
|
|
79
95
|
Private content is not supported
|
|
80
96
|
|
|
97
|
+
Depends on external API availability
|
|
98
|
+
|
|
81
99
|
|
|
82
100
|
## ๐ ๏ธ Features
|
|
83
101
|
|
|
84
|
-
|
|
102
|
+
- โก Fast response
|
|
85
103
|
|
|
86
|
-
|
|
104
|
+
- ๐ฅ Download Reels / Posts / Stories
|
|
87
105
|
|
|
88
|
-
|
|
106
|
+
- ๐ Simple API structure
|
|
89
107
|
|
|
90
|
-
|
|
108
|
+
- ๐งฉ Works with CommonJS & ESM
|
|
91
109
|
|
|
92
110
|
|
|
93
111
|
## ๐ Security
|
|
94
112
|
|
|
95
|
-
This package
|
|
96
|
-
|
|
113
|
+
This package uses the official API:
|
|
114
|
+
|
|
115
|
+
๐ [JerryCoder API](https://jerrycoder.oggyapi.workers.dev)
|
|
97
116
|
|
|
98
117
|
- No personal data is collected
|
|
99
|
-
- No tracking
|
|
100
|
-
-
|
|
118
|
+
- No tracking or analytics
|
|
119
|
+
- Only used to fetch public Instagram media
|
|
101
120
|
|
|
102
121
|
|
|
103
122
|
## ๐งช Status
|
|
104
123
|
|
|
105
|
-
|
|
124
|
+
- โ
Fully Tested on Node.js & Vercel
|
|
106
125
|
|
|
107
|
-
|
|
126
|
+
- ๐ Version: 2.5.9 (Latest)
|
|
108
127
|
|
|
109
128
|
|
|
110
129
|
## ๐ License
|
|
111
130
|
MIT License ยฉ JerryCoder
|
|
131
|
+
|
|
132
|
+
> ๐ Simple & fast Instagram downloader API for Node.js and Vercel
|
package/package.json
CHANGED