@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.
Files changed (2) hide show
  1. package/README.md +37 -16
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,10 +1,14 @@
1
+ ![npm version](https://img.shields.io/npm/v/@jerrycoder/instagram-api)
2
+ ![downloads](https://img.shields.io/npm/dw/@jerrycoder/instagram-api)
3
+ ![license](https://img.shields.io/npm/l/@jerrycoder/instagram-api)
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
- [https://jerrycoder.oggyapi.workers.dev](https://jerrycoder.oggyapi.workers.dev)
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
- ```bash
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
- ```bash
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
- ```bash
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
- https://your-domain.vercel.app/api/instagram?url=INSTAGRAM_URL
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
- โ€ข โšก Fast response
102
+ - โšก Fast response
85
103
 
86
- โ€ข ๐Ÿ“ฅ Download Reels / Posts / Stories
104
+ - ๐Ÿ“ฅ Download Reels / Posts / Stories
87
105
 
88
- โ€ข ๐Ÿ”„ Simple API structure
106
+ - ๐Ÿ”„ Simple API structure
89
107
 
90
- โ€ข ๐Ÿงฉ Works with CommonJS & ESM
108
+ - ๐Ÿงฉ Works with CommonJS & ESM
91
109
 
92
110
 
93
111
  ## ๐Ÿ” Security
94
112
 
95
- This package makes HTTP requests to:
96
- https://jerrycoder.oggyapi.workers.dev
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 is performed
100
- - Open for inspection
118
+ - No tracking or analytics
119
+ - Only used to fetch public Instagram media
101
120
 
102
121
 
103
122
  ## ๐Ÿงช Status
104
123
 
105
- ยฐ โœ… Fully Tested on Node.js & Vercel
124
+ - โœ… Fully Tested on Node.js & Vercel
106
125
 
107
- ยฐ ๐Ÿš€ Version: 2.5.5 (Latest)
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jerrycoder/instagram-api",
3
- "version": "2.5.7",
3
+ "version": "2.5.9",
4
4
  "description": "Unofficial Instagram Downloader API โ€” fetch Reels, Posts, Stories using JerryCoder API.",
5
5
  "main": "index.js",
6
6
  "author": "JerryCoder",