@jerrycoder/instagram-api 2.5.7 → 2.5.8
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 +14 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -33,6 +33,17 @@ const data = await instagram("https://www.instagram.com/reel/xxxxx/");
|
|
|
33
33
|
console.log(data);
|
|
34
34
|
```
|
|
35
35
|
|
|
36
|
+
📡 Response Example
|
|
37
|
+
```bash
|
|
38
|
+
{
|
|
39
|
+
"status": "success",
|
|
40
|
+
"data": {
|
|
41
|
+
"type": "https://...",
|
|
42
|
+
"url": "https://..."
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
```
|
|
46
|
+
|
|
36
47
|
## ☁️ Deploy on Vercel (API Endpoint)
|
|
37
48
|
|
|
38
49
|
Create file:
|
|
@@ -78,6 +89,8 @@ URL must be a valid Instagram post/reel/story
|
|
|
78
89
|
|
|
79
90
|
Private content is not supported
|
|
80
91
|
|
|
92
|
+
Depends on external API availability
|
|
93
|
+
|
|
81
94
|
|
|
82
95
|
## 🛠️ Features
|
|
83
96
|
|
|
@@ -104,7 +117,7 @@ https://jerrycoder.oggyapi.workers.dev
|
|
|
104
117
|
|
|
105
118
|
° ✅ Fully Tested on Node.js & Vercel
|
|
106
119
|
|
|
107
|
-
° 🚀 Version: 2.5.
|
|
120
|
+
° 🚀 Version: 2.5.8 (Latest)
|
|
108
121
|
|
|
109
122
|
|
|
110
123
|
## 📄 License
|
package/package.json
CHANGED