@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.
Files changed (2) hide show
  1. package/README.md +26 -18
  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,15 +30,15 @@ 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
 
36
- ๐Ÿ“ก Response Example
37
- ```bash
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
- ```bash
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
- https://your-domain.vercel.app/api/instagram?url=INSTAGRAM_URL
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
- โ€ข โšก Fast response
102
+ - โšก Fast response
98
103
 
99
- โ€ข ๐Ÿ“ฅ Download Reels / Posts / Stories
104
+ - ๐Ÿ“ฅ Download Reels / Posts / Stories
100
105
 
101
- โ€ข ๐Ÿ”„ Simple API structure
106
+ - ๐Ÿ”„ Simple API structure
102
107
 
103
- โ€ข ๐Ÿงฉ Works with CommonJS & ESM
108
+ - ๐Ÿงฉ Works with CommonJS & ESM
104
109
 
105
110
 
106
111
  ## ๐Ÿ” Security
107
112
 
108
- This package makes HTTP requests to:
109
- https://jerrycoder.oggyapi.workers.dev
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 is performed
113
- - Open for inspection
118
+ - No tracking or analytics
119
+ - Only used to fetch public Instagram media
114
120
 
115
121
 
116
122
  ## ๐Ÿงช Status
117
123
 
118
- ยฐ โœ… Fully Tested on Node.js & Vercel
124
+ - โœ… Fully Tested on Node.js & Vercel
119
125
 
120
- ยฐ ๐Ÿš€ Version: 2.5.8 (Latest)
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jerrycoder/instagram-api",
3
- "version": "2.5.8",
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",