@jerrycoder/instagram-api 2.5.8 โ 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 +26 -18
- 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,15 +30,15 @@ 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
|
|
|
36
|
-
๐ก Response Example
|
|
37
|
-
```
|
|
40
|
+
## ๐ก Response Example
|
|
41
|
+
```json
|
|
38
42
|
{
|
|
39
43
|
"status": "success",
|
|
40
44
|
"data": {
|
|
@@ -49,7 +53,7 @@ console.log(data);
|
|
|
49
53
|
Create file:
|
|
50
54
|
/api/instagram.js
|
|
51
55
|
|
|
52
|
-
```
|
|
56
|
+
```js
|
|
53
57
|
import { instagram } from "@jerrycoder/instagram-api";
|
|
54
58
|
|
|
55
59
|
export default async function handler(req, res) {
|
|
@@ -81,7 +85,8 @@ export default async function handler(req, res) {
|
|
|
81
85
|
|
|
82
86
|
## ๐ API Usage (after deploy)
|
|
83
87
|
|
|
84
|
-
|
|
88
|
+
Example:
|
|
89
|
+
`https://your-domain.vercel.app/api/instagram?url=INSTAGRAM_URL`
|
|
85
90
|
|
|
86
91
|
|
|
87
92
|
## โ ๏ธ Notes
|
|
@@ -94,31 +99,34 @@ Depends on external API availability
|
|
|
94
99
|
|
|
95
100
|
## ๐ ๏ธ Features
|
|
96
101
|
|
|
97
|
-
|
|
102
|
+
- โก Fast response
|
|
98
103
|
|
|
99
|
-
|
|
104
|
+
- ๐ฅ Download Reels / Posts / Stories
|
|
100
105
|
|
|
101
|
-
|
|
106
|
+
- ๐ Simple API structure
|
|
102
107
|
|
|
103
|
-
|
|
108
|
+
- ๐งฉ Works with CommonJS & ESM
|
|
104
109
|
|
|
105
110
|
|
|
106
111
|
## ๐ Security
|
|
107
112
|
|
|
108
|
-
This package
|
|
109
|
-
|
|
113
|
+
This package uses the official API:
|
|
114
|
+
|
|
115
|
+
๐ [JerryCoder API](https://jerrycoder.oggyapi.workers.dev)
|
|
110
116
|
|
|
111
117
|
- No personal data is collected
|
|
112
|
-
- No tracking
|
|
113
|
-
-
|
|
118
|
+
- No tracking or analytics
|
|
119
|
+
- Only used to fetch public Instagram media
|
|
114
120
|
|
|
115
121
|
|
|
116
122
|
## ๐งช Status
|
|
117
123
|
|
|
118
|
-
|
|
124
|
+
- โ
Fully Tested on Node.js & Vercel
|
|
119
125
|
|
|
120
|
-
|
|
126
|
+
- ๐ Version: 2.5.9 (Latest)
|
|
121
127
|
|
|
122
128
|
|
|
123
129
|
## ๐ License
|
|
124
130
|
MIT License ยฉ JerryCoder
|
|
131
|
+
|
|
132
|
+
> ๐ Simple & fast Instagram downloader API for Node.js and Vercel
|
package/package.json
CHANGED