From 896a80702be7f5f368b8cf3c2c8439e192ab2291 Mon Sep 17 00:00:00 2001 From: SanthoshIruthayaraj Date: Mon, 6 Apr 2026 11:25:22 +0530 Subject: [PATCH] Task(1006561): Added Angular Grid Custom Binding with FastAPI sample --- .../README.md | 102 + .../client/README.md | 59 + .../client/angular.json | 92 + .../client/package.json | 38 + .../client/public/favicon.ico | Bin 0 -> 15086 bytes .../client/src/app/app.component.css | 117 + .../client/src/app/app.component.html | 47 + .../client/src/app/app.component.ts | 172 + .../client/src/app/app.config.ts | 9 + .../client/src/app/grid-api.service.ts | 116 + .../client/src/index.html | 14 + .../client/src/main.ts | 7 + .../client/src/styles.css | 10 + .../client/tsconfig.app.json | 15 + .../client/tsconfig.json | 34 + .../client/tsconfig.spec.json | 14 + .../server/main.py | 21 + .../server/products_data.json | 18002 ++++++++++++++++ .../server/requirements.txt | 2 + .../server/routers/products.py | 264 + 20 files changed, 19135 insertions(+) create mode 100644 connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/README.md create mode 100644 connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/README.md create mode 100644 connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/angular.json create mode 100644 connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/package.json create mode 100644 connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/public/favicon.ico create mode 100644 connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/src/app/app.component.css create mode 100644 connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/src/app/app.component.html create mode 100644 connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/src/app/app.component.ts create mode 100644 connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/src/app/app.config.ts create mode 100644 connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/src/app/grid-api.service.ts create mode 100644 connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/src/index.html create mode 100644 connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/src/main.ts create mode 100644 connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/src/styles.css create mode 100644 connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/tsconfig.app.json create mode 100644 connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/tsconfig.json create mode 100644 connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/tsconfig.spec.json create mode 100644 connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/server/main.py create mode 100644 connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/server/products_data.json create mode 100644 connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/server/requirements.txt create mode 100644 connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/server/routers/products.py diff --git a/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/README.md b/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/README.md new file mode 100644 index 0000000..31051b6 --- /dev/null +++ b/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/README.md @@ -0,0 +1,102 @@ +# Connecting the Syncfusion Angular Grid with FastAPI REST backend + +FastAPI is a modern, high‑performance Python web framework used for building RESTful APIs with automatic validation and OpenAPI documentation. In a REST architecture, the client communicates with the backend using standard HTTP methods and structured JSON payloads. This makes FastAPI a natural fit for the Syncfusion Angular Grid, where every grid action is serialized into a predictable request format and processed on the server. + +**Key REST concepts:** + +- **Resources**: Logical endpoints such as `/products` that represent collections or entities. +- **HTTP Methods**: `POST` for data operations, along with standard REST semantics. +- **Request / Response Payloads**: JSON structures carrying grid operation metadata and results. +- **Status Codes**: Standard HTTP codes indicating success or failure of operations. + +--- + +## Prerequisites + +| Software / Package | Recommended version | Purpose | +|-------------------|---------------------|--------| +| Python | 3.11 or later | Backend runtime | +| FastAPI | Latest | REST API framework | +| Uvicorn | Latest | ASGI server | +| Node.js | 20.x LTS or later | Angular tooling | +| npm | 10.x or later | Package manager | + +--- + +## Quick Start + +1. **Clone the repository** + ```bash + git clone + ``` + +2. **Run the FastAPI backend** + ```bash + cd server + uvicorn main:app --reload --port 8000 + ``` + The backend is now running at http://localhost:8000/. + +3. **Run the Angular client** + ```bash + cd client + npm install + ng serve + ``` + Open the URL shown in the terminal (typically http://localhost:4200/). + +--- + +## Configuration + +The Syncfusion Angular Grid communicates with the backend using the **DataManager** combined with the **UrlAdaptor**. All grid operations (paging, sorting, filtering, searching, and CRUD) are sent as a single POST request to a REST endpoint. + +**DataManager request payload (common keys):** + +| Parameters | Description | +|------------------|-------------| +| `requiresCounts` | Includes the total record count in the response when set to true | +| `skip` | Number of records to skip | +| `take` | Number of records to retrieve | +| `sorted` | Sorting field(s) and direction | +| `where` | Filtering predicates | +| `search` | Search fields and keywords | +| `select` | Fields to project | +| `action` | Indicates `insert`, `update`, or `remove` for CRUD | + +--- + +## Project Layout + +| File / Folder | Purpose | +|---------------|---------| +| `server/main.py` | FastAPI application entry point | +| `server/products_data.json` | Sample product dataset | +| `server/routers/products.py` | Single REST endpoint handling grid operations | +| `server/routers/services` | Server‑side helpers for paging, sorting, filtering, search, and CRUD | +| `client/src/app/app.component.ts` | Angular Grid configuration | +| `client/src/styles.css` | Global styles including Syncfusion theme | + +--- + +## Common Tasks + +### Add a Record +- Click **Add** in the grid toolbar +- Enter product details +- Click **Save** to persist the record + +### Edit a Record +- Select a row → **Edit** +- Modify field values → **Update** + +### Delete a Record +- Select a row → **Delete** +- Confirm deletion + +### Search / Filter / Sort +- Use the **Search** toolbar item for text search +- Use column filters for advanced conditions +- Click column headers to sort ascending or descending + +--- diff --git a/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/README.md b/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/README.md new file mode 100644 index 0000000..3d92a56 --- /dev/null +++ b/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/README.md @@ -0,0 +1,59 @@ +# Client + +This project was generated using [Angular CLI](https://github.com/angular/angular-cli) version 20.0.0. + +## Development server + +To start a local development server, run: + +```bash +ng serve +``` + +Once the server is running, open your browser and navigate to `http://localhost:4200/`. The application will automatically reload whenever you modify any of the source files. + +## Code scaffolding + +Angular CLI includes powerful code scaffolding tools. To generate a new component, run: + +```bash +ng generate component component-name +``` + +For a complete list of available schematics (such as `components`, `directives`, or `pipes`), run: + +```bash +ng generate --help +``` + +## Building + +To build the project run: + +```bash +ng build +``` + +This will compile your project and store the build artifacts in the `dist/` directory. By default, the production build optimizes your application for performance and speed. + +## Running unit tests + +To execute unit tests with the [Karma](https://karma-runner.github.io) test runner, use the following command: + +```bash +ng test +``` + +## Running end-to-end tests + +For end-to-end (e2e) testing, run: + +```bash +ng e2e +``` + +Angular CLI does not come with an end-to-end testing framework by default. You can choose one that suits your needs. + +## Additional Resources + +For more information on using the Angular CLI, including detailed command references, visit the [Angular CLI Overview and Command Reference](https://angular.dev/tools/cli) page. diff --git a/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/angular.json b/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/angular.json new file mode 100644 index 0000000..58d21df --- /dev/null +++ b/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/angular.json @@ -0,0 +1,92 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "client": { + "projectType": "application", + "schematics": {}, + "root": "", + "sourceRoot": "src", + "prefix": "app", + "architect": { + "build": { + "builder": "@angular/build:application", + "options": { + "browser": "src/main.ts", + "polyfills": [ + "zone.js" + ], + "tsConfig": "tsconfig.app.json", + "assets": [ + { + "glob": "**/*", + "input": "public" + } + ], + "styles": [ + "src/styles.css" + ] + }, + "configurations": { + "production": { + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kB", + "maximumError": "1MB" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "4kB", + "maximumError": "8kB" + } + ], + "outputHashing": "all" + }, + "development": { + "optimization": false, + "extractLicenses": false, + "sourceMap": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular/build:dev-server", + "configurations": { + "production": { + "buildTarget": "client:build:production" + }, + "development": { + "buildTarget": "client:build:development" + } + }, + "defaultConfiguration": "development" + }, + "extract-i18n": { + "builder": "@angular/build:extract-i18n" + }, + "test": { + "builder": "@angular/build:karma", + "options": { + "polyfills": [ + "zone.js", + "zone.js/testing" + ], + "tsConfig": "tsconfig.spec.json", + "assets": [ + { + "glob": "**/*", + "input": "public" + } + ], + "styles": [ + "src/styles.css" + ] + } + } + } + } + } +} diff --git a/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/package.json b/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/package.json new file mode 100644 index 0000000..d7881fe --- /dev/null +++ b/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/package.json @@ -0,0 +1,38 @@ +{ + "name": "client", + "version": "0.0.0", + "scripts": { + "ng": "ng", + "start": "ng serve", + "build": "ng build", + "watch": "ng build --watch --configuration development", + "test": "ng test" + }, + "private": true, + "dependencies": { + "@angular/common": "^20.0.0", + "@angular/compiler": "^20.0.0", + "@angular/core": "^20.0.0", + "@angular/forms": "^20.0.0", + "@angular/platform-browser": "^20.0.0", + "@angular/router": "^20.0.0", + "@syncfusion/ej2-angular-grids": "^32.1.25", + "@syncfusion/ej2-data": "^32.1.24", + "rxjs": "~7.8.0", + "tslib": "^2.3.0", + "zone.js": "~0.15.0" + }, + "devDependencies": { + "@angular/build": "^20.0.0", + "@angular/cli": "^20.0.0", + "@angular/compiler-cli": "^20.0.0", + "@types/jasmine": "~5.1.0", + "jasmine-core": "~5.7.0", + "karma": "~6.4.0", + "karma-chrome-launcher": "~3.2.0", + "karma-coverage": "~2.2.0", + "karma-jasmine": "~5.1.0", + "karma-jasmine-html-reporter": "~2.1.0", + "typescript": "~5.8.2" + } +} diff --git a/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/public/favicon.ico b/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/public/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..57614f9c967596fad0a3989bec2b1deff33034f6 GIT binary patch literal 15086 zcmd^G33O9Omi+`8$@{|M-I6TH3wzF-p5CV8o}7f~KxR60LK+ApEFB<$bcciv%@SmA zV{n>g85YMFFeU*Uvl=i4v)C*qgnb;$GQ=3XTe9{Y%c`mO%su)noNCCQ*@t1WXn|B(hQ7i~ zrUK8|pUkD6#lNo!bt$6)jR!&C?`P5G(`e((P($RaLeq+o0Vd~f11;qB05kdbAOm?r zXv~GYr_sibQO9NGTCdT;+G(!{4Xs@4fPak8#L8PjgJwcs-Mm#nR_Z0s&u?nDX5^~@ z+A6?}g0|=4e_LoE69pPFO`yCD@BCjgKpzMH0O4Xs{Ahc?K3HC5;l=f zg>}alhBXX&);z$E-wai+9TTRtBX-bWYY@cl$@YN#gMd~tM_5lj6W%8ah4;uZ;jP@Q zVbuel1rPA?2@x9Y+u?e`l{Z4ngfG5q5BLH5QsEu4GVpt{KIp1?U)=3+KQ;%7ec8l* zdV=zZgN5>O3G(3L2fqj3;oBbZZw$Ij@`Juz@?+yy#OPw)>#wsTewVgTK9BGt5AbZ&?K&B3GVF&yu?@(Xj3fR3n+ZP0%+wo)D9_xp>Z$`A4 zfV>}NWjO#3lqumR0`gvnffd9Ka}JJMuHS&|55-*mCD#8e^anA<+sFZVaJe7{=p*oX zE_Uv?1>e~ga=seYzh{9P+n5<+7&9}&(kwqSaz;1aD|YM3HBiy<))4~QJSIryyqp| z8nGc(8>3(_nEI4n)n7j(&d4idW1tVLjZ7QbNLXg;LB ziHsS5pXHEjGJZb59KcvS~wv;uZR-+4qEqow`;JCfB*+b^UL^3!?;-^F%yt=VjU|v z39SSqKcRu_NVvz!zJzL0CceJaS6%!(eMshPv_0U5G`~!a#I$qI5Ic(>IONej@aH=f z)($TAT#1I{iCS4f{D2+ApS=$3E7}5=+y(rA9mM#;Cky%b*Gi0KfFA`ofKTzu`AV-9 znW|y@19rrZ*!N2AvDi<_ZeR3O2R{#dh1#3-d%$k${Rx42h+i&GZo5!C^dSL34*AKp z27mTd>k>?V&X;Nl%GZ(>0s`1UN~Hfyj>KPjtnc|)xM@{H_B9rNr~LuH`Gr5_am&Ep zTjZA8hljNj5H1Ipm-uD9rC}U{-vR!eay5&6x6FkfupdpT*84MVwGpdd(}ib)zZ3Ky z7C$pnjc82(W_y_F{PhYj?o!@3__UUvpX)v69aBSzYj3 zdi}YQkKs^SyXyFG2LTRz9{(w}y~!`{EuAaUr6G1M{*%c+kP1olW9z23dSH!G4_HSK zzae-DF$OGR{ofP*!$a(r^5Go>I3SObVI6FLY)N@o<*gl0&kLo-OT{Tl*7nCz>Iq=? zcigIDHtj|H;6sR?or8Wd_a4996GI*CXGU}o;D9`^FM!AT1pBY~?|4h^61BY#_yIfO zKO?E0 zJ{Pc`9rVEI&$xxXu`<5E)&+m(7zX^v0rqofLs&bnQT(1baQkAr^kEsk)15vlzAZ-l z@OO9RF<+IiJ*O@HE256gCt!bF=NM*vh|WVWmjVawcNoksRTMvR03H{p@cjwKh(CL4 z7_PB(dM=kO)!s4fW!1p0f93YN@?ZSG` z$B!JaAJCtW$B97}HNO9(x-t30&E}Mo1UPi@Av%uHj~?T|!4JLwV;KCx8xO#b9IlUW zI6+{a@Wj|<2Y=U;a@vXbxqZNngH8^}LleE_4*0&O7#3iGxfJ%Id>+sb;7{L=aIic8 z|EW|{{S)J-wr@;3PmlxRXU8!e2gm_%s|ReH!reFcY8%$Hl4M5>;6^UDUUae?kOy#h zk~6Ee_@ZAn48Bab__^bNmQ~+k=02jz)e0d9Z3>G?RGG!65?d1>9}7iG17?P*=GUV-#SbLRw)Hu{zx*azHxWkGNTWl@HeWjA?39Ia|sCi{e;!^`1Oec zb>Z|b65OM*;eC=ZLSy?_fg$&^2xI>qSLA2G*$nA3GEnp3$N-)46`|36m*sc#4%C|h zBN<2U;7k>&G_wL4=Ve5z`ubVD&*Hxi)r@{4RCDw7U_D`lbC(9&pG5C*z#W>8>HU)h z!h3g?2UL&sS!oY5$3?VlA0Me9W5e~V;2jds*fz^updz#AJ%G8w2V}AEE?E^=MK%Xt z__Bx1cr7+DQmuHmzn*|hh%~eEc9@m05@clWfpEFcr+06%0&dZJH&@8^&@*$qR@}o3 z@Tuuh2FsLz^zH+dN&T&?0G3I?MpmYJ;GP$J!EzjeM#YLJ!W$}MVNb0^HfOA>5Fe~UNn%Zk(PT@~9}1dt)1UQ zU*B5K?Dl#G74qmg|2>^>0WtLX#Jz{lO4NT`NYB*(L#D|5IpXr9v&7a@YsGp3vLR7L zHYGHZg7{ie6n~2p$6Yz>=^cEg7tEgk-1YRl%-s7^cbqFb(U7&Dp78+&ut5!Tn(hER z|Gp4Ed@CnOPeAe|N>U(dB;SZ?NU^AzoD^UAH_vamp6Ws}{|mSq`^+VP1g~2B{%N-!mWz<`)G)>V-<`9`L4?3dM%Qh6<@kba+m`JS{Ya@9Fq*m6$$ zA1%Ogc~VRH33|S9l%CNb4zM%k^EIpqY}@h{w(aBcJ9c05oiZx#SK9t->5lSI`=&l~ z+-Ic)a{FbBhXV$Xt!WRd`R#Jk-$+_Z52rS>?Vpt2IK<84|E-SBEoIw>cs=a{BlQ7O z-?{Fy_M&84&9|KM5wt~)*!~i~E=(6m8(uCO)I=)M?)&sRbzH$9Rovzd?ZEY}GqX+~ zFbEbLz`BZ49=2Yh-|<`waK-_4!7`ro@zlC|r&I4fc4oyb+m=|c8)8%tZ-z5FwhzDt zL5kB@u53`d@%nHl0Sp)Dw`(QU&>vujEn?GPEXUW!Wi<+4e%BORl&BIH+SwRcbS}X@ z01Pk|vA%OdJKAs17zSXtO55k!;%m9>1eW9LnyAX4uj7@${O6cfii`49qTNItzny5J zH&Gj`e}o}?xjQ}r?LrI%FjUd@xflT3|7LA|ka%Q3i}a8gVm<`HIWoJGH=$EGClX^C0lysQJ>UO(q&;`T#8txuoQ_{l^kEV9CAdXuU1Ghg8 zN_6hHFuy&1x24q5-(Z7;!poYdt*`UTdrQOIQ!2O7_+AHV2hgXaEz7)>$LEdG z<8vE^Tw$|YwZHZDPM!SNOAWG$?J)MdmEk{U!!$M#fp7*Wo}jJ$Q(=8>R`Ats?e|VU?Zt7Cdh%AdnfyN3MBWw{ z$OnREvPf7%z6`#2##_7id|H%Y{vV^vWXb?5d5?a_y&t3@p9t$ncHj-NBdo&X{wrfJ zamN)VMYROYh_SvjJ=Xd!Ga?PY_$;*L=SxFte!4O6%0HEh%iZ4=gvns7IWIyJHa|hT z2;1+e)`TvbNb3-0z&DD_)Jomsg-7p_Uh`wjGnU1urmv1_oVqRg#=C?e?!7DgtqojU zWoAB($&53;TsXu^@2;8M`#z{=rPy?JqgYM0CDf4v@z=ZD|ItJ&8%_7A#K?S{wjxgd z?xA6JdJojrWpB7fr2p_MSsU4(R7=XGS0+Eg#xR=j>`H@R9{XjwBmqAiOxOL` zt?XK-iTEOWV}f>Pz3H-s*>W z4~8C&Xq25UQ^xH6H9kY_RM1$ch+%YLF72AA7^b{~VNTG}Tj#qZltz5Q=qxR`&oIlW Nr__JTFzvMr^FKp4S3v*( literal 0 HcmV?d00001 diff --git a/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/src/app/app.component.css b/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/src/app/app.component.css new file mode 100644 index 0000000..49af3fd --- /dev/null +++ b/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/src/app/app.component.css @@ -0,0 +1,117 @@ +/* ========================================================= + Products Grid Wrapper + ========================================================= */ + +.products-grid-wrap { + padding: 14px; + border-radius: 14px; + background: linear-gradient(180deg, #fbfcff 0%, #f7f9ff 100%); + border: 1px solid #e8eefc; +} + +/* ========================================================= + Title Area + ========================================================= */ + +.pg-title { + display: flex; + flex-direction: column; + gap: 6px; + padding: 6px 4px 12px; +} + +.pg-title h2 { + margin: 0; + font-size: 18px; + font-weight: 700; + color: #1b2b4a; +} + +/* ========================================================= + Grid Surface + ========================================================= */ + +.products-grid-wrap .e-grid { + border-radius: 12px; + overflow: hidden; + border: 1px solid #e6ecff; + background: #ffffff; +} + +/* ========================================================= + Grid Header + ========================================================= */ + +.products-grid-wrap .e-gridheader { + background: #f3f6ff; + border-bottom: 1px solid #e6ecff; +} + +.products-grid-wrap .e-headercell { + background: #f3f6ff; +} + +.products-grid-wrap .e-headertext { + color: #2b3a55; + font-weight: 700; + letter-spacing: 0.2px; +} + +/* ========================================================= + Grid Rows + ========================================================= */ + +.products-grid-wrap .e-row { + background: #ffffff; +} + +.products-grid-wrap .e-row:nth-child(even) { + background: #fbfdff; +} + +.products-grid-wrap .e-gridcontent .e-row:hover { + background: #f5f9ff !important; +} + +/* ========================================================= + STATUS Chip + ========================================================= */ + +.pg-chip { + display: inline-flex; + align-items: center; + justify-content: center; + + width: 100%; + max-width: 130px; + min-width: 80px; + + padding: 6px 12px; + border-radius: 999px; + + font-weight: 700; + font-size: 13px; + line-height: 1; + + margin: 0 auto; + box-sizing: border-box; +} + +/* Status variants */ +.pg-chip--active { + background: #ecfbf3; + border: 1px solid #c8f0d9; + color: #0b6b37; +} + +.pg-chip--inactive { + background: #fff6f0; + border: 1px solid #ffe2d2; + color: #8a3b00; +} + +.pg-chip--discontinued { + background: #f3f4f6; + border: 1px solid #e5e7eb; + color: #374151; +} diff --git a/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/src/app/app.component.html b/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/src/app/app.component.html new file mode 100644 index 0000000..a06168f --- /dev/null +++ b/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/src/app/app.component.html @@ -0,0 +1,47 @@ +
+
+

Products

+
+ + + + + + + + + + + + + + + + + + + + + + {{ data?.status || '' }} + + +
\ No newline at end of file diff --git a/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/src/app/app.component.ts b/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/src/app/app.component.ts new file mode 100644 index 0000000..b0abfc2 --- /dev/null +++ b/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/src/app/app.component.ts @@ -0,0 +1,172 @@ +import { Component, ViewChild, OnInit, AfterViewInit } from '@angular/core'; +import { CommonModule } from '@angular/common'; +import { GridModule, GridComponent, PageService, SortService, FilterService, EditService, ToolbarService } from '@syncfusion/ej2-angular-grids'; +import { FilterSettingsModel, EditSettingsModel, PageSettingsModel, ToolbarItems, DataStateChangeEventArgs, DataSourceChangedEventArgs } from '@syncfusion/ej2-grids'; +import { GridApiService } from './grid-api.service'; +import { Query } from '@syncfusion/ej2-data'; + +@Component({ + selector: 'app-root', + standalone: true, + imports: [CommonModule, GridModule], + providers: [PageService, SortService, FilterService, EditService, ToolbarService], + templateUrl: './app.component.html', + styleUrl: './app.component.css', +}) +export class AppComponent implements OnInit, AfterViewInit { + @ViewChild('grid') public grid?: GridComponent; + + constructor(private gridApiService: GridApiService) {} + + // ---------- Endpoint ---------- + public API_BASE = 'http://localhost:8000'; // FastAPI base + + // ---------- DataSource ---------- + public data: any = []; + + // ---------- Edit behavior ---------- + public editSettings: EditSettingsModel = { + allowAdding: true, + allowEditing: true, + allowDeleting: true, + showDeleteConfirmDialog: true, + newRowPosition: 'Top' + }; + + // ---------- Toolbar ---------- + public toolbar: ToolbarItems[] | string[] = ['Add', 'Edit', 'Delete', 'Update', 'Cancel', 'Search']; + + // ---------- Paging + Filtering ---------- + public pageSettings: PageSettingsModel = { pageSize: 12, pageSizes: [12, 25, 50, 100] }; + public filterSettings: FilterSettingsModel = { type: 'Excel' }; + + // Per-column filter UI types + public menuFilter = { type: 'Menu' }; + public checkboxFilter = { type: 'CheckBox' }; + + // ---------- Validation rules ---------- + public required = { required: true }; + + public skuRules = { required: true, minLength: 3, maxLength: 32 }; + public productNameRules = { required: true, minLength: 2, maxLength: 80 }; + public categoryRules = { required: true, minLength: 1, maxLength: 50 }; + public priceRules = { required: true, number: true, min: 0 }; + public stockRules = { required: true, number: true, min: 0, max: 999999 }; + public statusRules = { required: true }; + + // Edit params + public categoryParams = { + params: { + dataSource: ["Beauty","Books","Electronics","Grocery","Office","Clothing","Toys","Home & Kitchen","Sports"], + query: new Query(), + }, + }; + public statusParams = { + params: { + dataSource: ["Active","Backorder","Discontinued"], + query: new Query(), + }, + }; + + + // ---------- Lifecycle ---------- + ngOnInit(): void { + // Initialize the API service with base URL and primary key + this.gridApiService.initialize(`${this.API_BASE}/products`, 'id'); + } + + ngAfterViewInit(): void { + // Load initial data after view is initialized + this.loadInitialData(); + } + + private async loadInitialData(): Promise { + try { + const initialState = { + skip: 0, + take: 12, + }; + const data = await this.gridApiService.fetchData(initialState); + if (this.grid) { + this.grid.dataSource = data; + } + } catch (error) { + console.error('Failed to load initial data:', error); + } + } + + // ---------- Helpers ---------- + public getStatusClass(status: string | null | undefined): string { + const s = String(status ?? '').toLowerCase(); + if (s === 'active') return 'pg-chip pg-chip--active'; + if (s === 'inactive') return 'pg-chip pg-chip--inactive'; + if (s === 'discontinued') return 'pg-chip pg-chip--discontinued'; + return 'pg-chip'; + } + + // ---------- Custom Binding Events ---------- + + // Handle data state changes (read operations) + public dataStateChange = async (args: DataStateChangeEventArgs): Promise => { + try { + const gridState = { + skip: args.skip, + take: args.take, + sorted: args.sorted, + where: args.where, + search: args.search, + }; + + const responseData = await this.gridApiService.fetchData(gridState); + + // Handle Excel filter choice requests + if ( + args.action && + (args.action.requestType === 'filterchoicerequest' || + args.action.requestType === 'filterSearchBegin' || + args.action.requestType === 'stringfilterrequest') + ) { + (args as any).dataSource(responseData.result); + } else { + // Bind main grid data + if (this.grid) { + this.grid.dataSource = responseData; + } + } + } catch (error) { + console.error('Data state change failed:', error); + } + }; + + // Handle data source changes (CRUD operations) + public dataSourceChanged = async (args: DataSourceChangedEventArgs): Promise => { + try { + const data = (args as any).data; + + // Create operation + if (args.action === 'add' && args.requestType === 'save') { + await this.gridApiService.createRecord(data); + (args as any).endEdit(); + return; + } + + // Update operation + if (args.action === 'edit' && args.requestType === 'save') { + const recordId = this.gridApiService.extractRecordId(data); + await this.gridApiService.updateRecord(recordId, data); + (args as any).endEdit(); + return; + } + + // Delete operation + if (args.requestType === 'delete') { + const recordId = this.gridApiService.extractRecordId(data); + await this.gridApiService.deleteRecord(recordId); + (args as any).endEdit(); + return; + } + } catch (error) { + console.error('Data source change failed:', error); + } + }; +} diff --git a/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/src/app/app.config.ts b/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/src/app/app.config.ts new file mode 100644 index 0000000..b956a9e --- /dev/null +++ b/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/src/app/app.config.ts @@ -0,0 +1,9 @@ +import { ApplicationConfig, provideBrowserGlobalErrorListeners, provideZoneChangeDetection } from '@angular/core'; + +export const appConfig: ApplicationConfig = { + providers: [ + provideBrowserGlobalErrorListeners(), + provideZoneChangeDetection({ eventCoalescing: true }), + + ] +}; diff --git a/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/src/app/grid-api.service.ts b/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/src/app/grid-api.service.ts new file mode 100644 index 0000000..a943049 --- /dev/null +++ b/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/src/app/grid-api.service.ts @@ -0,0 +1,116 @@ +import { Injectable } from '@angular/core'; + +export interface GridState { + skip?: number; + take?: number; + sorted?: any[]; + where?: any; + search?: any; +} + +export interface GridDataResponse { + result: any[]; + count: number; +} + +@Injectable({ + providedIn: 'root' +}) +export class GridApiService { + private baseUrl: string = ''; + private primaryKey: string = 'id'; + + /** + * Initialize the service with base URL and primary key + */ + initialize(baseUrl: string, primaryKey: string = 'id'): void { + this.baseUrl = baseUrl; + this.primaryKey = primaryKey; + } + + /** + * Fetch data from the server based on grid state + */ + async fetchData(gridState: GridState): Promise { + const stateWithCount = { requiresCounts: true, ...gridState }; + const url = `${this.baseUrl}?gridState=${encodeURIComponent(JSON.stringify(stateWithCount))}`; + + const response = await fetch(url, { + method: 'GET', + headers: { 'Content-Type': 'application/json' }, + }); + + if (!response.ok) { + const errorText = await response.text(); + throw new Error(`HTTP ${response.status}: ${errorText}`); + } + + return await response.json(); + } + + /** + * Create a new record + */ + async createRecord(data: any): Promise { + const response = await fetch(this.baseUrl, { + method: 'POST', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify(data), + }); + + if (!response.ok) { + throw new Error('Create operation failed'); + } + + return await response.json(); + } + + /** + * Update an existing record + */ + async updateRecord(id: any, data: any): Promise { + const response = await fetch(`${this.baseUrl}/${id}`, { + method: 'PUT', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify(data), + }); + + if (!response.ok) { + throw new Error('Update operation failed'); + } + + return await response.json(); + } + + /** + * Delete a record + */ + async deleteRecord(id: any): Promise { + const response = await fetch(`${this.baseUrl}/${id}`, { + method: 'DELETE', + }); + + if (!response.ok) { + throw new Error('Delete operation failed'); + } + + return await response.json(); + } + + /** + * Extract record ID from data + */ + extractRecordId(data: any): any { + if (Array.isArray(data)) { + return data[0]?.[this.primaryKey]; + } + return data?.[this.primaryKey]; + } + + /** + * Get primary key field name + */ + getPrimaryKey(): string { + return this.primaryKey; + } +} diff --git a/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/src/index.html b/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/src/index.html new file mode 100644 index 0000000..8cc5376 --- /dev/null +++ b/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/src/index.html @@ -0,0 +1,14 @@ + + + + + Syncfusion Angular Grid with Fast API using Custom Binding + + + + + + + + + diff --git a/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/src/main.ts b/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/src/main.ts new file mode 100644 index 0000000..6d4e152 --- /dev/null +++ b/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/src/main.ts @@ -0,0 +1,7 @@ +import { bootstrapApplication } from '@angular/platform-browser'; +import { appConfig } from './app/app.config'; +import { AppComponent } from './app/app.component'; + +bootstrapApplication(AppComponent, appConfig) + .catch((err) => console.error(err)); + diff --git a/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/src/styles.css b/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/src/styles.css new file mode 100644 index 0000000..6f2edcc --- /dev/null +++ b/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/src/styles.css @@ -0,0 +1,10 @@ +@import '../node_modules/@syncfusion/ej2-base/styles/bootstrap5.3.css'; +@import '../node_modules/@syncfusion/ej2-buttons/styles/bootstrap5.3.css'; +@import '../node_modules/@syncfusion/ej2-calendars/styles/bootstrap5.3.css'; +@import '../node_modules/@syncfusion/ej2-dropdowns/styles/bootstrap5.3.css'; +@import '../node_modules/@syncfusion/ej2-inputs/styles/bootstrap5.3.css'; +@import '../node_modules/@syncfusion/ej2-navigations/styles/bootstrap5.3.css'; +@import '../node_modules/@syncfusion/ej2-popups/styles/bootstrap5.3.css'; +@import '../node_modules/@syncfusion/ej2-splitbuttons/styles/bootstrap5.3.css'; +@import '../node_modules/@syncfusion/ej2-notifications/styles/bootstrap5.3.css'; +@import '../node_modules/@syncfusion/ej2-angular-grids/styles/bootstrap5.3.css'; \ No newline at end of file diff --git a/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/tsconfig.app.json b/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/tsconfig.app.json new file mode 100644 index 0000000..264f459 --- /dev/null +++ b/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/tsconfig.app.json @@ -0,0 +1,15 @@ +/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */ +/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "include": [ + "src/**/*.ts" + ], + "exclude": [ + "src/**/*.spec.ts" + ] +} diff --git a/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/tsconfig.json b/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/tsconfig.json new file mode 100644 index 0000000..e4955f2 --- /dev/null +++ b/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/tsconfig.json @@ -0,0 +1,34 @@ +/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */ +/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */ +{ + "compileOnSave": false, + "compilerOptions": { + "strict": true, + "noImplicitOverride": true, + "noPropertyAccessFromIndexSignature": true, + "noImplicitReturns": true, + "noFallthroughCasesInSwitch": true, + "skipLibCheck": true, + "isolatedModules": true, + "experimentalDecorators": true, + "importHelpers": true, + "target": "ES2022", + "module": "preserve" + }, + "angularCompilerOptions": { + "enableI18nLegacyMessageIdFormat": false, + "strictInjectionParameters": true, + "strictInputAccessModifiers": true, + "typeCheckHostBindings": true, + "strictTemplates": true + }, + "files": [], + "references": [ + { + "path": "./tsconfig.app.json" + }, + { + "path": "./tsconfig.spec.json" + } + ] +} diff --git a/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/tsconfig.spec.json b/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/tsconfig.spec.json new file mode 100644 index 0000000..04df34c --- /dev/null +++ b/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/client/tsconfig.spec.json @@ -0,0 +1,14 @@ +/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */ +/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/spec", + "types": [ + "jasmine" + ] + }, + "include": [ + "src/**/*.ts" + ] +} diff --git a/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/server/main.py b/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/server/main.py new file mode 100644 index 0000000..49d4da1 --- /dev/null +++ b/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/server/main.py @@ -0,0 +1,21 @@ +from fastapi import FastAPI +from fastapi.middleware.cors import CORSMiddleware +from routers import products + +app = FastAPI(title="Products API") + +# CORS middleware +app.add_middleware( + CORSMiddleware, + allow_origins=["*"], + allow_credentials=True, + allow_methods=["*"], + allow_headers=["*"], +) + +# Register routers +app.include_router( + products.router, + prefix="/products", + tags=["products"] +) diff --git a/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/server/products_data.json b/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/server/products_data.json new file mode 100644 index 0000000..fb87373 --- /dev/null +++ b/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/server/products_data.json @@ -0,0 +1,18002 @@ +[ + { + "id": 1, + "productName": "Ergonomic Serum", + "category": "Beauty", + "sku": "BEAU-00001", + "price": 4394.23, + "stock": 78, + "status": "Active" + }, + { + "id": 2, + "productName": "Portable Shampoo", + "category": "Beauty", + "sku": "BEAU-00002", + "price": 8199.38, + "stock": 103, + "status": "Active" + }, + { + "id": 3, + "productName": "Wireless Face Cream", + "category": "Beauty", + "sku": "BEAU-00003", + "price": 501.04, + "stock": 238, + "status": "Active" + }, + { + "id": 4, + "productName": "Ergonomic Cookbook", + "category": "Clothing", + "sku": "BOOK-00004", + "price": 910.7, + "stock": 104, + "status": "Active" + }, + { + "id": 5, + "productName": "Durable Novel", + "category": "Grocery", + "sku": "BOOK-00005", + "price": 1925.26, + "stock": 292, + "status": "Active" + }, + { + "id": 6, + "productName": "Wireless Charger", + "category": "Clothing", + "sku": "ELEC-00006", + "price": 72798.7, + "stock": 122, + "status": "Active" + }, + { + "id": 7, + "productName": "Wireless Honey", + "category": "Books", + "sku": "GROC-00007", + "price": 1080.63, + "stock": 378, + "status": "Active" + }, + { + "id": 8, + "productName": "Durable Notebook", + "category": "Clothing", + "sku": "OFFC-00008", + "price": 1357.1, + "stock": 359, + "status": "Active" + }, + { + "id": 9, + "productName": "Premium Filing Tray", + "category": "Books", + "sku": "OFFC-00009", + "price": 5795.28, + "stock": 234, + "status": "Active" + }, + { + "id": 10, + "productName": "Smart Pen Set", + "category": "Office", + "sku": "OFFC-00010", + "price": 2504.98, + "stock": 156, + "status": "Active" + }, + { + "id": 11, + "productName": "Premium Dress", + "category": "Clothing", + "sku": "CLOT-00011", + "price": 4242.22, + "stock": 398, + "status": "Active" + }, + { + "id": 12, + "productName": "Classic Remote Car", + "category": "Toys", + "sku": "TOYS-00012", + "price": 1840.74, + "stock": 1, + "status": "Active" + }, + { + "id": 13, + "productName": "Smart Serum", + "category": "Beauty", + "sku": "BEAU-00013", + "price": 9052.15, + "stock": 490, + "status": "Active" + }, + { + "id": 14, + "productName": "Portable Remote Car", + "category": "Toys", + "sku": "TOYS-00014", + "price": 9149.94, + "stock": 499, + "status": "Active" + }, + { + "id": 15, + "productName": "Premium Cookware Set", + "category": "Home & Kitchen", + "sku": "HOME-00015", + "price": 23145.55, + "stock": 401, + "status": "Active" + }, + { + "id": 16, + "productName": "Classic Conditioner", + "category": "Beauty", + "sku": "BEAU-00016", + "price": 9465.86, + "stock": 57, + "status": "Active" + }, + { + "id": 17, + "productName": "Durable Basmati Rice", + "category": "Grocery", + "sku": "GROC-00017", + "price": 440.02, + "stock": 340, + "status": "Active" + }, + { + "id": 18, + "productName": "Compact Serum", + "category": "Beauty", + "sku": "BEAU-00018", + "price": 247.43, + "stock": 207, + "status": "Active" + }, + { + "id": 19, + "productName": "Compact Building Blocks", + "category": "Toys", + "sku": "TOYS-00019", + "price": 8683.16, + "stock": 380, + "status": "Active" + }, + { + "id": 20, + "productName": "Wireless Yoga Mat", + "category": "Sports", + "sku": "SPRT-00020", + "price": 21174.76, + "stock": 321, + "status": "Active" + }, + { + "id": 21, + "productName": "Classic Yoga Mat", + "category": "Sports", + "sku": "SPRT-00021", + "price": 666.99, + "stock": 190, + "status": "Active" + }, + { + "id": 22, + "productName": "Smart Mouse", + "category": "Electronics", + "sku": "ELEC-00022", + "price": 87242.62, + "stock": 325, + "status": "Active" + }, + { + "id": 23, + "productName": "Ultra Conditioner", + "category": "Beauty", + "sku": "BEAU-00023", + "price": 5391.9, + "stock": 492, + "status": "Active" + }, + { + "id": 24, + "productName": "Ultra Anthology", + "category": "Books", + "sku": "BOOK-00024", + "price": 771.69, + "stock": 484, + "status": "Active" + }, + { + "id": 25, + "productName": "Premium Cookbook", + "category": "Books", + "sku": "BOOK-00025", + "price": 328.15, + "stock": 396, + "status": "Active" + }, + { + "id": 26, + "productName": "Smart Conditioner", + "category": "Beauty", + "sku": "BEAU-00026", + "price": 6081.47, + "stock": 263, + "status": "Active" + }, + { + "id": 27, + "productName": "Compact Laptop", + "category": "Electronics", + "sku": "ELEC-00027", + "price": 42213.0, + "stock": 343, + "status": "Active" + }, + { + "id": 28, + "productName": "Ergonomic Basmati Rice", + "category": "Grocery", + "sku": "GROC-00028", + "price": 756.6, + "stock": 38, + "status": "Active" + }, + { + "id": 29, + "productName": "Compact Perfume", + "category": "Beauty", + "sku": "BEAU-00029", + "price": 5555.94, + "stock": 198, + "status": "Active" + }, + { + "id": 30, + "productName": "Eco Building Blocks", + "category": "Toys", + "sku": "TOYS-00030", + "price": 1371.5, + "stock": 260, + "status": "Active" + }, + { + "id": 31, + "productName": "Ergonomic Cookware Set", + "category": "Home & Kitchen", + "sku": "HOME-00031", + "price": 1484.32, + "stock": 327, + "status": "Active" + }, + { + "id": 32, + "productName": "Eco Basmati Rice", + "category": "Grocery", + "sku": "GROC-00032", + "price": 1973.83, + "stock": 47, + "status": "Active" + }, + { + "id": 33, + "productName": "Durable Dark Chocolate", + "category": "Grocery", + "sku": "GROC-00033", + "price": 776.24, + "stock": 219, + "status": "Active" + }, + { + "id": 34, + "productName": "Durable Pen Set", + "category": "Office", + "sku": "OFFC-00034", + "price": 7349.32, + "stock": 256, + "status": "Active" + }, + { + "id": 35, + "productName": "Ergonomic Board Game", + "category": "Toys", + "sku": "TOYS-00035", + "price": 9018.04, + "stock": 170, + "status": "Active" + }, + { + "id": 36, + "productName": "Portable Face Cream", + "category": "Beauty", + "sku": "BEAU-00036", + "price": 3378.12, + "stock": 365, + "status": "Active" + }, + { + "id": 37, + "productName": "Eco Headphones", + "category": "Electronics", + "sku": "ELEC-00037", + "price": 61436.28, + "stock": 490, + "status": "Active" + }, + { + "id": 38, + "productName": "Wireless Filing Tray", + "category": "Office", + "sku": "OFFC-00038", + "price": 4249.11, + "stock": 44, + "status": "Active" + }, + { + "id": 39, + "productName": "Ergonomic Dark Chocolate", + "category": "Grocery", + "sku": "GROC-00039", + "price": 1113.73, + "stock": 466, + "status": "Active" + }, + { + "id": 40, + "productName": "Ultra Filing Tray", + "category": "Office", + "sku": "OFFC-00040", + "price": 3222.83, + "stock": 81, + "status": "Active" + }, + { + "id": 41, + "productName": "Eco Mouse", + "category": "Electronics", + "sku": "ELEC-00041", + "price": 41768.94, + "stock": 417, + "status": "Active" + }, + { + "id": 42, + "productName": "Premium Power Bank", + "category": "Electronics", + "sku": "ELEC-00042", + "price": 38647.93, + "stock": 424, + "status": "Active" + }, + { + "id": 43, + "productName": "Premium Smartwatch", + "category": "Electronics", + "sku": "ELEC-00043", + "price": 3752.66, + "stock": 416, + "status": "Active" + }, + { + "id": 44, + "productName": "Smart Shirt", + "category": "Clothing", + "sku": "CLOT-00044", + "price": 345.26, + "stock": 211, + "status": "Active" + }, + { + "id": 45, + "productName": "Portable Anthology", + "category": "Books", + "sku": "BOOK-00045", + "price": 813.24, + "stock": 159, + "status": "Active" + }, + { + "id": 46, + "productName": "Ultra Face Cream", + "category": "Beauty", + "sku": "BEAU-00046", + "price": 4477.54, + "stock": 435, + "status": "Active" + }, + { + "id": 47, + "productName": "Compact Textbook", + "category": "Books", + "sku": "BOOK-00047", + "price": 1328.93, + "stock": 247, + "status": "Active" + }, + { + "id": 48, + "productName": "Smart Textbook", + "category": "Books", + "sku": "BOOK-00048", + "price": 1501.5, + "stock": 83, + "status": "Active" + }, + { + "id": 49, + "productName": "Ultra Textbook", + "category": "Books", + "sku": "BOOK-00049", + "price": 604.92, + "stock": 72, + "status": "Active" + }, + { + "id": 50, + "productName": "Premium Knife Set", + "category": "Home & Kitchen", + "sku": "HOME-00050", + "price": 24904.87, + "stock": 151, + "status": "Active" + }, + { + "id": 51, + "productName": "Classic Planner", + "category": "Office", + "sku": "OFFC-00051", + "price": 234.62, + "stock": 27, + "status": "Active" + }, + { + "id": 52, + "productName": "Portable Olive Oil", + "category": "Grocery", + "sku": "GROC-00052", + "price": 1631.99, + "stock": 155, + "status": "Active" + }, + { + "id": 53, + "productName": "Portable Novel", + "category": "Books", + "sku": "BOOK-00053", + "price": 1306.97, + "stock": 416, + "status": "Active" + }, + { + "id": 54, + "productName": "Classic Kurta", + "category": "Clothing", + "sku": "CLOT-00054", + "price": 2019.37, + "stock": 246, + "status": "Active" + }, + { + "id": 55, + "productName": "Durable Smartwatch", + "category": "Electronics", + "sku": "ELEC-00055", + "price": 38039.16, + "stock": 444, + "status": "Active" + }, + { + "id": 56, + "productName": "Durable Remote Car", + "category": "Toys", + "sku": "TOYS-00056", + "price": 8301.73, + "stock": 440, + "status": "Active" + }, + { + "id": 57, + "productName": "Compact Conditioner", + "category": "Beauty", + "sku": "BEAU-00057", + "price": 4088.26, + "stock": 118, + "status": "Active" + }, + { + "id": 58, + "productName": "Eco Serum", + "category": "Beauty", + "sku": "BEAU-00058", + "price": 3050.76, + "stock": 43, + "status": "Active" + }, + { + "id": 59, + "productName": "Eco Biography", + "category": "Books", + "sku": "BOOK-00059", + "price": 1677.05, + "stock": 4, + "status": "Active" + }, + { + "id": 60, + "productName": "Portable Cookbook", + "category": "Books", + "sku": "BOOK-00060", + "price": 570.38, + "stock": 224, + "status": "Active" + }, + { + "id": 61, + "productName": "Wireless Dark Chocolate", + "category": "Grocery", + "sku": "GROC-00061", + "price": 1455.56, + "stock": 42, + "status": "Active" + }, + { + "id": 62, + "productName": "Smart Dumbbells", + "category": "Sports", + "sku": "SPRT-00062", + "price": 13028.3, + "stock": 332, + "status": "Active" + }, + { + "id": 63, + "productName": "Compact Biography", + "category": "Books", + "sku": "BOOK-00063", + "price": 1065.45, + "stock": 227, + "status": "Active" + }, + { + "id": 64, + "productName": "Ergonomic Jeans", + "category": "Clothing", + "sku": "CLOT-00064", + "price": 7009.82, + "stock": 132, + "status": "Active" + }, + { + "id": 65, + "productName": "Compact Dark Chocolate", + "category": "Grocery", + "sku": "GROC-00065", + "price": 1199.24, + "stock": 36, + "status": "Active" + }, + { + "id": 66, + "productName": "Compact Jacket", + "category": "Clothing", + "sku": "CLOT-00066", + "price": 2737.39, + "stock": 66, + "status": "Active" + }, + { + "id": 67, + "productName": "Classic Cookbook", + "category": "Books", + "sku": "BOOK-00067", + "price": 1172.22, + "stock": 274, + "status": "Active" + }, + { + "id": 68, + "productName": "Wireless Air Fryer", + "category": "Home & Kitchen", + "sku": "HOME-00068", + "price": 27110.63, + "stock": 102, + "status": "Active" + }, + { + "id": 69, + "productName": "Smart Jeans", + "category": "Clothing", + "sku": "CLOT-00069", + "price": 4922.11, + "stock": 282, + "status": "Active" + }, + { + "id": 70, + "productName": "Ultra Cricket Bat", + "category": "Sports", + "sku": "SPRT-00070", + "price": 16360.46, + "stock": 338, + "status": "Active" + }, + { + "id": 71, + "productName": "Ultra Biography", + "category": "Books", + "sku": "BOOK-00071", + "price": 1727.63, + "stock": 357, + "status": "Active" + }, + { + "id": 72, + "productName": "Durable Keyboard", + "category": "Electronics", + "sku": "ELEC-00072", + "price": 129426.39, + "stock": 268, + "status": "Active" + }, + { + "id": 73, + "productName": "Ultra Mouse", + "category": "Electronics", + "sku": "ELEC-00073", + "price": 143771.74, + "stock": 92, + "status": "Active" + }, + { + "id": 74, + "productName": "Ergonomic Cycling Helmet", + "category": "Sports", + "sku": "SPRT-00074", + "price": 20433.89, + "stock": 195, + "status": "Active" + }, + { + "id": 75, + "productName": "Smart Guide", + "category": "Books", + "sku": "BOOK-00075", + "price": 304.35, + "stock": 72, + "status": "Active" + }, + { + "id": 76, + "productName": "Compact Face Cream", + "category": "Beauty", + "sku": "BEAU-00076", + "price": 5690.37, + "stock": 490, + "status": "Active" + }, + { + "id": 77, + "productName": "Durable Laptop", + "category": "Electronics", + "sku": "ELEC-00077", + "price": 60976.79, + "stock": 487, + "status": "Active" + }, + { + "id": 78, + "productName": "Premium Desk Lamp", + "category": "Office", + "sku": "OFFC-00078", + "price": 168.13, + "stock": 84, + "status": "Active" + }, + { + "id": 79, + "productName": "Compact Puzzle", + "category": "Toys", + "sku": "TOYS-00079", + "price": 7298.78, + "stock": 17, + "status": "Active" + }, + { + "id": 80, + "productName": "Wireless Jeans", + "category": "Clothing", + "sku": "CLOT-00080", + "price": 3151.87, + "stock": 492, + "status": "Active" + }, + { + "id": 81, + "productName": "Wireless Guide", + "category": "Books", + "sku": "BOOK-00081", + "price": 1879.0, + "stock": 230, + "status": "Active" + }, + { + "id": 82, + "productName": "Premium Anthology", + "category": "Books", + "sku": "BOOK-00082", + "price": 392.47, + "stock": 188, + "status": "Active" + }, + { + "id": 83, + "productName": "Compact Laptop", + "category": "Electronics", + "sku": "ELEC-00083", + "price": 99689.75, + "stock": 419, + "status": "Active" + }, + { + "id": 84, + "productName": "Wireless Olive Oil", + "category": "Grocery", + "sku": "GROC-00084", + "price": 99.28, + "stock": 195, + "status": "Active" + }, + { + "id": 85, + "productName": "Durable Jacket", + "category": "Clothing", + "sku": "CLOT-00085", + "price": 1796.69, + "stock": 382, + "status": "Active" + }, + { + "id": 86, + "productName": "Eco Guide", + "category": "Books", + "sku": "BOOK-00086", + "price": 186.83, + "stock": 409, + "status": "Active" + }, + { + "id": 87, + "productName": "Smart Desk Lamp", + "category": "Office", + "sku": "OFFC-00087", + "price": 5197.3, + "stock": 497, + "status": "Active" + }, + { + "id": 88, + "productName": "Wireless Honey", + "category": "Grocery", + "sku": "GROC-00088", + "price": 1667.75, + "stock": 446, + "status": "Active" + }, + { + "id": 89, + "productName": "Ultra Smartwatch", + "category": "Electronics", + "sku": "ELEC-00089", + "price": 101189.73, + "stock": 200, + "status": "Active" + }, + { + "id": 90, + "productName": "Eco Honey", + "category": "Grocery", + "sku": "GROC-00090", + "price": 1130.56, + "stock": 362, + "status": "Active" + }, + { + "id": 91, + "productName": "Classic Toaster", + "category": "Home & Kitchen", + "sku": "HOME-00091", + "price": 11539.85, + "stock": 294, + "status": "Active" + }, + { + "id": 92, + "productName": "Wireless Tennis Racket", + "category": "Sports", + "sku": "SPRT-00092", + "price": 390.28, + "stock": 354, + "status": "Active" + }, + { + "id": 93, + "productName": "Smart Pen Set", + "category": "Office", + "sku": "OFFC-00093", + "price": 6923.23, + "stock": 368, + "status": "Active" + }, + { + "id": 94, + "productName": "Compact Almonds", + "category": "Grocery", + "sku": "GROC-00094", + "price": 1446.12, + "stock": 117, + "status": "Active" + }, + { + "id": 95, + "productName": "Ultra Face Cream", + "category": "Beauty", + "sku": "BEAU-00095", + "price": 2686.34, + "stock": 463, + "status": "Active" + }, + { + "id": 96, + "productName": "Eco Dumbbells", + "category": "Sports", + "sku": "SPRT-00096", + "price": 2751.41, + "stock": 238, + "status": "Active" + }, + { + "id": 97, + "productName": "Portable Building Blocks", + "category": "Toys", + "sku": "TOYS-00097", + "price": 3256.85, + "stock": 177, + "status": "Active" + }, + { + "id": 98, + "productName": "Ergonomic Board Game", + "category": "Toys", + "sku": "TOYS-00098", + "price": 3582.09, + "stock": 440, + "status": "Active" + }, + { + "id": 99, + "productName": "Compact Dumbbells", + "category": "Sports", + "sku": "SPRT-00099", + "price": 24871.33, + "stock": 5, + "status": "Active" + }, + { + "id": 100, + "productName": "Ergonomic T-Shirt", + "category": "Clothing", + "sku": "CLOT-00100", + "price": 3966.85, + "stock": 350, + "status": "Active" + }, + { + "id": 101, + "productName": "Ultra Stuffed Toy", + "category": "Toys", + "sku": "TOYS-00101", + "price": 4517.38, + "stock": 465, + "status": "Active" + }, + { + "id": 102, + "productName": "Compact Cricket Bat", + "category": "Sports", + "sku": "SPRT-00102", + "price": 13713.27, + "stock": 158, + "status": "Active" + }, + { + "id": 103, + "productName": "Eco Anthology", + "category": "Books", + "sku": "BOOK-00103", + "price": 268.18, + "stock": 478, + "status": "Active" + }, + { + "id": 104, + "productName": "Smart Cycling Helmet", + "category": "Sports", + "sku": "SPRT-00104", + "price": 1415.22, + "stock": 476, + "status": "Active" + }, + { + "id": 105, + "productName": "Premium Conditioner", + "category": "Beauty", + "sku": "BEAU-00105", + "price": 8078.41, + "stock": 289, + "status": "Active" + }, + { + "id": 106, + "productName": "Classic Dark Chocolate", + "category": "Grocery", + "sku": "GROC-00106", + "price": 914.06, + "stock": 172, + "status": "Active" + }, + { + "id": 107, + "productName": "Durable Pen Set", + "category": "Office", + "sku": "OFFC-00107", + "price": 9862.8, + "stock": 436, + "status": "Active" + }, + { + "id": 108, + "productName": "Compact Cookbook", + "category": "Books", + "sku": "BOOK-00108", + "price": 1929.75, + "stock": 253, + "status": "Active" + }, + { + "id": 109, + "productName": "Classic Perfume", + "category": "Beauty", + "sku": "BEAU-00109", + "price": 2457.44, + "stock": 51, + "status": "Active" + }, + { + "id": 110, + "productName": "Ergonomic Tennis Racket", + "category": "Sports", + "sku": "SPRT-00110", + "price": 3260.29, + "stock": 374, + "status": "Active" + }, + { + "id": 111, + "productName": "Durable Stuffed Toy", + "category": "Toys", + "sku": "TOYS-00111", + "price": 4815.16, + "stock": 387, + "status": "Active" + }, + { + "id": 112, + "productName": "Wireless Laptop", + "category": "Electronics", + "sku": "ELEC-00112", + "price": 137112.59, + "stock": 117, + "status": "Active" + }, + { + "id": 113, + "productName": "Premium Cookbook", + "category": "Books", + "sku": "BOOK-00113", + "price": 914.52, + "stock": 21, + "status": "Active" + }, + { + "id": 114, + "productName": "Classic Cricket Bat", + "category": "Sports", + "sku": "SPRT-00114", + "price": 13035.5, + "stock": 420, + "status": "Active" + }, + { + "id": 115, + "productName": "Portable Anthology", + "category": "Books", + "sku": "BOOK-00115", + "price": 322.45, + "stock": 419, + "status": "Active" + }, + { + "id": 116, + "productName": "Ergonomic Basmati Rice", + "category": "Grocery", + "sku": "GROC-00116", + "price": 408.8, + "stock": 459, + "status": "Active" + }, + { + "id": 117, + "productName": "Smart Serum", + "category": "Beauty", + "sku": "BEAU-00117", + "price": 1779.59, + "stock": 58, + "status": "Active" + }, + { + "id": 118, + "productName": "Eco Cookware Set", + "category": "Home & Kitchen", + "sku": "HOME-00118", + "price": 20084.22, + "stock": 135, + "status": "Active" + }, + { + "id": 119, + "productName": "Wireless Jeans", + "category": "Clothing", + "sku": "CLOT-00119", + "price": 463.24, + "stock": 245, + "status": "Active" + }, + { + "id": 120, + "productName": "Durable Planner", + "category": "Office", + "sku": "OFFC-00120", + "price": 3596.87, + "stock": 143, + "status": "Active" + }, + { + "id": 121, + "productName": "Eco Basmati Rice", + "category": "Grocery", + "sku": "GROC-00121", + "price": 1650.87, + "stock": 215, + "status": "Active" + }, + { + "id": 122, + "productName": "Ergonomic Puzzle", + "category": "Toys", + "sku": "TOYS-00122", + "price": 1023.51, + "stock": 498, + "status": "Active" + }, + { + "id": 123, + "productName": "Smart Notebook", + "category": "Office", + "sku": "OFFC-00123", + "price": 479.08, + "stock": 393, + "status": "Active" + }, + { + "id": 124, + "productName": "Classic Air Fryer", + "category": "Home & Kitchen", + "sku": "HOME-00124", + "price": 20882.17, + "stock": 101, + "status": "Active" + }, + { + "id": 125, + "productName": "Portable Football", + "category": "Sports", + "sku": "SPRT-00125", + "price": 3547.28, + "stock": 27, + "status": "Active" + }, + { + "id": 126, + "productName": "Smart Yoga Mat", + "category": "Sports", + "sku": "SPRT-00126", + "price": 18870.41, + "stock": 430, + "status": "Active" + }, + { + "id": 127, + "productName": "Ultra Filing Tray", + "category": "Office", + "sku": "OFFC-00127", + "price": 9648.88, + "stock": 352, + "status": "Active" + }, + { + "id": 128, + "productName": "Classic Dumbbells", + "category": "Sports", + "sku": "SPRT-00128", + "price": 2187.98, + "stock": 187, + "status": "Active" + }, + { + "id": 129, + "productName": "Durable Mouse", + "category": "Electronics", + "sku": "ELEC-00129", + "price": 3909.64, + "stock": 331, + "status": "Active" + }, + { + "id": 130, + "productName": "Wireless Cookbook", + "category": "Books", + "sku": "BOOK-00130", + "price": 1712.53, + "stock": 28, + "status": "Active" + }, + { + "id": 131, + "productName": "Portable Shampoo", + "category": "Beauty", + "sku": "BEAU-00131", + "price": 7292.35, + "stock": 168, + "status": "Active" + }, + { + "id": 132, + "productName": "Ultra Desk Lamp", + "category": "Office", + "sku": "OFFC-00132", + "price": 774.39, + "stock": 343, + "status": "Active" + }, + { + "id": 133, + "productName": "Eco Stuffed Toy", + "category": "Toys", + "sku": "TOYS-00133", + "price": 4793.14, + "stock": 417, + "status": "Active" + }, + { + "id": 134, + "productName": "Durable Conditioner", + "category": "Beauty", + "sku": "BEAU-00134", + "price": 1594.4, + "stock": 290, + "status": "Active" + }, + { + "id": 135, + "productName": "Ergonomic Basmati Rice", + "category": "Grocery", + "sku": "GROC-00135", + "price": 539.31, + "stock": 301, + "status": "Active" + }, + { + "id": 136, + "productName": "Wireless Honey", + "category": "Grocery", + "sku": "GROC-00136", + "price": 1327.69, + "stock": 135, + "status": "Active" + }, + { + "id": 137, + "productName": "Classic Mixer", + "category": "Home & Kitchen", + "sku": "HOME-00137", + "price": 10919.68, + "stock": 268, + "status": "Active" + }, + { + "id": 138, + "productName": "Compact Conditioner", + "category": "Beauty", + "sku": "BEAU-00138", + "price": 3961.47, + "stock": 45, + "status": "Active" + }, + { + "id": 139, + "productName": "Classic Charger", + "category": "Electronics", + "sku": "ELEC-00139", + "price": 90950.12, + "stock": 354, + "status": "Active" + }, + { + "id": 140, + "productName": "Portable Textbook", + "category": "Books", + "sku": "BOOK-00140", + "price": 270.13, + "stock": 139, + "status": "Active" + }, + { + "id": 141, + "productName": "Ultra Tennis Racket", + "category": "Sports", + "sku": "SPRT-00141", + "price": 8798.29, + "stock": 56, + "status": "Active" + }, + { + "id": 142, + "productName": "Ergonomic Guide", + "category": "Books", + "sku": "BOOK-00142", + "price": 1736.46, + "stock": 365, + "status": "Active" + }, + { + "id": 143, + "productName": "Eco Dark Chocolate", + "category": "Grocery", + "sku": "GROC-00143", + "price": 902.05, + "stock": 256, + "status": "Active" + }, + { + "id": 144, + "productName": "Ergonomic Almonds", + "category": "Grocery", + "sku": "GROC-00144", + "price": 1231.05, + "stock": 375, + "status": "Active" + }, + { + "id": 145, + "productName": "Durable Textbook", + "category": "Books", + "sku": "BOOK-00145", + "price": 601.58, + "stock": 388, + "status": "Active" + }, + { + "id": 146, + "productName": "Eco Laptop", + "category": "Electronics", + "sku": "ELEC-00146", + "price": 123625.04, + "stock": 304, + "status": "Active" + }, + { + "id": 147, + "productName": "Ultra Board Game", + "category": "Toys", + "sku": "TOYS-00147", + "price": 4185.99, + "stock": 403, + "status": "Active" + }, + { + "id": 148, + "productName": "Ergonomic Shampoo", + "category": "Beauty", + "sku": "BEAU-00148", + "price": 7987.08, + "stock": 428, + "status": "Active" + }, + { + "id": 149, + "productName": "Premium Jacket", + "category": "Clothing", + "sku": "CLOT-00149", + "price": 4431.51, + "stock": 438, + "status": "Active" + }, + { + "id": 150, + "productName": "Ergonomic Camera", + "category": "Electronics", + "sku": "ELEC-00150", + "price": 89941.0, + "stock": 9, + "status": "Active" + }, + { + "id": 151, + "productName": "Portable Serum", + "category": "Beauty", + "sku": "BEAU-00151", + "price": 7573.76, + "stock": 334, + "status": "Active" + }, + { + "id": 152, + "productName": "Smart Board Game", + "category": "Toys", + "sku": "TOYS-00152", + "price": 199.12, + "stock": 137, + "status": "Active" + }, + { + "id": 153, + "productName": "Ergonomic Desk Lamp", + "category": "Office", + "sku": "OFFC-00153", + "price": 6839.51, + "stock": 215, + "status": "Active" + }, + { + "id": 154, + "productName": "Portable Water Bottle", + "category": "Home & Kitchen", + "sku": "HOME-00154", + "price": 9898.94, + "stock": 272, + "status": "Active" + }, + { + "id": 155, + "productName": "Durable Puzzle", + "category": "Toys", + "sku": "TOYS-00155", + "price": 4524.12, + "stock": 250, + "status": "Active" + }, + { + "id": 156, + "productName": "Premium Perfume", + "category": "Beauty", + "sku": "BEAU-00156", + "price": 8203.58, + "stock": 450, + "status": "Active" + }, + { + "id": 157, + "productName": "Portable Jacket", + "category": "Clothing", + "sku": "CLOT-00157", + "price": 2699.72, + "stock": 427, + "status": "Active" + }, + { + "id": 158, + "productName": "Smart Board Game", + "category": "Toys", + "sku": "TOYS-00158", + "price": 8661.23, + "stock": 208, + "status": "Active" + }, + { + "id": 159, + "productName": "Eco Biography", + "category": "Books", + "sku": "BOOK-00159", + "price": 377.9, + "stock": 481, + "status": "Active" + }, + { + "id": 160, + "productName": "Durable Shampoo", + "category": "Beauty", + "sku": "BEAU-00160", + "price": 8619.87, + "stock": 328, + "status": "Active" + }, + { + "id": 161, + "productName": "Wireless Cricket Bat", + "category": "Sports", + "sku": "SPRT-00161", + "price": 23784.42, + "stock": 274, + "status": "Active" + }, + { + "id": 162, + "productName": "Portable Filing Tray", + "category": "Office", + "sku": "OFFC-00162", + "price": 5625.22, + "stock": 298, + "status": "Active" + }, + { + "id": 163, + "productName": "Wireless Tennis Racket", + "category": "Sports", + "sku": "SPRT-00163", + "price": 19076.78, + "stock": 90, + "status": "Active" + }, + { + "id": 164, + "productName": "Wireless Planner", + "category": "Office", + "sku": "OFFC-00164", + "price": 640.93, + "stock": 412, + "status": "Active" + }, + { + "id": 165, + "productName": "Durable Sneakers", + "category": "Clothing", + "sku": "CLOT-00165", + "price": 813.49, + "stock": 388, + "status": "Active" + }, + { + "id": 166, + "productName": "Portable Olive Oil", + "category": "Grocery", + "sku": "GROC-00166", + "price": 1724.27, + "stock": 437, + "status": "Active" + }, + { + "id": 167, + "productName": "Ergonomic Olive Oil", + "category": "Grocery", + "sku": "GROC-00167", + "price": 455.88, + "stock": 7, + "status": "Active" + }, + { + "id": 168, + "productName": "Smart Face Cream", + "category": "Beauty", + "sku": "BEAU-00168", + "price": 6698.23, + "stock": 30, + "status": "Active" + }, + { + "id": 169, + "productName": "Durable Perfume", + "category": "Beauty", + "sku": "BEAU-00169", + "price": 2800.55, + "stock": 290, + "status": "Active" + }, + { + "id": 170, + "productName": "Durable Dress", + "category": "Clothing", + "sku": "CLOT-00170", + "price": 3960.29, + "stock": 428, + "status": "Active" + }, + { + "id": 171, + "productName": "Eco Tennis Racket", + "category": "Sports", + "sku": "SPRT-00171", + "price": 8203.45, + "stock": 259, + "status": "Active" + }, + { + "id": 172, + "productName": "Ergonomic Anthology", + "category": "Books", + "sku": "BOOK-00172", + "price": 1984.48, + "stock": 490, + "status": "Active" + }, + { + "id": 173, + "productName": "Premium Tennis Racket", + "category": "Sports", + "sku": "SPRT-00173", + "price": 1471.22, + "stock": 136, + "status": "Active" + }, + { + "id": 174, + "productName": "Premium Coffee Maker", + "category": "Home & Kitchen", + "sku": "HOME-00174", + "price": 19488.74, + "stock": 340, + "status": "Active" + }, + { + "id": 175, + "productName": "Durable Cookbook", + "category": "Books", + "sku": "BOOK-00175", + "price": 1482.79, + "stock": 342, + "status": "Active" + }, + { + "id": 176, + "productName": "Portable Serum", + "category": "Beauty", + "sku": "BEAU-00176", + "price": 9700.99, + "stock": 125, + "status": "Active" + }, + { + "id": 177, + "productName": "Durable Sneakers", + "category": "Clothing", + "sku": "CLOT-00177", + "price": 2380.8, + "stock": 249, + "status": "Active" + }, + { + "id": 178, + "productName": "Smart Anthology", + "category": "Books", + "sku": "BOOK-00178", + "price": 243.94, + "stock": 261, + "status": "Active" + }, + { + "id": 179, + "productName": "Portable Remote Car", + "category": "Toys", + "sku": "TOYS-00179", + "price": 8187.48, + "stock": 120, + "status": "Active" + }, + { + "id": 180, + "productName": "Compact Textbook", + "category": "Books", + "sku": "BOOK-00180", + "price": 1818.18, + "stock": 481, + "status": "Active" + }, + { + "id": 181, + "productName": "Ultra Perfume", + "category": "Beauty", + "sku": "BEAU-00181", + "price": 9462.18, + "stock": 50, + "status": "Active" + }, + { + "id": 182, + "productName": "Compact Textbook", + "category": "Books", + "sku": "BOOK-00182", + "price": 594.21, + "stock": 69, + "status": "Active" + }, + { + "id": 183, + "productName": "Ergonomic Water Bottle", + "category": "Home & Kitchen", + "sku": "HOME-00183", + "price": 9994.3, + "stock": 50, + "status": "Active" + }, + { + "id": 184, + "productName": "Compact Olive Oil", + "category": "Grocery", + "sku": "GROC-00184", + "price": 1704.87, + "stock": 135, + "status": "Active" + }, + { + "id": 185, + "productName": "Smart Stuffed Toy", + "category": "Toys", + "sku": "TOYS-00185", + "price": 972.18, + "stock": 1, + "status": "Active" + }, + { + "id": 186, + "productName": "Compact Dress", + "category": "Clothing", + "sku": "CLOT-00186", + "price": 1707.25, + "stock": 357, + "status": "Active" + }, + { + "id": 187, + "productName": "Compact Stuffed Toy", + "category": "Toys", + "sku": "TOYS-00187", + "price": 2593.91, + "stock": 273, + "status": "Active" + }, + { + "id": 188, + "productName": "Durable Anthology", + "category": "Books", + "sku": "BOOK-00188", + "price": 1037.6, + "stock": 426, + "status": "Active" + }, + { + "id": 189, + "productName": "Classic Almonds", + "category": "Grocery", + "sku": "GROC-00189", + "price": 182.66, + "stock": 460, + "status": "Active" + }, + { + "id": 190, + "productName": "Ultra Coffee Maker", + "category": "Home & Kitchen", + "sku": "HOME-00190", + "price": 24016.25, + "stock": 354, + "status": "Active" + }, + { + "id": 191, + "productName": "Ultra Planner", + "category": "Office", + "sku": "OFFC-00191", + "price": 9152.49, + "stock": 66, + "status": "Active" + }, + { + "id": 192, + "productName": "Ultra Remote Car", + "category": "Toys", + "sku": "TOYS-00192", + "price": 9494.34, + "stock": 301, + "status": "Active" + }, + { + "id": 193, + "productName": "Compact Toaster", + "category": "Home & Kitchen", + "sku": "HOME-00193", + "price": 27575.55, + "stock": 257, + "status": "Active" + }, + { + "id": 194, + "productName": "Compact Cycling Helmet", + "category": "Sports", + "sku": "SPRT-00194", + "price": 5946.19, + "stock": 441, + "status": "Active" + }, + { + "id": 195, + "productName": "Smart Face Cream", + "category": "Beauty", + "sku": "BEAU-00195", + "price": 9400.86, + "stock": 262, + "status": "Active" + }, + { + "id": 196, + "productName": "Premium Dress", + "category": "Clothing", + "sku": "CLOT-00196", + "price": 2178.58, + "stock": 394, + "status": "Active" + }, + { + "id": 197, + "productName": "Premium Yoga Mat", + "category": "Sports", + "sku": "SPRT-00197", + "price": 22992.17, + "stock": 428, + "status": "Active" + }, + { + "id": 198, + "productName": "Smart T-Shirt", + "category": "Clothing", + "sku": "CLOT-00198", + "price": 6291.3, + "stock": 191, + "status": "Active" + }, + { + "id": 199, + "productName": "Classic Notebook", + "category": "Office", + "sku": "OFFC-00199", + "price": 8646.04, + "stock": 152, + "status": "Active" + }, + { + "id": 200, + "productName": "Classic Anthology", + "category": "Books", + "sku": "BOOK-00200", + "price": 1137.82, + "stock": 254, + "status": "Active" + }, + { + "id": 201, + "productName": "Smart Serum", + "category": "Beauty", + "sku": "BEAU-00201", + "price": 117.09, + "stock": 189, + "status": "Active" + }, + { + "id": 202, + "productName": "Compact Serum", + "category": "Beauty", + "sku": "BEAU-00202", + "price": 9512.38, + "stock": 207, + "status": "Active" + }, + { + "id": 203, + "productName": "Ergonomic Honey", + "category": "Grocery", + "sku": "GROC-00203", + "price": 1181.37, + "stock": 254, + "status": "Active" + }, + { + "id": 204, + "productName": "Smart Dress", + "category": "Clothing", + "sku": "CLOT-00204", + "price": 4533.88, + "stock": 376, + "status": "Active" + }, + { + "id": 205, + "productName": "Portable Notebook", + "category": "Office", + "sku": "OFFC-00205", + "price": 2551.36, + "stock": 450, + "status": "Active" + }, + { + "id": 206, + "productName": "Portable Almonds", + "category": "Grocery", + "sku": "GROC-00206", + "price": 1187.18, + "stock": 106, + "status": "Active" + }, + { + "id": 207, + "productName": "Portable Almonds", + "category": "Grocery", + "sku": "GROC-00207", + "price": 220.8, + "stock": 443, + "status": "Active" + }, + { + "id": 208, + "productName": "Durable Basmati Rice", + "category": "Grocery", + "sku": "GROC-00208", + "price": 1525.79, + "stock": 50, + "status": "Active" + }, + { + "id": 209, + "productName": "Portable Bluetooth Speaker", + "category": "Beauty", + "sku": "ELEC-00209", + "price": 14764.9, + "stock": 90, + "status": "Active" + }, + { + "id": 210, + "productName": "Durable Perfume", + "category": "Clothing", + "sku": "BEAU-00210", + "price": 1376.84, + "stock": 495, + "status": "Active" + }, + { + "id": 211, + "productName": "Smart Stuffed Toy", + "category": "Toys", + "sku": "TOYS-00211", + "price": 1161.67, + "stock": 391, + "status": "Active" + }, + { + "id": 212, + "productName": "Premium Anthology", + "category": "Books", + "sku": "BOOK-00212", + "price": 1312.12, + "stock": 421, + "status": "Active" + }, + { + "id": 213, + "productName": "Premium Serum", + "category": "Beauty", + "sku": "BEAU-00213", + "price": 4885.56, + "stock": 202, + "status": "Active" + }, + { + "id": 214, + "productName": "Smart Planner", + "category": "Office", + "sku": "OFFC-00214", + "price": 7938.14, + "stock": 368, + "status": "Active" + }, + { + "id": 215, + "productName": "Wireless Bluetooth Speaker", + "category": "Electronics", + "sku": "ELEC-00215", + "price": 71556.56, + "stock": 468, + "status": "Active" + }, + { + "id": 216, + "productName": "Smart Cycling Helmet", + "category": "Sports", + "sku": "SPRT-00216", + "price": 18120.7, + "stock": 321, + "status": "Active" + }, + { + "id": 217, + "productName": "Ergonomic Cricket Bat", + "category": "Sports", + "sku": "SPRT-00217", + "price": 5843.98, + "stock": 169, + "status": "Active" + }, + { + "id": 218, + "productName": "Durable Basmati Rice", + "category": "Grocery", + "sku": "GROC-00218", + "price": 600.38, + "stock": 9, + "status": "Active" + }, + { + "id": 219, + "productName": "Wireless Biography", + "category": "Books", + "sku": "BOOK-00219", + "price": 1644.32, + "stock": 448, + "status": "Active" + }, + { + "id": 220, + "productName": "Durable Serum", + "category": "Beauty", + "sku": "BEAU-00220", + "price": 9561.88, + "stock": 361, + "status": "Active" + }, + { + "id": 221, + "productName": "Durable Toaster", + "category": "Home & Kitchen", + "sku": "HOME-00221", + "price": 28797.24, + "stock": 77, + "status": "Active" + }, + { + "id": 222, + "productName": "Durable Tennis Racket", + "category": "Sports", + "sku": "SPRT-00222", + "price": 13502.6, + "stock": 51, + "status": "Active" + }, + { + "id": 223, + "productName": "Classic Textbook", + "category": "Books", + "sku": "BOOK-00223", + "price": 836.69, + "stock": 370, + "status": "Active" + }, + { + "id": 224, + "productName": "Classic Anthology", + "category": "Books", + "sku": "BOOK-00224", + "price": 1548.77, + "stock": 198, + "status": "Active" + }, + { + "id": 225, + "productName": "Ergonomic Vacuum Cleaner", + "category": "Home & Kitchen", + "sku": "HOME-00225", + "price": 15132.23, + "stock": 51, + "status": "Active" + }, + { + "id": 226, + "productName": "Wireless Face Cream", + "category": "Beauty", + "sku": "BEAU-00226", + "price": 3752.2, + "stock": 376, + "status": "Active" + }, + { + "id": 227, + "productName": "Ultra Monitor", + "category": "Electronics", + "sku": "ELEC-00227", + "price": 29594.31, + "stock": 84, + "status": "Active" + }, + { + "id": 228, + "productName": "Ergonomic Football", + "category": "Sports", + "sku": "SPRT-00228", + "price": 3559.23, + "stock": 55, + "status": "Active" + }, + { + "id": 229, + "productName": "Portable Face Cream", + "category": "Beauty", + "sku": "BEAU-00229", + "price": 1100.16, + "stock": 495, + "status": "Active" + }, + { + "id": 230, + "productName": "Classic Vacuum Cleaner", + "category": "Home & Kitchen", + "sku": "HOME-00230", + "price": 6133.68, + "stock": 175, + "status": "Active" + }, + { + "id": 231, + "productName": "Ultra Planner", + "category": "Office", + "sku": "OFFC-00231", + "price": 6387.09, + "stock": 449, + "status": "Active" + }, + { + "id": 232, + "productName": "Durable Conditioner", + "category": "Beauty", + "sku": "BEAU-00232", + "price": 7844.75, + "stock": 122, + "status": "Active" + }, + { + "id": 233, + "productName": "Ergonomic T-Shirt", + "category": "Clothing", + "sku": "CLOT-00233", + "price": 5773.6, + "stock": 173, + "status": "Active" + }, + { + "id": 234, + "productName": "Compact Basmati Rice", + "category": "Grocery", + "sku": "GROC-00234", + "price": 1622.74, + "stock": 94, + "status": "Active" + }, + { + "id": 235, + "productName": "Durable Building Blocks", + "category": "Toys", + "sku": "TOYS-00235", + "price": 9818.82, + "stock": 433, + "status": "Active" + }, + { + "id": 236, + "productName": "Smart Shampoo", + "category": "Beauty", + "sku": "BEAU-00236", + "price": 1474.71, + "stock": 496, + "status": "Active" + }, + { + "id": 237, + "productName": "Compact Cycling Helmet", + "category": "Sports", + "sku": "SPRT-00237", + "price": 11622.64, + "stock": 389, + "status": "Active" + }, + { + "id": 238, + "productName": "Ultra Yoga Mat", + "category": "Sports", + "sku": "SPRT-00238", + "price": 17214.94, + "stock": 406, + "status": "Active" + }, + { + "id": 239, + "productName": "Smart Basmati Rice", + "category": "Grocery", + "sku": "GROC-00239", + "price": 1409.41, + "stock": 425, + "status": "Active" + }, + { + "id": 240, + "productName": "Smart Sneakers", + "category": "Clothing", + "sku": "CLOT-00240", + "price": 5374.16, + "stock": 298, + "status": "Active" + }, + { + "id": 241, + "productName": "Eco T-Shirt", + "category": "Clothing", + "sku": "CLOT-00241", + "price": 6406.18, + "stock": 334, + "status": "Active" + }, + { + "id": 242, + "productName": "Premium Jeans", + "category": "Clothing", + "sku": "CLOT-00242", + "price": 1358.39, + "stock": 228, + "status": "Active" + }, + { + "id": 243, + "productName": "Smart Dark Chocolate", + "category": "Grocery", + "sku": "GROC-00243", + "price": 228.89, + "stock": 57, + "status": "Active" + }, + { + "id": 244, + "productName": "Ergonomic Shirt", + "category": "Clothing", + "sku": "CLOT-00244", + "price": 2393.16, + "stock": 85, + "status": "Active" + }, + { + "id": 245, + "productName": "Classic Toaster", + "category": "Home & Kitchen", + "sku": "HOME-00245", + "price": 23637.75, + "stock": 110, + "status": "Active" + }, + { + "id": 246, + "productName": "Ergonomic Honey", + "category": "Grocery", + "sku": "GROC-00246", + "price": 312.01, + "stock": 136, + "status": "Active" + }, + { + "id": 247, + "productName": "Portable Bluetooth Speaker", + "category": "Electronics", + "sku": "ELEC-00247", + "price": 80702.92, + "stock": 343, + "status": "Active" + }, + { + "id": 248, + "productName": "Eco Sneakers", + "category": "Clothing", + "sku": "CLOT-00248", + "price": 7303.47, + "stock": 368, + "status": "Active" + }, + { + "id": 249, + "productName": "Compact Tennis Racket", + "category": "Sports", + "sku": "SPRT-00249", + "price": 6828.73, + "stock": 311, + "status": "Active" + }, + { + "id": 250, + "productName": "Smart Conditioner", + "category": "Beauty", + "sku": "BEAU-00250", + "price": 7996.13, + "stock": 236, + "status": "Active" + }, + { + "id": 251, + "productName": "Compact Cricket Bat", + "category": "Sports", + "sku": "SPRT-00251", + "price": 10217.51, + "stock": 375, + "status": "Active" + }, + { + "id": 252, + "productName": "Ultra Anthology", + "category": "Books", + "sku": "BOOK-00252", + "price": 1993.81, + "stock": 437, + "status": "Active" + }, + { + "id": 253, + "productName": "Ergonomic Dark Chocolate", + "category": "Grocery", + "sku": "GROC-00253", + "price": 1559.39, + "stock": 81, + "status": "Active" + }, + { + "id": 254, + "productName": "Classic Stuffed Toy", + "category": "Toys", + "sku": "TOYS-00254", + "price": 5313.72, + "stock": 219, + "status": "Active" + }, + { + "id": 255, + "productName": "Smart Remote Car", + "category": "Toys", + "sku": "TOYS-00255", + "price": 8172.15, + "stock": 429, + "status": "Active" + }, + { + "id": 256, + "productName": "Wireless Cookware Set", + "category": "Home & Kitchen", + "sku": "HOME-00256", + "price": 6187.54, + "stock": 81, + "status": "Active" + }, + { + "id": 257, + "productName": "Classic Sneakers", + "category": "Clothing", + "sku": "CLOT-00257", + "price": 2298.75, + "stock": 419, + "status": "Active" + }, + { + "id": 258, + "productName": "Ergonomic Almonds", + "category": "Grocery", + "sku": "GROC-00258", + "price": 1748.08, + "stock": 333, + "status": "Active" + }, + { + "id": 259, + "productName": "Ultra Dress", + "category": "Clothing", + "sku": "CLOT-00259", + "price": 6142.08, + "stock": 421, + "status": "Active" + }, + { + "id": 260, + "productName": "Classic Conditioner", + "category": "Beauty", + "sku": "BEAU-00260", + "price": 1376.4, + "stock": 309, + "status": "Active" + }, + { + "id": 261, + "productName": "Eco Jacket", + "category": "Clothing", + "sku": "CLOT-00261", + "price": 4005.64, + "stock": 311, + "status": "Active" + }, + { + "id": 262, + "productName": "Portable Basmati Rice", + "category": "Grocery", + "sku": "GROC-00262", + "price": 457.12, + "stock": 65, + "status": "Active" + }, + { + "id": 263, + "productName": "Smart Stuffed Toy", + "category": "Toys", + "sku": "TOYS-00263", + "price": 404.0, + "stock": 205, + "status": "Active" + }, + { + "id": 264, + "productName": "Ultra Power Bank", + "category": "Electronics", + "sku": "ELEC-00264", + "price": 139285.84, + "stock": 365, + "status": "Active" + }, + { + "id": 265, + "productName": "Durable Kurta", + "category": "Clothing", + "sku": "CLOT-00265", + "price": 5909.83, + "stock": 190, + "status": "Active" + }, + { + "id": 266, + "productName": "Compact Charger", + "category": "Electronics", + "sku": "ELEC-00266", + "price": 3684.36, + "stock": 29, + "status": "Active" + }, + { + "id": 267, + "productName": "Ergonomic Jacket", + "category": "Clothing", + "sku": "CLOT-00267", + "price": 5324.68, + "stock": 95, + "status": "Active" + }, + { + "id": 268, + "productName": "Ultra Air Fryer", + "category": "Home & Kitchen", + "sku": "HOME-00268", + "price": 22291.67, + "stock": 381, + "status": "Active" + }, + { + "id": 269, + "productName": "Wireless Laptop", + "category": "Electronics", + "sku": "ELEC-00269", + "price": 131198.29, + "stock": 486, + "status": "Active" + }, + { + "id": 270, + "productName": "Wireless Face Cream", + "category": "Beauty", + "sku": "BEAU-00270", + "price": 6774.67, + "stock": 365, + "status": "Active" + }, + { + "id": 271, + "productName": "Compact Remote Car", + "category": "Toys", + "sku": "TOYS-00271", + "price": 7968.55, + "stock": 228, + "status": "Active" + }, + { + "id": 272, + "productName": "Durable Serum", + "category": "Beauty", + "sku": "BEAU-00272", + "price": 3779.9, + "stock": 476, + "status": "Active" + }, + { + "id": 273, + "productName": "Durable Headphones", + "category": "Electronics", + "sku": "ELEC-00273", + "price": 100454.88, + "stock": 275, + "status": "Active" + }, + { + "id": 274, + "productName": "Durable Yoga Mat", + "category": "Sports", + "sku": "SPRT-00274", + "price": 7412.5, + "stock": 285, + "status": "Active" + }, + { + "id": 275, + "productName": "Durable Dumbbells", + "category": "Sports", + "sku": "SPRT-00275", + "price": 5612.15, + "stock": 391, + "status": "Active" + }, + { + "id": 276, + "productName": "Portable Puzzle", + "category": "Toys", + "sku": "TOYS-00276", + "price": 8091.72, + "stock": 370, + "status": "Active" + }, + { + "id": 277, + "productName": "Premium Mixer", + "category": "Home & Kitchen", + "sku": "HOME-00277", + "price": 24681.94, + "stock": 191, + "status": "Active" + }, + { + "id": 278, + "productName": "Ultra Camera", + "category": "Electronics", + "sku": "ELEC-00278", + "price": 9126.85, + "stock": 409, + "status": "Active" + }, + { + "id": 279, + "productName": "Ergonomic Textbook", + "category": "Books", + "sku": "BOOK-00279", + "price": 1397.87, + "stock": 420, + "status": "Active" + }, + { + "id": 280, + "productName": "Ergonomic Textbook", + "category": "Books", + "sku": "BOOK-00280", + "price": 450.28, + "stock": 13, + "status": "Active" + }, + { + "id": 281, + "productName": "Ergonomic Mixer", + "category": "Home & Kitchen", + "sku": "HOME-00281", + "price": 15359.18, + "stock": 195, + "status": "Active" + }, + { + "id": 282, + "productName": "Durable Anthology", + "category": "Books", + "sku": "BOOK-00282", + "price": 1834.24, + "stock": 375, + "status": "Active" + }, + { + "id": 283, + "productName": "Compact Guide", + "category": "Books", + "sku": "BOOK-00283", + "price": 139.82, + "stock": 374, + "status": "Active" + }, + { + "id": 284, + "productName": "Smart Knife Set", + "category": "Home & Kitchen", + "sku": "HOME-00284", + "price": 904.61, + "stock": 132, + "status": "Active" + }, + { + "id": 285, + "productName": "Ultra Face Cream", + "category": "Beauty", + "sku": "BEAU-00285", + "price": 5696.48, + "stock": 44, + "status": "Active" + }, + { + "id": 286, + "productName": "Wireless Power Bank", + "category": "Electronics", + "sku": "ELEC-00286", + "price": 12899.15, + "stock": 370, + "status": "Active" + }, + { + "id": 287, + "productName": "Eco Novel", + "category": "Books", + "sku": "BOOK-00287", + "price": 248.61, + "stock": 292, + "status": "Active" + }, + { + "id": 288, + "productName": "Wireless Shirt", + "category": "Clothing", + "sku": "CLOT-00288", + "price": 6546.8, + "stock": 245, + "status": "Active" + }, + { + "id": 289, + "productName": "Portable Headphones", + "category": "Electronics", + "sku": "ELEC-00289", + "price": 120507.9, + "stock": 278, + "status": "Active" + }, + { + "id": 290, + "productName": "Ergonomic Water Bottle", + "category": "Home & Kitchen", + "sku": "HOME-00290", + "price": 1761.12, + "stock": 9, + "status": "Active" + }, + { + "id": 291, + "productName": "Classic Building Blocks", + "category": "Toys", + "sku": "TOYS-00291", + "price": 7641.26, + "stock": 185, + "status": "Active" + }, + { + "id": 292, + "productName": "Classic Keyboard", + "category": "Electronics", + "sku": "ELEC-00292", + "price": 85501.34, + "stock": 69, + "status": "Active" + }, + { + "id": 293, + "productName": "Smart Filing Tray", + "category": "Office", + "sku": "OFFC-00293", + "price": 3414.82, + "stock": 283, + "status": "Active" + }, + { + "id": 294, + "productName": "Compact Board Game", + "category": "Toys", + "sku": "TOYS-00294", + "price": 2653.12, + "stock": 423, + "status": "Active" + }, + { + "id": 295, + "productName": "Ultra Almonds", + "category": "Grocery", + "sku": "GROC-00295", + "price": 1715.66, + "stock": 33, + "status": "Active" + }, + { + "id": 296, + "productName": "Durable Jeans", + "category": "Clothing", + "sku": "CLOT-00296", + "price": 4565.59, + "stock": 351, + "status": "Active" + }, + { + "id": 297, + "productName": "Portable Notebook", + "category": "Office", + "sku": "OFFC-00297", + "price": 8335.11, + "stock": 375, + "status": "Active" + }, + { + "id": 298, + "productName": "Wireless Keyboard", + "category": "Electronics", + "sku": "ELEC-00298", + "price": 110535.02, + "stock": 370, + "status": "Active" + }, + { + "id": 299, + "productName": "Compact Filing Tray", + "category": "Office", + "sku": "OFFC-00299", + "price": 9675.14, + "stock": 463, + "status": "Active" + }, + { + "id": 300, + "productName": "Portable Honey", + "category": "Grocery", + "sku": "GROC-00300", + "price": 194.78, + "stock": 361, + "status": "Active" + }, + { + "id": 301, + "productName": "Eco Camera", + "category": "Electronics", + "sku": "ELEC-00301", + "price": 98166.96, + "stock": 35, + "status": "Active" + }, + { + "id": 302, + "productName": "Eco Face Cream", + "category": "Beauty", + "sku": "BEAU-00302", + "price": 9692.49, + "stock": 468, + "status": "Active" + }, + { + "id": 303, + "productName": "Ultra Notebook", + "category": "Office", + "sku": "OFFC-00303", + "price": 8384.81, + "stock": 313, + "status": "Active" + }, + { + "id": 304, + "productName": "Eco Notebook", + "category": "Office", + "sku": "OFFC-00304", + "price": 2522.65, + "stock": 304, + "status": "Active" + }, + { + "id": 305, + "productName": "Smart Mouse", + "category": "Electronics", + "sku": "ELEC-00305", + "price": 113103.56, + "stock": 347, + "status": "Active" + }, + { + "id": 306, + "productName": "Classic Monitor", + "category": "Electronics", + "sku": "ELEC-00306", + "price": 18792.25, + "stock": 442, + "status": "Active" + }, + { + "id": 307, + "productName": "Compact Dumbbells", + "category": "Sports", + "sku": "SPRT-00307", + "price": 23357.25, + "stock": 410, + "status": "Active" + }, + { + "id": 308, + "productName": "Compact Puzzle", + "category": "Toys", + "sku": "TOYS-00308", + "price": 9371.42, + "stock": 252, + "status": "Active" + }, + { + "id": 309, + "productName": "Durable Remote Car", + "category": "Toys", + "sku": "TOYS-00309", + "price": 5894.63, + "stock": 474, + "status": "Active" + }, + { + "id": 310, + "productName": "Premium Serum", + "category": "Beauty", + "sku": "BEAU-00310", + "price": 4184.59, + "stock": 342, + "status": "Active" + }, + { + "id": 311, + "productName": "Ergonomic Remote Car", + "category": "Toys", + "sku": "TOYS-00311", + "price": 4906.08, + "stock": 389, + "status": "Active" + }, + { + "id": 312, + "productName": "Premium Almonds", + "category": "Grocery", + "sku": "GROC-00312", + "price": 1519.29, + "stock": 212, + "status": "Active" + }, + { + "id": 313, + "productName": "Durable Cookbook", + "category": "Books", + "sku": "BOOK-00313", + "price": 273.56, + "stock": 85, + "status": "Active" + }, + { + "id": 314, + "productName": "Compact Yoga Mat", + "category": "Sports", + "sku": "SPRT-00314", + "price": 27140.43, + "stock": 474, + "status": "Active" + }, + { + "id": 315, + "productName": "Compact Tennis Racket", + "category": "Sports", + "sku": "SPRT-00315", + "price": 18384.59, + "stock": 285, + "status": "Active" + }, + { + "id": 316, + "productName": "Portable Filing Tray", + "category": "Office", + "sku": "OFFC-00316", + "price": 8486.81, + "stock": 213, + "status": "Active" + }, + { + "id": 317, + "productName": "Wireless Guide", + "category": "Books", + "sku": "BOOK-00317", + "price": 230.05, + "stock": 486, + "status": "Active" + }, + { + "id": 318, + "productName": "Classic Bluetooth Speaker", + "category": "Electronics", + "sku": "ELEC-00318", + "price": 4872.47, + "stock": 310, + "status": "Active" + }, + { + "id": 319, + "productName": "Portable Board Game", + "category": "Toys", + "sku": "TOYS-00319", + "price": 4691.99, + "stock": 332, + "status": "Active" + }, + { + "id": 320, + "productName": "Portable Dumbbells", + "category": "Sports", + "sku": "SPRT-00320", + "price": 15159.12, + "stock": 260, + "status": "Active" + }, + { + "id": 321, + "productName": "Premium Almonds", + "category": "Grocery", + "sku": "GROC-00321", + "price": 1383.93, + "stock": 290, + "status": "Active" + }, + { + "id": 322, + "productName": "Wireless Notebook", + "category": "Office", + "sku": "OFFC-00322", + "price": 2591.2, + "stock": 111, + "status": "Active" + }, + { + "id": 323, + "productName": "Wireless Jacket", + "category": "Clothing", + "sku": "CLOT-00323", + "price": 3900.67, + "stock": 436, + "status": "Active" + }, + { + "id": 324, + "productName": "Wireless Conditioner", + "category": "Beauty", + "sku": "BEAU-00324", + "price": 9500.11, + "stock": 60, + "status": "Active" + }, + { + "id": 325, + "productName": "Ergonomic Basmati Rice", + "category": "Grocery", + "sku": "GROC-00325", + "price": 275.98, + "stock": 282, + "status": "Active" + }, + { + "id": 326, + "productName": "Ergonomic Water Bottle", + "category": "Home & Kitchen", + "sku": "HOME-00326", + "price": 3405.0, + "stock": 169, + "status": "Active" + }, + { + "id": 327, + "productName": "Wireless Guide", + "category": "Books", + "sku": "BOOK-00327", + "price": 1651.37, + "stock": 435, + "status": "Active" + }, + { + "id": 328, + "productName": "Wireless Basmati Rice", + "category": "Grocery", + "sku": "GROC-00328", + "price": 1708.68, + "stock": 367, + "status": "Active" + }, + { + "id": 329, + "productName": "Durable Board Game", + "category": "Toys", + "sku": "TOYS-00329", + "price": 8120.37, + "stock": 53, + "status": "Active" + }, + { + "id": 330, + "productName": "Classic Dark Chocolate", + "category": "Grocery", + "sku": "GROC-00330", + "price": 1816.75, + "stock": 132, + "status": "Active" + }, + { + "id": 331, + "productName": "Wireless Conditioner", + "category": "Beauty", + "sku": "BEAU-00331", + "price": 3437.39, + "stock": 34, + "status": "Active" + }, + { + "id": 332, + "productName": "Portable Building Blocks", + "category": "Toys", + "sku": "TOYS-00332", + "price": 9558.31, + "stock": 62, + "status": "Active" + }, + { + "id": 333, + "productName": "Ultra Kurta", + "category": "Clothing", + "sku": "CLOT-00333", + "price": 4204.64, + "stock": 3, + "status": "Active" + }, + { + "id": 334, + "productName": "Premium Mouse", + "category": "Electronics", + "sku": "ELEC-00334", + "price": 73029.76, + "stock": 261, + "status": "Active" + }, + { + "id": 335, + "productName": "Portable Football", + "category": "Sports", + "sku": "SPRT-00335", + "price": 8480.78, + "stock": 490, + "status": "Active" + }, + { + "id": 336, + "productName": "Eco Sneakers", + "category": "Clothing", + "sku": "CLOT-00336", + "price": 3815.09, + "stock": 176, + "status": "Active" + }, + { + "id": 337, + "productName": "Ultra Conditioner", + "category": "Beauty", + "sku": "BEAU-00337", + "price": 9642.42, + "stock": 200, + "status": "Active" + }, + { + "id": 338, + "productName": "Ultra Knife Set", + "category": "Home & Kitchen", + "sku": "HOME-00338", + "price": 17834.87, + "stock": 284, + "status": "Active" + }, + { + "id": 339, + "productName": "Portable Mouse", + "category": "Electronics", + "sku": "ELEC-00339", + "price": 104501.78, + "stock": 463, + "status": "Active" + }, + { + "id": 340, + "productName": "Compact Shirt", + "category": "Clothing", + "sku": "CLOT-00340", + "price": 482.73, + "stock": 260, + "status": "Active" + }, + { + "id": 341, + "productName": "Durable Bluetooth Speaker", + "category": "Electronics", + "sku": "ELEC-00341", + "price": 73638.25, + "stock": 224, + "status": "Active" + }, + { + "id": 342, + "productName": "Portable Dumbbells", + "category": "Sports", + "sku": "SPRT-00342", + "price": 28588.69, + "stock": 471, + "status": "Active" + }, + { + "id": 343, + "productName": "Classic Desk Lamp", + "category": "Office", + "sku": "OFFC-00343", + "price": 7427.72, + "stock": 481, + "status": "Active" + }, + { + "id": 344, + "productName": "Ultra Dress", + "category": "Clothing", + "sku": "CLOT-00344", + "price": 4499.89, + "stock": 452, + "status": "Active" + }, + { + "id": 345, + "productName": "Classic Biography", + "category": "Books", + "sku": "BOOK-00345", + "price": 653.66, + "stock": 221, + "status": "Active" + }, + { + "id": 346, + "productName": "Smart T-Shirt", + "category": "Clothing", + "sku": "CLOT-00346", + "price": 881.5, + "stock": 166, + "status": "Active" + }, + { + "id": 347, + "productName": "Compact Dark Chocolate", + "category": "Grocery", + "sku": "GROC-00347", + "price": 432.21, + "stock": 102, + "status": "Active" + }, + { + "id": 348, + "productName": "Ergonomic Shampoo", + "category": "Beauty", + "sku": "BEAU-00348", + "price": 4707.62, + "stock": 427, + "status": "Active" + }, + { + "id": 349, + "productName": "Durable Air Fryer", + "category": "Home & Kitchen", + "sku": "HOME-00349", + "price": 19007.26, + "stock": 52, + "status": "Active" + }, + { + "id": 350, + "productName": "Wireless T-Shirt", + "category": "Clothing", + "sku": "CLOT-00350", + "price": 6519.81, + "stock": 28, + "status": "Active" + }, + { + "id": 351, + "productName": "Classic Cookbook", + "category": "Books", + "sku": "BOOK-00351", + "price": 483.34, + "stock": 320, + "status": "Active" + }, + { + "id": 352, + "productName": "Portable Yoga Mat", + "category": "Sports", + "sku": "SPRT-00352", + "price": 11367.84, + "stock": 166, + "status": "Active" + }, + { + "id": 353, + "productName": "Wireless Kurta", + "category": "Clothing", + "sku": "CLOT-00353", + "price": 4914.39, + "stock": 128, + "status": "Active" + }, + { + "id": 354, + "productName": "Eco Puzzle", + "category": "Toys", + "sku": "TOYS-00354", + "price": 9075.34, + "stock": 482, + "status": "Active" + }, + { + "id": 355, + "productName": "Wireless Kurta", + "category": "Clothing", + "sku": "CLOT-00355", + "price": 2213.94, + "stock": 369, + "status": "Active" + }, + { + "id": 356, + "productName": "Portable Jacket", + "category": "Clothing", + "sku": "CLOT-00356", + "price": 1696.13, + "stock": 319, + "status": "Active" + }, + { + "id": 357, + "productName": "Durable Cookbook", + "category": "Books", + "sku": "BOOK-00357", + "price": 138.54, + "stock": 227, + "status": "Active" + }, + { + "id": 358, + "productName": "Wireless Dress", + "category": "Clothing", + "sku": "CLOT-00358", + "price": 3008.43, + "stock": 299, + "status": "Active" + }, + { + "id": 359, + "productName": "Ergonomic Novel", + "category": "Books", + "sku": "BOOK-00359", + "price": 921.74, + "stock": 442, + "status": "Active" + }, + { + "id": 360, + "productName": "Eco Basmati Rice", + "category": "Grocery", + "sku": "GROC-00360", + "price": 110.41, + "stock": 465, + "status": "Active" + }, + { + "id": 361, + "productName": "Durable Football", + "category": "Sports", + "sku": "SPRT-00361", + "price": 25559.69, + "stock": 115, + "status": "Active" + }, + { + "id": 362, + "productName": "Classic Dark Chocolate", + "category": "Grocery", + "sku": "GROC-00362", + "price": 1331.16, + "stock": 456, + "status": "Active" + }, + { + "id": 363, + "productName": "Smart Cookbook", + "category": "Books", + "sku": "BOOK-00363", + "price": 541.69, + "stock": 399, + "status": "Active" + }, + { + "id": 364, + "productName": "Smart Laptop", + "category": "Electronics", + "sku": "ELEC-00364", + "price": 14736.73, + "stock": 80, + "status": "Active" + }, + { + "id": 365, + "productName": "Compact Camera", + "category": "Electronics", + "sku": "ELEC-00365", + "price": 6506.42, + "stock": 52, + "status": "Active" + }, + { + "id": 366, + "productName": "Compact Water Bottle", + "category": "Home & Kitchen", + "sku": "HOME-00366", + "price": 7388.46, + "stock": 318, + "status": "Active" + }, + { + "id": 367, + "productName": "Portable Basmati Rice", + "category": "Grocery", + "sku": "GROC-00367", + "price": 201.92, + "stock": 481, + "status": "Active" + }, + { + "id": 368, + "productName": "Ergonomic Olive Oil", + "category": "Grocery", + "sku": "GROC-00368", + "price": 1945.8, + "stock": 445, + "status": "Active" + }, + { + "id": 369, + "productName": "Portable Building Blocks", + "category": "Toys", + "sku": "TOYS-00369", + "price": 2461.14, + "stock": 404, + "status": "Active" + }, + { + "id": 370, + "productName": "Durable Basmati Rice", + "category": "Grocery", + "sku": "GROC-00370", + "price": 1983.57, + "stock": 295, + "status": "Active" + }, + { + "id": 371, + "productName": "Wireless T-Shirt", + "category": "Clothing", + "sku": "CLOT-00371", + "price": 6236.95, + "stock": 359, + "status": "Active" + }, + { + "id": 372, + "productName": "Ergonomic Pen Set", + "category": "Office", + "sku": "OFFC-00372", + "price": 8546.36, + "stock": 412, + "status": "Active" + }, + { + "id": 373, + "productName": "Ergonomic Mixer", + "category": "Home & Kitchen", + "sku": "HOME-00373", + "price": 4776.76, + "stock": 221, + "status": "Active" + }, + { + "id": 374, + "productName": "Premium Water Bottle", + "category": "Home & Kitchen", + "sku": "HOME-00374", + "price": 11377.04, + "stock": 106, + "status": "Active" + }, + { + "id": 375, + "productName": "Classic Almonds", + "category": "Grocery", + "sku": "GROC-00375", + "price": 661.97, + "stock": 228, + "status": "Active" + }, + { + "id": 376, + "productName": "Smart Serum", + "category": "Beauty", + "sku": "BEAU-00376", + "price": 3169.67, + "stock": 214, + "status": "Active" + }, + { + "id": 377, + "productName": "Portable Face Cream", + "category": "Beauty", + "sku": "BEAU-00377", + "price": 8844.48, + "stock": 160, + "status": "Active" + }, + { + "id": 378, + "productName": "Ultra Conditioner", + "category": "Beauty", + "sku": "BEAU-00378", + "price": 5521.57, + "stock": 313, + "status": "Active" + }, + { + "id": 379, + "productName": "Durable Almonds", + "category": "Grocery", + "sku": "GROC-00379", + "price": 905.05, + "stock": 279, + "status": "Active" + }, + { + "id": 380, + "productName": "Durable Stuffed Toy", + "category": "Toys", + "sku": "TOYS-00380", + "price": 9206.32, + "stock": 239, + "status": "Active" + }, + { + "id": 381, + "productName": "Classic Puzzle", + "category": "Toys", + "sku": "TOYS-00381", + "price": 8915.88, + "stock": 283, + "status": "Active" + }, + { + "id": 382, + "productName": "Compact Camera", + "category": "Electronics", + "sku": "ELEC-00382", + "price": 60993.96, + "stock": 79, + "status": "Active" + }, + { + "id": 383, + "productName": "Ultra Almonds", + "category": "Grocery", + "sku": "GROC-00383", + "price": 1121.96, + "stock": 222, + "status": "Active" + }, + { + "id": 384, + "productName": "Premium Cookware Set", + "category": "Home & Kitchen", + "sku": "HOME-00384", + "price": 24032.01, + "stock": 487, + "status": "Active" + }, + { + "id": 385, + "productName": "Eco Tennis Racket", + "category": "Sports", + "sku": "SPRT-00385", + "price": 3693.58, + "stock": 69, + "status": "Active" + }, + { + "id": 386, + "productName": "Durable Tennis Racket", + "category": "Sports", + "sku": "SPRT-00386", + "price": 17188.35, + "stock": 357, + "status": "Active" + }, + { + "id": 387, + "productName": "Eco Yoga Mat", + "category": "Sports", + "sku": "SPRT-00387", + "price": 418.25, + "stock": 443, + "status": "Active" + }, + { + "id": 388, + "productName": "Classic Dark Chocolate", + "category": "Grocery", + "sku": "GROC-00388", + "price": 1090.09, + "stock": 81, + "status": "Active" + }, + { + "id": 389, + "productName": "Wireless Camera", + "category": "Electronics", + "sku": "ELEC-00389", + "price": 15273.89, + "stock": 281, + "status": "Active" + }, + { + "id": 390, + "productName": "Classic Pen Set", + "category": "Office", + "sku": "OFFC-00390", + "price": 5487.19, + "stock": 14, + "status": "Active" + }, + { + "id": 391, + "productName": "Eco Mouse", + "category": "Electronics", + "sku": "ELEC-00391", + "price": 116030.61, + "stock": 181, + "status": "Active" + }, + { + "id": 392, + "productName": "Compact Board Game", + "category": "Toys", + "sku": "TOYS-00392", + "price": 6978.47, + "stock": 271, + "status": "Active" + }, + { + "id": 393, + "productName": "Premium Water Bottle", + "category": "Home & Kitchen", + "sku": "HOME-00393", + "price": 28829.26, + "stock": 109, + "status": "Active" + }, + { + "id": 394, + "productName": "Smart Building Blocks", + "category": "Toys", + "sku": "TOYS-00394", + "price": 2855.05, + "stock": 286, + "status": "Active" + }, + { + "id": 395, + "productName": "Compact T-Shirt", + "category": "Clothing", + "sku": "CLOT-00395", + "price": 1461.13, + "stock": 26, + "status": "Active" + }, + { + "id": 396, + "productName": "Wireless Face Cream", + "category": "Beauty", + "sku": "BEAU-00396", + "price": 5626.92, + "stock": 239, + "status": "Active" + }, + { + "id": 397, + "productName": "Wireless Face Cream", + "category": "Beauty", + "sku": "BEAU-00397", + "price": 3876.11, + "stock": 390, + "status": "Active" + }, + { + "id": 398, + "productName": "Premium Almonds", + "category": "Grocery", + "sku": "GROC-00398", + "price": 1835.95, + "stock": 319, + "status": "Active" + }, + { + "id": 399, + "productName": "Ultra Coffee Maker", + "category": "Home & Kitchen", + "sku": "HOME-00399", + "price": 20912.02, + "stock": 276, + "status": "Active" + }, + { + "id": 400, + "productName": "Ergonomic Charger", + "category": "Electronics", + "sku": "ELEC-00400", + "price": 85163.02, + "stock": 353, + "status": "Active" + }, + { + "id": 401, + "productName": "Compact Filing Tray", + "category": "Office", + "sku": "OFFC-00401", + "price": 1467.22, + "stock": 234, + "status": "Active" + }, + { + "id": 402, + "productName": "Classic Coffee Maker", + "category": "Home & Kitchen", + "sku": "HOME-00402", + "price": 5995.78, + "stock": 457, + "status": "Active" + }, + { + "id": 403, + "productName": "Eco Novel", + "category": "Books", + "sku": "BOOK-00403", + "price": 614.82, + "stock": 122, + "status": "Active" + }, + { + "id": 404, + "productName": "Eco Conditioner", + "category": "Beauty", + "sku": "BEAU-00404", + "price": 7384.78, + "stock": 451, + "status": "Active" + }, + { + "id": 405, + "productName": "Premium Smartwatch", + "category": "Electronics", + "sku": "ELEC-00405", + "price": 48176.03, + "stock": 483, + "status": "Active" + }, + { + "id": 406, + "productName": "Eco Building Blocks", + "category": "Toys", + "sku": "TOYS-00406", + "price": 3622.22, + "stock": 279, + "status": "Active" + }, + { + "id": 407, + "productName": "Compact Yoga Mat", + "category": "Sports", + "sku": "SPRT-00407", + "price": 4558.13, + "stock": 257, + "status": "Active" + }, + { + "id": 408, + "productName": "Smart Dark Chocolate", + "category": "Grocery", + "sku": "GROC-00408", + "price": 1615.73, + "stock": 173, + "status": "Active" + }, + { + "id": 409, + "productName": "Ultra Olive Oil", + "category": "Grocery", + "sku": "GROC-00409", + "price": 999.85, + "stock": 378, + "status": "Active" + }, + { + "id": 410, + "productName": "Compact Stuffed Toy", + "category": "Toys", + "sku": "TOYS-00410", + "price": 8930.13, + "stock": 70, + "status": "Active" + }, + { + "id": 411, + "productName": "Classic Kurta", + "category": "Clothing", + "sku": "CLOT-00411", + "price": 1973.26, + "stock": 262, + "status": "Active" + }, + { + "id": 412, + "productName": "Premium Jacket", + "category": "Clothing", + "sku": "CLOT-00412", + "price": 572.19, + "stock": 417, + "status": "Active" + }, + { + "id": 413, + "productName": "Classic Mouse", + "category": "Electronics", + "sku": "ELEC-00413", + "price": 130927.52, + "stock": 184, + "status": "Active" + }, + { + "id": 414, + "productName": "Compact Laptop", + "category": "Electronics", + "sku": "ELEC-00414", + "price": 131091.12, + "stock": 449, + "status": "Active" + }, + { + "id": 415, + "productName": "Premium Dress", + "category": "Clothing", + "sku": "CLOT-00415", + "price": 7742.0, + "stock": 128, + "status": "Active" + }, + { + "id": 416, + "productName": "Portable Perfume", + "category": "Beauty", + "sku": "BEAU-00416", + "price": 8019.42, + "stock": 431, + "status": "Active" + }, + { + "id": 417, + "productName": "Classic Filing Tray", + "category": "Office", + "sku": "OFFC-00417", + "price": 8147.47, + "stock": 30, + "status": "Active" + }, + { + "id": 418, + "productName": "Ultra Stuffed Toy", + "category": "Toys", + "sku": "TOYS-00418", + "price": 8138.25, + "stock": 461, + "status": "Active" + }, + { + "id": 419, + "productName": "Eco Cookbook", + "category": "Books", + "sku": "BOOK-00419", + "price": 327.84, + "stock": 15, + "status": "Active" + }, + { + "id": 420, + "productName": "Classic Water Bottle", + "category": "Home & Kitchen", + "sku": "HOME-00420", + "price": 11384.54, + "stock": 95, + "status": "Active" + }, + { + "id": 421, + "productName": "Durable Cricket Bat", + "category": "Sports", + "sku": "SPRT-00421", + "price": 28658.68, + "stock": 78, + "status": "Active" + }, + { + "id": 422, + "productName": "Classic Stuffed Toy", + "category": "Toys", + "sku": "TOYS-00422", + "price": 315.95, + "stock": 419, + "status": "Active" + }, + { + "id": 423, + "productName": "Classic Smartwatch", + "category": "Electronics", + "sku": "ELEC-00423", + "price": 109004.78, + "stock": 374, + "status": "Active" + }, + { + "id": 424, + "productName": "Portable Laptop", + "category": "Electronics", + "sku": "ELEC-00424", + "price": 13872.11, + "stock": 4, + "status": "Active" + }, + { + "id": 425, + "productName": "Portable Olive Oil", + "category": "Grocery", + "sku": "GROC-00425", + "price": 1495.05, + "stock": 163, + "status": "Active" + }, + { + "id": 426, + "productName": "Ergonomic Dark Chocolate", + "category": "Grocery", + "sku": "GROC-00426", + "price": 1535.06, + "stock": 351, + "status": "Active" + }, + { + "id": 427, + "productName": "Durable Laptop", + "category": "Electronics", + "sku": "ELEC-00427", + "price": 123428.57, + "stock": 127, + "status": "Active" + }, + { + "id": 428, + "productName": "Smart Stuffed Toy", + "category": "Toys", + "sku": "TOYS-00428", + "price": 7839.81, + "stock": 395, + "status": "Active" + }, + { + "id": 429, + "productName": "Ultra Conditioner", + "category": "Beauty", + "sku": "BEAU-00429", + "price": 2030.78, + "stock": 279, + "status": "Active" + }, + { + "id": 430, + "productName": "Compact Kurta", + "category": "Clothing", + "sku": "CLOT-00430", + "price": 5700.76, + "stock": 378, + "status": "Active" + }, + { + "id": 431, + "productName": "Compact Honey", + "category": "Grocery", + "sku": "GROC-00431", + "price": 514.76, + "stock": 422, + "status": "Active" + }, + { + "id": 432, + "productName": "Compact Keyboard", + "category": "Electronics", + "sku": "ELEC-00432", + "price": 1023.18, + "stock": 492, + "status": "Active" + }, + { + "id": 433, + "productName": "Durable Shirt", + "category": "Clothing", + "sku": "CLOT-00433", + "price": 7248.47, + "stock": 317, + "status": "Active" + }, + { + "id": 434, + "productName": "Premium Cookware Set", + "category": "Home & Kitchen", + "sku": "HOME-00434", + "price": 5590.81, + "stock": 47, + "status": "Active" + }, + { + "id": 435, + "productName": "Portable Board Game", + "category": "Toys", + "sku": "TOYS-00435", + "price": 7385.64, + "stock": 283, + "status": "Active" + }, + { + "id": 436, + "productName": "Wireless Keyboard", + "category": "Electronics", + "sku": "ELEC-00436", + "price": 58571.12, + "stock": 309, + "status": "Active" + }, + { + "id": 437, + "productName": "Durable Honey", + "category": "Grocery", + "sku": "GROC-00437", + "price": 1462.35, + "stock": 369, + "status": "Active" + }, + { + "id": 438, + "productName": "Durable Mouse", + "category": "Electronics", + "sku": "ELEC-00438", + "price": 124413.2, + "stock": 345, + "status": "Active" + }, + { + "id": 439, + "productName": "Eco Planner", + "category": "Office", + "sku": "OFFC-00439", + "price": 3618.8, + "stock": 420, + "status": "Active" + }, + { + "id": 440, + "productName": "Wireless Sneakers", + "category": "Clothing", + "sku": "CLOT-00440", + "price": 7874.85, + "stock": 41, + "status": "Active" + }, + { + "id": 441, + "productName": "Smart Notebook", + "category": "Office", + "sku": "OFFC-00441", + "price": 2116.31, + "stock": 455, + "status": "Active" + }, + { + "id": 442, + "productName": "Compact Mixer", + "category": "Home & Kitchen", + "sku": "HOME-00442", + "price": 27676.89, + "stock": 159, + "status": "Active" + }, + { + "id": 443, + "productName": "Portable Pen Set", + "category": "Office", + "sku": "OFFC-00443", + "price": 4552.87, + "stock": 108, + "status": "Active" + }, + { + "id": 444, + "productName": "Premium Stuffed Toy", + "category": "Toys", + "sku": "TOYS-00444", + "price": 6583.22, + "stock": 281, + "status": "Active" + }, + { + "id": 445, + "productName": "Ultra Mixer", + "category": "Home & Kitchen", + "sku": "HOME-00445", + "price": 17806.63, + "stock": 401, + "status": "Active" + }, + { + "id": 446, + "productName": "Ergonomic Building Blocks", + "category": "Toys", + "sku": "TOYS-00446", + "price": 2407.97, + "stock": 237, + "status": "Active" + }, + { + "id": 447, + "productName": "Durable Air Fryer", + "category": "Home & Kitchen", + "sku": "HOME-00447", + "price": 1414.17, + "stock": 202, + "status": "Active" + }, + { + "id": 448, + "productName": "Wireless Board Game", + "category": "Toys", + "sku": "TOYS-00448", + "price": 8961.04, + "stock": 358, + "status": "Active" + }, + { + "id": 449, + "productName": "Premium Cookbook", + "category": "Books", + "sku": "BOOK-00449", + "price": 570.11, + "stock": 156, + "status": "Active" + }, + { + "id": 450, + "productName": "Premium Dumbbells", + "category": "Sports", + "sku": "SPRT-00450", + "price": 17874.69, + "stock": 398, + "status": "Active" + }, + { + "id": 451, + "productName": "Ultra Air Fryer", + "category": "Home & Kitchen", + "sku": "HOME-00451", + "price": 20765.02, + "stock": 417, + "status": "Active" + }, + { + "id": 452, + "productName": "Ultra Conditioner", + "category": "Beauty", + "sku": "BEAU-00452", + "price": 2991.09, + "stock": 125, + "status": "Active" + }, + { + "id": 453, + "productName": "Wireless Air Fryer", + "category": "Home & Kitchen", + "sku": "HOME-00453", + "price": 27683.84, + "stock": 311, + "status": "Active" + }, + { + "id": 454, + "productName": "Ergonomic Guide", + "category": "Books", + "sku": "BOOK-00454", + "price": 494.4, + "stock": 128, + "status": "Active" + }, + { + "id": 455, + "productName": "Smart Guide", + "category": "Books", + "sku": "BOOK-00455", + "price": 1659.33, + "stock": 429, + "status": "Active" + }, + { + "id": 456, + "productName": "Durable Shampoo", + "category": "Beauty", + "sku": "BEAU-00456", + "price": 7112.88, + "stock": 301, + "status": "Active" + }, + { + "id": 457, + "productName": "Eco Cycling Helmet", + "category": "Sports", + "sku": "SPRT-00457", + "price": 25045.55, + "stock": 425, + "status": "Active" + }, + { + "id": 458, + "productName": "Classic Toaster", + "category": "Home & Kitchen", + "sku": "HOME-00458", + "price": 18922.51, + "stock": 86, + "status": "Active" + }, + { + "id": 459, + "productName": "Premium Planner", + "category": "Office", + "sku": "OFFC-00459", + "price": 7651.19, + "stock": 118, + "status": "Active" + }, + { + "id": 460, + "productName": "Wireless Jacket", + "category": "Clothing", + "sku": "CLOT-00460", + "price": 5057.05, + "stock": 370, + "status": "Active" + }, + { + "id": 461, + "productName": "Wireless Smartwatch", + "category": "Electronics", + "sku": "ELEC-00461", + "price": 109652.4, + "stock": 23, + "status": "Active" + }, + { + "id": 462, + "productName": "Durable Textbook", + "category": "Books", + "sku": "BOOK-00462", + "price": 1156.91, + "stock": 28, + "status": "Active" + }, + { + "id": 463, + "productName": "Ergonomic Remote Car", + "category": "Toys", + "sku": "TOYS-00463", + "price": 8368.98, + "stock": 115, + "status": "Active" + }, + { + "id": 464, + "productName": "Durable Face Cream", + "category": "Beauty", + "sku": "BEAU-00464", + "price": 2330.54, + "stock": 204, + "status": "Active" + }, + { + "id": 465, + "productName": "Ultra Remote Car", + "category": "Toys", + "sku": "TOYS-00465", + "price": 4221.96, + "stock": 22, + "status": "Active" + }, + { + "id": 466, + "productName": "Wireless Vacuum Cleaner", + "category": "Home & Kitchen", + "sku": "HOME-00466", + "price": 23879.01, + "stock": 273, + "status": "Active" + }, + { + "id": 467, + "productName": "Portable Desk Lamp", + "category": "Office", + "sku": "OFFC-00467", + "price": 3965.13, + "stock": 108, + "status": "Active" + }, + { + "id": 468, + "productName": "Compact Textbook", + "category": "Books", + "sku": "BOOK-00468", + "price": 1326.24, + "stock": 275, + "status": "Active" + }, + { + "id": 469, + "productName": "Ergonomic Cookbook", + "category": "Books", + "sku": "BOOK-00469", + "price": 1263.87, + "stock": 454, + "status": "Active" + }, + { + "id": 470, + "productName": "Classic Honey", + "category": "Grocery", + "sku": "GROC-00470", + "price": 609.56, + "stock": 487, + "status": "Active" + }, + { + "id": 471, + "productName": "Compact Vacuum Cleaner", + "category": "Home & Kitchen", + "sku": "HOME-00471", + "price": 28083.44, + "stock": 446, + "status": "Active" + }, + { + "id": 472, + "productName": "Wireless Textbook", + "category": "Books", + "sku": "BOOK-00472", + "price": 829.76, + "stock": 149, + "status": "Active" + }, + { + "id": 473, + "productName": "Wireless T-Shirt", + "category": "Clothing", + "sku": "CLOT-00473", + "price": 6904.55, + "stock": 389, + "status": "Active" + }, + { + "id": 474, + "productName": "Ergonomic Face Cream", + "category": "Beauty", + "sku": "BEAU-00474", + "price": 9029.85, + "stock": 374, + "status": "Active" + }, + { + "id": 475, + "productName": "Wireless Almonds", + "category": "Grocery", + "sku": "GROC-00475", + "price": 1992.79, + "stock": 121, + "status": "Active" + }, + { + "id": 476, + "productName": "Ultra Shirt", + "category": "Clothing", + "sku": "CLOT-00476", + "price": 1650.32, + "stock": 428, + "status": "Active" + }, + { + "id": 477, + "productName": "Portable Dress", + "category": "Clothing", + "sku": "CLOT-00477", + "price": 7272.33, + "stock": 374, + "status": "Active" + }, + { + "id": 478, + "productName": "Classic Shampoo", + "category": "Beauty", + "sku": "BEAU-00478", + "price": 5522.61, + "stock": 448, + "status": "Active" + }, + { + "id": 479, + "productName": "Ultra Dress", + "category": "Clothing", + "sku": "CLOT-00479", + "price": 4272.31, + "stock": 195, + "status": "Active" + }, + { + "id": 480, + "productName": "Durable Jacket", + "category": "Clothing", + "sku": "CLOT-00480", + "price": 4875.68, + "stock": 91, + "status": "Active" + }, + { + "id": 481, + "productName": "Ergonomic Cricket Bat", + "category": "Sports", + "sku": "SPRT-00481", + "price": 24304.86, + "stock": 387, + "status": "Active" + }, + { + "id": 482, + "productName": "Durable Planner", + "category": "Office", + "sku": "OFFC-00482", + "price": 8387.01, + "stock": 423, + "status": "Active" + }, + { + "id": 483, + "productName": "Compact Conditioner", + "category": "Beauty", + "sku": "BEAU-00483", + "price": 5573.1, + "stock": 181, + "status": "Active" + }, + { + "id": 484, + "productName": "Smart Laptop", + "category": "Electronics", + "sku": "ELEC-00484", + "price": 6538.93, + "stock": 266, + "status": "Active" + }, + { + "id": 485, + "productName": "Premium Olive Oil", + "category": "Grocery", + "sku": "GROC-00485", + "price": 1993.23, + "stock": 304, + "status": "Active" + }, + { + "id": 486, + "productName": "Eco Board Game", + "category": "Toys", + "sku": "TOYS-00486", + "price": 976.57, + "stock": 319, + "status": "Active" + }, + { + "id": 487, + "productName": "Ergonomic Building Blocks", + "category": "Toys", + "sku": "TOYS-00487", + "price": 2454.17, + "stock": 370, + "status": "Active" + }, + { + "id": 488, + "productName": "Smart Knife Set", + "category": "Home & Kitchen", + "sku": "HOME-00488", + "price": 7474.97, + "stock": 107, + "status": "Active" + }, + { + "id": 489, + "productName": "Ultra Pen Set", + "category": "Office", + "sku": "OFFC-00489", + "price": 3364.94, + "stock": 261, + "status": "Active" + }, + { + "id": 490, + "productName": "Classic Honey", + "category": "Grocery", + "sku": "GROC-00490", + "price": 712.31, + "stock": 2, + "status": "Active" + }, + { + "id": 491, + "productName": "Eco Vacuum Cleaner", + "category": "Home & Kitchen", + "sku": "HOME-00491", + "price": 15568.58, + "stock": 219, + "status": "Active" + }, + { + "id": 492, + "productName": "Durable Keyboard", + "category": "Electronics", + "sku": "ELEC-00492", + "price": 28833.0, + "stock": 407, + "status": "Active" + }, + { + "id": 493, + "productName": "Eco Notebook", + "category": "Office", + "sku": "OFFC-00493", + "price": 2130.43, + "stock": 110, + "status": "Active" + }, + { + "id": 494, + "productName": "Ergonomic Yoga Mat", + "category": "Sports", + "sku": "SPRT-00494", + "price": 13444.35, + "stock": 311, + "status": "Active" + }, + { + "id": 495, + "productName": "Eco Knife Set", + "category": "Home & Kitchen", + "sku": "HOME-00495", + "price": 19327.18, + "stock": 203, + "status": "Active" + }, + { + "id": 496, + "productName": "Smart Cricket Bat", + "category": "Sports", + "sku": "SPRT-00496", + "price": 7915.76, + "stock": 435, + "status": "Active" + }, + { + "id": 497, + "productName": "Classic Air Fryer", + "category": "Home & Kitchen", + "sku": "HOME-00497", + "price": 17644.0, + "stock": 49, + "status": "Active" + }, + { + "id": 498, + "productName": "Portable Air Fryer", + "category": "Home & Kitchen", + "sku": "HOME-00498", + "price": 10681.29, + "stock": 172, + "status": "Active" + }, + { + "id": 499, + "productName": "Ultra Planner", + "category": "Office", + "sku": "OFFC-00499", + "price": 4249.72, + "stock": 344, + "status": "Active" + }, + { + "id": 500, + "productName": "Ultra Dumbbells", + "category": "Sports", + "sku": "SPRT-00500", + "price": 9109.23, + "stock": 456, + "status": "Active" + }, + { + "id": 501, + "productName": "Premium Filing Tray", + "category": "Office", + "sku": "OFFC-00501", + "price": 3250.97, + "stock": 260, + "status": "Active" + }, + { + "id": 502, + "productName": "Durable Basmati Rice", + "category": "Grocery", + "sku": "GROC-00502", + "price": 1294.69, + "stock": 168, + "status": "Active" + }, + { + "id": 503, + "productName": "Wireless Serum", + "category": "Beauty", + "sku": "BEAU-00503", + "price": 1450.83, + "stock": 423, + "status": "Active" + }, + { + "id": 504, + "productName": "Ergonomic Smartwatch", + "category": "Electronics", + "sku": "ELEC-00504", + "price": 41669.65, + "stock": 491, + "status": "Active" + }, + { + "id": 505, + "productName": "Wireless Filing Tray", + "category": "Office", + "sku": "OFFC-00505", + "price": 5428.43, + "stock": 55, + "status": "Active" + }, + { + "id": 506, + "productName": "Portable Notebook", + "category": "Office", + "sku": "OFFC-00506", + "price": 1518.62, + "stock": 272, + "status": "Active" + }, + { + "id": 507, + "productName": "Durable Knife Set", + "category": "Home & Kitchen", + "sku": "HOME-00507", + "price": 7110.02, + "stock": 28, + "status": "Active" + }, + { + "id": 508, + "productName": "Classic Laptop", + "category": "Electronics", + "sku": "ELEC-00508", + "price": 10252.52, + "stock": 171, + "status": "Active" + }, + { + "id": 509, + "productName": "Ergonomic Monitor", + "category": "Electronics", + "sku": "ELEC-00509", + "price": 65394.57, + "stock": 201, + "status": "Active" + }, + { + "id": 510, + "productName": "Premium Headphones", + "category": "Electronics", + "sku": "ELEC-00510", + "price": 67314.57, + "stock": 374, + "status": "Active" + }, + { + "id": 511, + "productName": "Durable Cycling Helmet", + "category": "Sports", + "sku": "SPRT-00511", + "price": 20410.16, + "stock": 351, + "status": "Active" + }, + { + "id": 512, + "productName": "Compact Dark Chocolate", + "category": "Grocery", + "sku": "GROC-00512", + "price": 547.62, + "stock": 326, + "status": "Active" + }, + { + "id": 513, + "productName": "Portable Water Bottle", + "category": "Home & Kitchen", + "sku": "HOME-00513", + "price": 17812.38, + "stock": 90, + "status": "Active" + }, + { + "id": 514, + "productName": "Ergonomic Face Cream", + "category": "Beauty", + "sku": "BEAU-00514", + "price": 6386.41, + "stock": 473, + "status": "Active" + }, + { + "id": 515, + "productName": "Compact Kurta", + "category": "Clothing", + "sku": "CLOT-00515", + "price": 6957.31, + "stock": 415, + "status": "Active" + }, + { + "id": 516, + "productName": "Eco Filing Tray", + "category": "Office", + "sku": "OFFC-00516", + "price": 5272.82, + "stock": 246, + "status": "Active" + }, + { + "id": 517, + "productName": "Ultra Desk Lamp", + "category": "Office", + "sku": "OFFC-00517", + "price": 9743.86, + "stock": 195, + "status": "Active" + }, + { + "id": 518, + "productName": "Wireless Pen Set", + "category": "Office", + "sku": "OFFC-00518", + "price": 6949.15, + "stock": 307, + "status": "Active" + }, + { + "id": 519, + "productName": "Compact Dark Chocolate", + "category": "Grocery", + "sku": "GROC-00519", + "price": 1413.03, + "stock": 306, + "status": "Active" + }, + { + "id": 520, + "productName": "Wireless Board Game", + "category": "Toys", + "sku": "TOYS-00520", + "price": 2996.94, + "stock": 301, + "status": "Active" + }, + { + "id": 521, + "productName": "Premium Cookbook", + "category": "Books", + "sku": "BOOK-00521", + "price": 971.17, + "stock": 439, + "status": "Active" + }, + { + "id": 522, + "productName": "Durable Keyboard", + "category": "Electronics", + "sku": "ELEC-00522", + "price": 76867.86, + "stock": 300, + "status": "Active" + }, + { + "id": 523, + "productName": "Wireless Cookbook", + "category": "Books", + "sku": "BOOK-00523", + "price": 1609.84, + "stock": 198, + "status": "Active" + }, + { + "id": 524, + "productName": "Premium Headphones", + "category": "Electronics", + "sku": "ELEC-00524", + "price": 126698.96, + "stock": 271, + "status": "Active" + }, + { + "id": 525, + "productName": "Premium Camera", + "category": "Electronics", + "sku": "ELEC-00525", + "price": 6708.22, + "stock": 235, + "status": "Active" + }, + { + "id": 526, + "productName": "Premium Dark Chocolate", + "category": "Grocery", + "sku": "GROC-00526", + "price": 1863.46, + "stock": 1, + "status": "Active" + }, + { + "id": 527, + "productName": "Portable Dress", + "category": "Clothing", + "sku": "CLOT-00527", + "price": 6823.15, + "stock": 95, + "status": "Active" + }, + { + "id": 528, + "productName": "Portable Honey", + "category": "Grocery", + "sku": "GROC-00528", + "price": 471.57, + "stock": 127, + "status": "Active" + }, + { + "id": 529, + "productName": "Ultra Face Cream", + "category": "Beauty", + "sku": "BEAU-00529", + "price": 2574.93, + "stock": 164, + "status": "Active" + }, + { + "id": 530, + "productName": "Classic Cycling Helmet", + "category": "Sports", + "sku": "SPRT-00530", + "price": 21488.1, + "stock": 132, + "status": "Active" + }, + { + "id": 531, + "productName": "Compact Stuffed Toy", + "category": "Toys", + "sku": "TOYS-00531", + "price": 8064.94, + "stock": 55, + "status": "Active" + }, + { + "id": 532, + "productName": "Wireless Shampoo", + "category": "Beauty", + "sku": "BEAU-00532", + "price": 6123.33, + "stock": 153, + "status": "Active" + }, + { + "id": 533, + "productName": "Classic Face Cream", + "category": "Beauty", + "sku": "BEAU-00533", + "price": 337.04, + "stock": 94, + "status": "Active" + }, + { + "id": 534, + "productName": "Classic Remote Car", + "category": "Toys", + "sku": "TOYS-00534", + "price": 6569.39, + "stock": 268, + "status": "Active" + }, + { + "id": 535, + "productName": "Wireless Shampoo", + "category": "Beauty", + "sku": "BEAU-00535", + "price": 4168.01, + "stock": 228, + "status": "Active" + }, + { + "id": 536, + "productName": "Premium Cricket Bat", + "category": "Sports", + "sku": "SPRT-00536", + "price": 25061.57, + "stock": 207, + "status": "Active" + }, + { + "id": 537, + "productName": "Compact Board Game", + "category": "Toys", + "sku": "TOYS-00537", + "price": 4194.7, + "stock": 371, + "status": "Active" + }, + { + "id": 538, + "productName": "Ultra Laptop", + "category": "Electronics", + "sku": "ELEC-00538", + "price": 62235.72, + "stock": 286, + "status": "Active" + }, + { + "id": 539, + "productName": "Eco Camera", + "category": "Electronics", + "sku": "ELEC-00539", + "price": 85042.91, + "stock": 91, + "status": "Active" + }, + { + "id": 540, + "productName": "Classic Filing Tray", + "category": "Office", + "sku": "OFFC-00540", + "price": 6018.92, + "stock": 407, + "status": "Active" + }, + { + "id": 541, + "productName": "Compact Anthology", + "category": "Books", + "sku": "BOOK-00541", + "price": 1081.25, + "stock": 334, + "status": "Active" + }, + { + "id": 542, + "productName": "Durable Olive Oil", + "category": "Grocery", + "sku": "GROC-00542", + "price": 479.23, + "stock": 250, + "status": "Active" + }, + { + "id": 543, + "productName": "Premium Monitor", + "category": "Electronics", + "sku": "ELEC-00543", + "price": 138692.45, + "stock": 10, + "status": "Active" + }, + { + "id": 544, + "productName": "Wireless Olive Oil", + "category": "Grocery", + "sku": "GROC-00544", + "price": 1735.49, + "stock": 457, + "status": "Active" + }, + { + "id": 545, + "productName": "Wireless T-Shirt", + "category": "Clothing", + "sku": "CLOT-00545", + "price": 3650.08, + "stock": 249, + "status": "Active" + }, + { + "id": 546, + "productName": "Eco Notebook", + "category": "Office", + "sku": "OFFC-00546", + "price": 6697.23, + "stock": 264, + "status": "Active" + }, + { + "id": 547, + "productName": "Classic Honey", + "category": "Grocery", + "sku": "GROC-00547", + "price": 1354.44, + "stock": 266, + "status": "Active" + }, + { + "id": 548, + "productName": "Ergonomic Conditioner", + "category": "Beauty", + "sku": "BEAU-00548", + "price": 1383.01, + "stock": 83, + "status": "Active" + }, + { + "id": 549, + "productName": "Compact T-Shirt", + "category": "Clothing", + "sku": "CLOT-00549", + "price": 1890.04, + "stock": 88, + "status": "Active" + }, + { + "id": 550, + "productName": "Premium Pen Set", + "category": "Office", + "sku": "OFFC-00550", + "price": 240.96, + "stock": 211, + "status": "Active" + }, + { + "id": 551, + "productName": "Wireless Basmati Rice", + "category": "Grocery", + "sku": "GROC-00551", + "price": 1194.87, + "stock": 426, + "status": "Active" + }, + { + "id": 552, + "productName": "Eco Building Blocks", + "category": "Toys", + "sku": "TOYS-00552", + "price": 2969.91, + "stock": 496, + "status": "Active" + }, + { + "id": 553, + "productName": "Smart Smartwatch", + "category": "Electronics", + "sku": "ELEC-00553", + "price": 86849.72, + "stock": 112, + "status": "Active" + }, + { + "id": 554, + "productName": "Wireless Almonds", + "category": "Grocery", + "sku": "GROC-00554", + "price": 991.73, + "stock": 100, + "status": "Active" + }, + { + "id": 555, + "productName": "Ultra Building Blocks", + "category": "Toys", + "sku": "TOYS-00555", + "price": 7707.69, + "stock": 196, + "status": "Active" + }, + { + "id": 556, + "productName": "Ultra Perfume", + "category": "Beauty", + "sku": "BEAU-00556", + "price": 3287.52, + "stock": 438, + "status": "Active" + }, + { + "id": 557, + "productName": "Premium Conditioner", + "category": "Beauty", + "sku": "BEAU-00557", + "price": 4891.94, + "stock": 101, + "status": "Active" + }, + { + "id": 558, + "productName": "Durable Almonds", + "category": "Grocery", + "sku": "GROC-00558", + "price": 812.81, + "stock": 339, + "status": "Active" + }, + { + "id": 559, + "productName": "Ultra Yoga Mat", + "category": "Sports", + "sku": "SPRT-00559", + "price": 26715.35, + "stock": 236, + "status": "Active" + }, + { + "id": 560, + "productName": "Eco Shampoo", + "category": "Beauty", + "sku": "BEAU-00560", + "price": 3916.53, + "stock": 110, + "status": "Active" + }, + { + "id": 561, + "productName": "Portable Yoga Mat", + "category": "Sports", + "sku": "SPRT-00561", + "price": 4035.48, + "stock": 70, + "status": "Active" + }, + { + "id": 562, + "productName": "Wireless Jeans", + "category": "Clothing", + "sku": "CLOT-00562", + "price": 2864.31, + "stock": 44, + "status": "Active" + }, + { + "id": 563, + "productName": "Classic Novel", + "category": "Books", + "sku": "BOOK-00563", + "price": 1055.89, + "stock": 23, + "status": "Active" + }, + { + "id": 564, + "productName": "Ergonomic Stuffed Toy", + "category": "Toys", + "sku": "TOYS-00564", + "price": 3601.09, + "stock": 144, + "status": "Active" + }, + { + "id": 565, + "productName": "Eco Mixer", + "category": "Home & Kitchen", + "sku": "HOME-00565", + "price": 23979.62, + "stock": 167, + "status": "Active" + }, + { + "id": 566, + "productName": "Premium Pen Set", + "category": "Office", + "sku": "OFFC-00566", + "price": 2401.99, + "stock": 272, + "status": "Active" + }, + { + "id": 567, + "productName": "Premium Almonds", + "category": "Grocery", + "sku": "GROC-00567", + "price": 1876.32, + "stock": 430, + "status": "Active" + }, + { + "id": 568, + "productName": "Compact Dumbbells", + "category": "Sports", + "sku": "SPRT-00568", + "price": 21504.47, + "stock": 299, + "status": "Active" + }, + { + "id": 569, + "productName": "Compact Keyboard", + "category": "Electronics", + "sku": "ELEC-00569", + "price": 59432.67, + "stock": 129, + "status": "Active" + }, + { + "id": 570, + "productName": "Compact Jeans", + "category": "Clothing", + "sku": "CLOT-00570", + "price": 5601.06, + "stock": 470, + "status": "Active" + }, + { + "id": 571, + "productName": "Smart Perfume", + "category": "Beauty", + "sku": "BEAU-00571", + "price": 1411.61, + "stock": 318, + "status": "Active" + }, + { + "id": 572, + "productName": "Smart Mixer", + "category": "Home & Kitchen", + "sku": "HOME-00572", + "price": 21052.23, + "stock": 148, + "status": "Active" + }, + { + "id": 573, + "productName": "Premium Mixer", + "category": "Home & Kitchen", + "sku": "HOME-00573", + "price": 3839.17, + "stock": 28, + "status": "Active" + }, + { + "id": 574, + "productName": "Compact Monitor", + "category": "Electronics", + "sku": "ELEC-00574", + "price": 30614.23, + "stock": 60, + "status": "Active" + }, + { + "id": 575, + "productName": "Classic T-Shirt", + "category": "Clothing", + "sku": "CLOT-00575", + "price": 6965.99, + "stock": 496, + "status": "Active" + }, + { + "id": 576, + "productName": "Wireless Shampoo", + "category": "Beauty", + "sku": "BEAU-00576", + "price": 3273.81, + "stock": 197, + "status": "Active" + }, + { + "id": 577, + "productName": "Ultra Remote Car", + "category": "Toys", + "sku": "TOYS-00577", + "price": 5298.4, + "stock": 150, + "status": "Active" + }, + { + "id": 578, + "productName": "Smart Jacket", + "category": "Clothing", + "sku": "CLOT-00578", + "price": 7694.34, + "stock": 445, + "status": "Active" + }, + { + "id": 579, + "productName": "Smart Puzzle", + "category": "Toys", + "sku": "TOYS-00579", + "price": 585.22, + "stock": 246, + "status": "Active" + }, + { + "id": 580, + "productName": "Portable Jeans", + "category": "Clothing", + "sku": "CLOT-00580", + "price": 2679.25, + "stock": 373, + "status": "Active" + }, + { + "id": 581, + "productName": "Portable Face Cream", + "category": "Beauty", + "sku": "BEAU-00581", + "price": 7615.68, + "stock": 425, + "status": "Active" + }, + { + "id": 582, + "productName": "Compact Headphones", + "category": "Electronics", + "sku": "ELEC-00582", + "price": 100831.74, + "stock": 268, + "status": "Active" + }, + { + "id": 583, + "productName": "Wireless Textbook", + "category": "Books", + "sku": "BOOK-00583", + "price": 1035.94, + "stock": 159, + "status": "Active" + }, + { + "id": 584, + "productName": "Wireless Filing Tray", + "category": "Office", + "sku": "OFFC-00584", + "price": 8932.3, + "stock": 136, + "status": "Active" + }, + { + "id": 585, + "productName": "Ergonomic Filing Tray", + "category": "Office", + "sku": "OFFC-00585", + "price": 1785.55, + "stock": 242, + "status": "Active" + }, + { + "id": 586, + "productName": "Ergonomic Water Bottle", + "category": "Home & Kitchen", + "sku": "HOME-00586", + "price": 27451.12, + "stock": 39, + "status": "Active" + }, + { + "id": 587, + "productName": "Eco Jeans", + "category": "Clothing", + "sku": "CLOT-00587", + "price": 761.01, + "stock": 227, + "status": "Active" + }, + { + "id": 588, + "productName": "Durable Jacket", + "category": "Clothing", + "sku": "CLOT-00588", + "price": 7425.55, + "stock": 172, + "status": "Active" + }, + { + "id": 589, + "productName": "Premium Cricket Bat", + "category": "Sports", + "sku": "SPRT-00589", + "price": 7088.27, + "stock": 451, + "status": "Active" + }, + { + "id": 590, + "productName": "Classic Remote Car", + "category": "Toys", + "sku": "TOYS-00590", + "price": 7024.02, + "stock": 210, + "status": "Active" + }, + { + "id": 591, + "productName": "Ergonomic Shirt", + "category": "Clothing", + "sku": "CLOT-00591", + "price": 7634.03, + "stock": 127, + "status": "Active" + }, + { + "id": 592, + "productName": "Classic Jacket", + "category": "Clothing", + "sku": "CLOT-00592", + "price": 4929.97, + "stock": 180, + "status": "Active" + }, + { + "id": 593, + "productName": "Ergonomic Notebook", + "category": "Office", + "sku": "OFFC-00593", + "price": 5927.68, + "stock": 330, + "status": "Active" + }, + { + "id": 594, + "productName": "Smart Desk Lamp", + "category": "Office", + "sku": "OFFC-00594", + "price": 898.22, + "stock": 306, + "status": "Active" + }, + { + "id": 595, + "productName": "Compact Desk Lamp", + "category": "Office", + "sku": "OFFC-00595", + "price": 7218.14, + "stock": 117, + "status": "Active" + }, + { + "id": 596, + "productName": "Eco Monitor", + "category": "Electronics", + "sku": "ELEC-00596", + "price": 81860.28, + "stock": 454, + "status": "Active" + }, + { + "id": 597, + "productName": "Ultra Novel", + "category": "Books", + "sku": "BOOK-00597", + "price": 1652.19, + "stock": 393, + "status": "Active" + }, + { + "id": 598, + "productName": "Wireless Almonds", + "category": "Grocery", + "sku": "GROC-00598", + "price": 483.82, + "stock": 219, + "status": "Active" + }, + { + "id": 599, + "productName": "Wireless Dark Chocolate", + "category": "Grocery", + "sku": "GROC-00599", + "price": 847.31, + "stock": 138, + "status": "Active" + }, + { + "id": 600, + "productName": "Portable Guide", + "category": "Books", + "sku": "BOOK-00600", + "price": 788.58, + "stock": 464, + "status": "Active" + }, + { + "id": 601, + "productName": "Premium Shirt", + "category": "Clothing", + "sku": "CLOT-00601", + "price": 5083.16, + "stock": 331, + "status": "Active" + }, + { + "id": 602, + "productName": "Wireless Charger", + "category": "Electronics", + "sku": "ELEC-00602", + "price": 5139.83, + "stock": 101, + "status": "Active" + }, + { + "id": 603, + "productName": "Wireless Football", + "category": "Sports", + "sku": "SPRT-00603", + "price": 5172.75, + "stock": 47, + "status": "Active" + }, + { + "id": 604, + "productName": "Compact Notebook", + "category": "Office", + "sku": "OFFC-00604", + "price": 7848.14, + "stock": 95, + "status": "Active" + }, + { + "id": 605, + "productName": "Compact Face Cream", + "category": "Beauty", + "sku": "BEAU-00605", + "price": 5605.66, + "stock": 423, + "status": "Active" + }, + { + "id": 606, + "productName": "Smart Cookbook", + "category": "Books", + "sku": "BOOK-00606", + "price": 941.1, + "stock": 440, + "status": "Active" + }, + { + "id": 607, + "productName": "Wireless Knife Set", + "category": "Home & Kitchen", + "sku": "HOME-00607", + "price": 24298.49, + "stock": 236, + "status": "Active" + }, + { + "id": 608, + "productName": "Smart Olive Oil", + "category": "Grocery", + "sku": "GROC-00608", + "price": 675.75, + "stock": 499, + "status": "Active" + }, + { + "id": 609, + "productName": "Premium Serum", + "category": "Beauty", + "sku": "BEAU-00609", + "price": 4351.98, + "stock": 268, + "status": "Active" + }, + { + "id": 610, + "productName": "Premium Conditioner", + "category": "Beauty", + "sku": "BEAU-00610", + "price": 1852.39, + "stock": 84, + "status": "Active" + }, + { + "id": 611, + "productName": "Premium T-Shirt", + "category": "Clothing", + "sku": "CLOT-00611", + "price": 7876.62, + "stock": 14, + "status": "Active" + }, + { + "id": 612, + "productName": "Ergonomic Planner", + "category": "Office", + "sku": "OFFC-00612", + "price": 1964.27, + "stock": 64, + "status": "Active" + }, + { + "id": 613, + "productName": "Eco Mixer", + "category": "Home & Kitchen", + "sku": "HOME-00613", + "price": 13061.31, + "stock": 0, + "status": "Backorder" + }, + { + "id": 614, + "productName": "Wireless Almonds", + "category": "Grocery", + "sku": "GROC-00614", + "price": 904.17, + "stock": 324, + "status": "Active" + }, + { + "id": 615, + "productName": "Eco Remote Car", + "category": "Toys", + "sku": "TOYS-00615", + "price": 9141.64, + "stock": 130, + "status": "Active" + }, + { + "id": 616, + "productName": "Compact Filing Tray", + "category": "Office", + "sku": "OFFC-00616", + "price": 366.24, + "stock": 377, + "status": "Active" + }, + { + "id": 617, + "productName": "Durable Jacket", + "category": "Clothing", + "sku": "CLOT-00617", + "price": 7126.02, + "stock": 136, + "status": "Active" + }, + { + "id": 618, + "productName": "Durable Sneakers", + "category": "Clothing", + "sku": "CLOT-00618", + "price": 1686.14, + "stock": 286, + "status": "Active" + }, + { + "id": 619, + "productName": "Smart Conditioner", + "category": "Beauty", + "sku": "BEAU-00619", + "price": 6772.35, + "stock": 381, + "status": "Active" + }, + { + "id": 620, + "productName": "Ultra Conditioner", + "category": "Beauty", + "sku": "BEAU-00620", + "price": 4859.0, + "stock": 495, + "status": "Active" + }, + { + "id": 621, + "productName": "Ergonomic Conditioner", + "category": "Beauty", + "sku": "BEAU-00621", + "price": 8099.47, + "stock": 89, + "status": "Active" + }, + { + "id": 622, + "productName": "Wireless Stuffed Toy", + "category": "Toys", + "sku": "TOYS-00622", + "price": 7972.3, + "stock": 113, + "status": "Active" + }, + { + "id": 623, + "productName": "Premium Water Bottle", + "category": "Home & Kitchen", + "sku": "HOME-00623", + "price": 26427.68, + "stock": 129, + "status": "Active" + }, + { + "id": 624, + "productName": "Wireless Sneakers", + "category": "Clothing", + "sku": "CLOT-00624", + "price": 5322.97, + "stock": 312, + "status": "Active" + }, + { + "id": 625, + "productName": "Portable Honey", + "category": "Grocery", + "sku": "GROC-00625", + "price": 1898.58, + "stock": 298, + "status": "Active" + }, + { + "id": 626, + "productName": "Classic Water Bottle", + "category": "Home & Kitchen", + "sku": "HOME-00626", + "price": 20350.14, + "stock": 127, + "status": "Active" + }, + { + "id": 627, + "productName": "Ergonomic Filing Tray", + "category": "Office", + "sku": "OFFC-00627", + "price": 9233.13, + "stock": 421, + "status": "Active" + }, + { + "id": 628, + "productName": "Classic Olive Oil", + "category": "Grocery", + "sku": "GROC-00628", + "price": 400.68, + "stock": 326, + "status": "Active" + }, + { + "id": 629, + "productName": "Classic Mouse", + "category": "Electronics", + "sku": "ELEC-00629", + "price": 70121.0, + "stock": 7, + "status": "Active" + }, + { + "id": 630, + "productName": "Classic Guide", + "category": "Books", + "sku": "BOOK-00630", + "price": 446.52, + "stock": 238, + "status": "Active" + }, + { + "id": 631, + "productName": "Ultra Bluetooth Speaker", + "category": "Electronics", + "sku": "ELEC-00631", + "price": 56868.76, + "stock": 250, + "status": "Active" + }, + { + "id": 632, + "productName": "Portable Monitor", + "category": "Electronics", + "sku": "ELEC-00632", + "price": 11259.32, + "stock": 263, + "status": "Active" + }, + { + "id": 633, + "productName": "Premium Guide", + "category": "Books", + "sku": "BOOK-00633", + "price": 1659.4, + "stock": 338, + "status": "Active" + }, + { + "id": 634, + "productName": "Smart Mouse", + "category": "Electronics", + "sku": "ELEC-00634", + "price": 61880.64, + "stock": 264, + "status": "Active" + }, + { + "id": 635, + "productName": "Classic Dress", + "category": "Clothing", + "sku": "CLOT-00635", + "price": 3613.51, + "stock": 74, + "status": "Active" + }, + { + "id": 636, + "productName": "Ultra Shampoo", + "category": "Beauty", + "sku": "BEAU-00636", + "price": 3346.17, + "stock": 176, + "status": "Active" + }, + { + "id": 637, + "productName": "Wireless Biography", + "category": "Books", + "sku": "BOOK-00637", + "price": 1810.75, + "stock": 231, + "status": "Active" + }, + { + "id": 638, + "productName": "Wireless Planner", + "category": "Office", + "sku": "OFFC-00638", + "price": 2449.77, + "stock": 399, + "status": "Active" + }, + { + "id": 639, + "productName": "Wireless Headphones", + "category": "Electronics", + "sku": "ELEC-00639", + "price": 86489.79, + "stock": 97, + "status": "Active" + }, + { + "id": 640, + "productName": "Eco Smartwatch", + "category": "Electronics", + "sku": "ELEC-00640", + "price": 6747.64, + "stock": 329, + "status": "Active" + }, + { + "id": 641, + "productName": "Smart Planner", + "category": "Office", + "sku": "OFFC-00641", + "price": 1048.99, + "stock": 257, + "status": "Active" + }, + { + "id": 642, + "productName": "Wireless Conditioner", + "category": "Beauty", + "sku": "BEAU-00642", + "price": 6478.5, + "stock": 191, + "status": "Active" + }, + { + "id": 643, + "productName": "Smart Mixer", + "category": "Home & Kitchen", + "sku": "HOME-00643", + "price": 7377.15, + "stock": 436, + "status": "Active" + }, + { + "id": 644, + "productName": "Ultra Stuffed Toy", + "category": "Toys", + "sku": "TOYS-00644", + "price": 2316.58, + "stock": 62, + "status": "Active" + }, + { + "id": 645, + "productName": "Ergonomic Honey", + "category": "Grocery", + "sku": "GROC-00645", + "price": 1189.43, + "stock": 80, + "status": "Active" + }, + { + "id": 646, + "productName": "Classic Football", + "category": "Sports", + "sku": "SPRT-00646", + "price": 24584.58, + "stock": 474, + "status": "Active" + }, + { + "id": 647, + "productName": "Smart Bluetooth Speaker", + "category": "Electronics", + "sku": "ELEC-00647", + "price": 77575.57, + "stock": 259, + "status": "Active" + }, + { + "id": 648, + "productName": "Eco Coffee Maker", + "category": "Home & Kitchen", + "sku": "HOME-00648", + "price": 23875.0, + "stock": 366, + "status": "Active" + }, + { + "id": 649, + "productName": "Ultra Biography", + "category": "Books", + "sku": "BOOK-00649", + "price": 1575.3, + "stock": 117, + "status": "Active" + }, + { + "id": 650, + "productName": "Classic Planner", + "category": "Office", + "sku": "OFFC-00650", + "price": 3640.15, + "stock": 38, + "status": "Active" + }, + { + "id": 651, + "productName": "Compact Shirt", + "category": "Clothing", + "sku": "CLOT-00651", + "price": 7575.39, + "stock": 204, + "status": "Active" + }, + { + "id": 652, + "productName": "Durable Shampoo", + "category": "Beauty", + "sku": "BEAU-00652", + "price": 4210.42, + "stock": 423, + "status": "Active" + }, + { + "id": 653, + "productName": "Eco Planner", + "category": "Office", + "sku": "OFFC-00653", + "price": 958.48, + "stock": 92, + "status": "Active" + }, + { + "id": 654, + "productName": "Compact Planner", + "category": "Office", + "sku": "OFFC-00654", + "price": 6170.09, + "stock": 9, + "status": "Active" + }, + { + "id": 655, + "productName": "Durable Perfume", + "category": "Beauty", + "sku": "BEAU-00655", + "price": 8019.4, + "stock": 431, + "status": "Active" + }, + { + "id": 656, + "productName": "Ultra Cycling Helmet", + "category": "Sports", + "sku": "SPRT-00656", + "price": 11672.01, + "stock": 64, + "status": "Active" + }, + { + "id": 657, + "productName": "Eco Biography", + "category": "Books", + "sku": "BOOK-00657", + "price": 1355.52, + "stock": 276, + "status": "Active" + }, + { + "id": 658, + "productName": "Durable Tennis Racket", + "category": "Sports", + "sku": "SPRT-00658", + "price": 1105.73, + "stock": 276, + "status": "Active" + }, + { + "id": 659, + "productName": "Ultra Planner", + "category": "Office", + "sku": "OFFC-00659", + "price": 6378.15, + "stock": 278, + "status": "Active" + }, + { + "id": 660, + "productName": "Durable Cycling Helmet", + "category": "Sports", + "sku": "SPRT-00660", + "price": 1791.78, + "stock": 453, + "status": "Active" + }, + { + "id": 661, + "productName": "Ultra Cricket Bat", + "category": "Sports", + "sku": "SPRT-00661", + "price": 4663.33, + "stock": 54, + "status": "Active" + }, + { + "id": 662, + "productName": "Portable Yoga Mat", + "category": "Sports", + "sku": "SPRT-00662", + "price": 13458.95, + "stock": 90, + "status": "Active" + }, + { + "id": 663, + "productName": "Ergonomic Vacuum Cleaner", + "category": "Home & Kitchen", + "sku": "HOME-00663", + "price": 11801.41, + "stock": 153, + "status": "Active" + }, + { + "id": 664, + "productName": "Portable Perfume", + "category": "Beauty", + "sku": "BEAU-00664", + "price": 7982.72, + "stock": 443, + "status": "Active" + }, + { + "id": 665, + "productName": "Smart Cookware Set", + "category": "Home & Kitchen", + "sku": "HOME-00665", + "price": 17573.99, + "stock": 344, + "status": "Active" + }, + { + "id": 666, + "productName": "Durable Cycling Helmet", + "category": "Sports", + "sku": "SPRT-00666", + "price": 616.64, + "stock": 396, + "status": "Active" + }, + { + "id": 667, + "productName": "Smart Cricket Bat", + "category": "Sports", + "sku": "SPRT-00667", + "price": 26241.29, + "stock": 1, + "status": "Active" + }, + { + "id": 668, + "productName": "Durable Cycling Helmet", + "category": "Sports", + "sku": "SPRT-00668", + "price": 18326.09, + "stock": 436, + "status": "Active" + }, + { + "id": 669, + "productName": "Ultra Perfume", + "category": "Beauty", + "sku": "BEAU-00669", + "price": 5809.03, + "stock": 89, + "status": "Active" + }, + { + "id": 670, + "productName": "Ergonomic Face Cream", + "category": "Beauty", + "sku": "BEAU-00670", + "price": 9132.26, + "stock": 212, + "status": "Active" + }, + { + "id": 671, + "productName": "Portable Building Blocks", + "category": "Toys", + "sku": "TOYS-00671", + "price": 9968.69, + "stock": 211, + "status": "Active" + }, + { + "id": 672, + "productName": "Compact Headphones", + "category": "Electronics", + "sku": "ELEC-00672", + "price": 26777.17, + "stock": 69, + "status": "Active" + }, + { + "id": 673, + "productName": "Ultra Yoga Mat", + "category": "Sports", + "sku": "SPRT-00673", + "price": 26700.26, + "stock": 307, + "status": "Active" + }, + { + "id": 674, + "productName": "Portable Face Cream", + "category": "Beauty", + "sku": "BEAU-00674", + "price": 867.24, + "stock": 124, + "status": "Active" + }, + { + "id": 675, + "productName": "Smart Vacuum Cleaner", + "category": "Home & Kitchen", + "sku": "HOME-00675", + "price": 21304.13, + "stock": 75, + "status": "Active" + }, + { + "id": 676, + "productName": "Eco Jeans", + "category": "Clothing", + "sku": "CLOT-00676", + "price": 413.29, + "stock": 81, + "status": "Active" + }, + { + "id": 677, + "productName": "Ergonomic Bluetooth Speaker", + "category": "Electronics", + "sku": "ELEC-00677", + "price": 56121.48, + "stock": 260, + "status": "Active" + }, + { + "id": 678, + "productName": "Portable Cookbook", + "category": "Books", + "sku": "BOOK-00678", + "price": 214.65, + "stock": 105, + "status": "Active" + }, + { + "id": 679, + "productName": "Ergonomic Pen Set", + "category": "Office", + "sku": "OFFC-00679", + "price": 3494.69, + "stock": 419, + "status": "Active" + }, + { + "id": 680, + "productName": "Durable Desk Lamp", + "category": "Office", + "sku": "OFFC-00680", + "price": 148.48, + "stock": 79, + "status": "Active" + }, + { + "id": 681, + "productName": "Durable Basmati Rice", + "category": "Grocery", + "sku": "GROC-00681", + "price": 253.93, + "stock": 291, + "status": "Active" + }, + { + "id": 682, + "productName": "Portable Serum", + "category": "Beauty", + "sku": "BEAU-00682", + "price": 1736.84, + "stock": 171, + "status": "Active" + }, + { + "id": 683, + "productName": "Classic Puzzle", + "category": "Toys", + "sku": "TOYS-00683", + "price": 5826.91, + "stock": 9, + "status": "Active" + }, + { + "id": 684, + "productName": "Premium Tennis Racket", + "category": "Sports", + "sku": "SPRT-00684", + "price": 29752.43, + "stock": 456, + "status": "Active" + }, + { + "id": 685, + "productName": "Wireless Board Game", + "category": "Toys", + "sku": "TOYS-00685", + "price": 2694.0, + "stock": 99, + "status": "Active" + }, + { + "id": 686, + "productName": "Portable Stuffed Toy", + "category": "Toys", + "sku": "TOYS-00686", + "price": 1148.35, + "stock": 292, + "status": "Active" + }, + { + "id": 687, + "productName": "Eco Desk Lamp", + "category": "Office", + "sku": "OFFC-00687", + "price": 9171.97, + "stock": 265, + "status": "Active" + }, + { + "id": 688, + "productName": "Classic Smartwatch", + "category": "Electronics", + "sku": "ELEC-00688", + "price": 91611.2, + "stock": 267, + "status": "Active" + }, + { + "id": 689, + "productName": "Smart Puzzle", + "category": "Toys", + "sku": "TOYS-00689", + "price": 433.72, + "stock": 303, + "status": "Active" + }, + { + "id": 690, + "productName": "Wireless Pen Set", + "category": "Office", + "sku": "OFFC-00690", + "price": 7255.8, + "stock": 323, + "status": "Active" + }, + { + "id": 691, + "productName": "Eco Shampoo", + "category": "Beauty", + "sku": "BEAU-00691", + "price": 9041.89, + "stock": 42, + "status": "Active" + }, + { + "id": 692, + "productName": "Wireless Honey", + "category": "Grocery", + "sku": "GROC-00692", + "price": 1518.55, + "stock": 366, + "status": "Active" + }, + { + "id": 693, + "productName": "Classic Building Blocks", + "category": "Toys", + "sku": "TOYS-00693", + "price": 1861.05, + "stock": 443, + "status": "Active" + }, + { + "id": 694, + "productName": "Wireless Basmati Rice", + "category": "Grocery", + "sku": "GROC-00694", + "price": 252.84, + "stock": 154, + "status": "Active" + }, + { + "id": 695, + "productName": "Wireless Novel", + "category": "Books", + "sku": "BOOK-00695", + "price": 653.27, + "stock": 360, + "status": "Active" + }, + { + "id": 696, + "productName": "Portable Dumbbells", + "category": "Sports", + "sku": "SPRT-00696", + "price": 8343.85, + "stock": 178, + "status": "Active" + }, + { + "id": 697, + "productName": "Wireless Desk Lamp", + "category": "Office", + "sku": "OFFC-00697", + "price": 8924.78, + "stock": 497, + "status": "Active" + }, + { + "id": 698, + "productName": "Wireless Cricket Bat", + "category": "Sports", + "sku": "SPRT-00698", + "price": 13793.0, + "stock": 181, + "status": "Active" + }, + { + "id": 699, + "productName": "Classic Building Blocks", + "category": "Toys", + "sku": "TOYS-00699", + "price": 8583.48, + "stock": 1, + "status": "Active" + }, + { + "id": 700, + "productName": "Eco Olive Oil", + "category": "Grocery", + "sku": "GROC-00700", + "price": 1343.23, + "stock": 1, + "status": "Active" + }, + { + "id": 701, + "productName": "Ultra Planner", + "category": "Office", + "sku": "OFFC-00701", + "price": 9367.07, + "stock": 127, + "status": "Active" + }, + { + "id": 702, + "productName": "Durable Kurta", + "category": "Clothing", + "sku": "CLOT-00702", + "price": 6953.93, + "stock": 459, + "status": "Active" + }, + { + "id": 703, + "productName": "Ergonomic Mouse", + "category": "Electronics", + "sku": "ELEC-00703", + "price": 41853.76, + "stock": 321, + "status": "Active" + }, + { + "id": 704, + "productName": "Ultra Smartwatch", + "category": "Electronics", + "sku": "ELEC-00704", + "price": 16510.86, + "stock": 46, + "status": "Active" + }, + { + "id": 705, + "productName": "Wireless Perfume", + "category": "Beauty", + "sku": "BEAU-00705", + "price": 3252.23, + "stock": 452, + "status": "Active" + }, + { + "id": 706, + "productName": "Wireless Shirt", + "category": "Clothing", + "sku": "CLOT-00706", + "price": 5545.36, + "stock": 424, + "status": "Active" + }, + { + "id": 707, + "productName": "Smart Jeans", + "category": "Clothing", + "sku": "CLOT-00707", + "price": 6821.76, + "stock": 193, + "status": "Active" + }, + { + "id": 708, + "productName": "Portable Coffee Maker", + "category": "Home & Kitchen", + "sku": "HOME-00708", + "price": 22796.19, + "stock": 342, + "status": "Active" + }, + { + "id": 709, + "productName": "Compact Yoga Mat", + "category": "Sports", + "sku": "SPRT-00709", + "price": 28889.3, + "stock": 184, + "status": "Active" + }, + { + "id": 710, + "productName": "Portable Dress", + "category": "Clothing", + "sku": "CLOT-00710", + "price": 2736.21, + "stock": 410, + "status": "Active" + }, + { + "id": 711, + "productName": "Eco Anthology", + "category": "Books", + "sku": "BOOK-00711", + "price": 532.64, + "stock": 84, + "status": "Active" + }, + { + "id": 712, + "productName": "Premium Cookbook", + "category": "Books", + "sku": "BOOK-00712", + "price": 1390.07, + "stock": 461, + "status": "Active" + }, + { + "id": 713, + "productName": "Eco Filing Tray", + "category": "Office", + "sku": "OFFC-00713", + "price": 3824.01, + "stock": 445, + "status": "Active" + }, + { + "id": 714, + "productName": "Durable Power Bank", + "category": "Electronics", + "sku": "ELEC-00714", + "price": 79681.51, + "stock": 118, + "status": "Active" + }, + { + "id": 715, + "productName": "Ultra Planner", + "category": "Office", + "sku": "OFFC-00715", + "price": 736.23, + "stock": 39, + "status": "Active" + }, + { + "id": 716, + "productName": "Ergonomic Jacket", + "category": "Clothing", + "sku": "CLOT-00716", + "price": 3838.35, + "stock": 244, + "status": "Active" + }, + { + "id": 717, + "productName": "Wireless Monitor", + "category": "Electronics", + "sku": "ELEC-00717", + "price": 63517.04, + "stock": 132, + "status": "Active" + }, + { + "id": 718, + "productName": "Portable Anthology", + "category": "Books", + "sku": "BOOK-00718", + "price": 1333.6, + "stock": 49, + "status": "Active" + }, + { + "id": 719, + "productName": "Ultra Cookbook", + "category": "Books", + "sku": "BOOK-00719", + "price": 1484.51, + "stock": 458, + "status": "Active" + }, + { + "id": 720, + "productName": "Premium Guide", + "category": "Books", + "sku": "BOOK-00720", + "price": 1111.31, + "stock": 431, + "status": "Active" + }, + { + "id": 721, + "productName": "Eco Almonds", + "category": "Grocery", + "sku": "GROC-00721", + "price": 1240.78, + "stock": 205, + "status": "Active" + }, + { + "id": 722, + "productName": "Ergonomic Sneakers", + "category": "Clothing", + "sku": "CLOT-00722", + "price": 5144.9, + "stock": 135, + "status": "Active" + }, + { + "id": 723, + "productName": "Ultra T-Shirt", + "category": "Clothing", + "sku": "CLOT-00723", + "price": 519.72, + "stock": 427, + "status": "Active" + }, + { + "id": 724, + "productName": "Eco Yoga Mat", + "category": "Sports", + "sku": "SPRT-00724", + "price": 22872.91, + "stock": 391, + "status": "Active" + }, + { + "id": 725, + "productName": "Smart Cookware Set", + "category": "Home & Kitchen", + "sku": "HOME-00725", + "price": 15279.99, + "stock": 288, + "status": "Active" + }, + { + "id": 726, + "productName": "Compact Jacket", + "category": "Clothing", + "sku": "CLOT-00726", + "price": 5755.35, + "stock": 430, + "status": "Active" + }, + { + "id": 727, + "productName": "Portable Anthology", + "category": "Books", + "sku": "BOOK-00727", + "price": 911.02, + "stock": 469, + "status": "Active" + }, + { + "id": 728, + "productName": "Portable Tennis Racket", + "category": "Sports", + "sku": "SPRT-00728", + "price": 7774.66, + "stock": 4, + "status": "Active" + }, + { + "id": 729, + "productName": "Ultra Guide", + "category": "Books", + "sku": "BOOK-00729", + "price": 193.51, + "stock": 421, + "status": "Active" + }, + { + "id": 730, + "productName": "Ergonomic Notebook", + "category": "Office", + "sku": "OFFC-00730", + "price": 6775.16, + "stock": 273, + "status": "Active" + }, + { + "id": 731, + "productName": "Classic Notebook", + "category": "Office", + "sku": "OFFC-00731", + "price": 6255.52, + "stock": 314, + "status": "Active" + }, + { + "id": 732, + "productName": "Compact Stuffed Toy", + "category": "Toys", + "sku": "TOYS-00732", + "price": 5310.21, + "stock": 186, + "status": "Active" + }, + { + "id": 733, + "productName": "Eco Anthology", + "category": "Books", + "sku": "BOOK-00733", + "price": 1874.7, + "stock": 66, + "status": "Active" + }, + { + "id": 734, + "productName": "Premium Perfume", + "category": "Beauty", + "sku": "BEAU-00734", + "price": 4019.9, + "stock": 48, + "status": "Active" + }, + { + "id": 735, + "productName": "Ergonomic Filing Tray", + "category": "Office", + "sku": "OFFC-00735", + "price": 5175.34, + "stock": 216, + "status": "Active" + }, + { + "id": 736, + "productName": "Smart Yoga Mat", + "category": "Sports", + "sku": "SPRT-00736", + "price": 15502.28, + "stock": 370, + "status": "Active" + }, + { + "id": 737, + "productName": "Portable Stuffed Toy", + "category": "Toys", + "sku": "TOYS-00737", + "price": 2096.77, + "stock": 214, + "status": "Active" + }, + { + "id": 738, + "productName": "Eco Biography", + "category": "Books", + "sku": "BOOK-00738", + "price": 480.33, + "stock": 158, + "status": "Active" + }, + { + "id": 739, + "productName": "Portable Bluetooth Speaker", + "category": "Electronics", + "sku": "ELEC-00739", + "price": 5429.23, + "stock": 127, + "status": "Active" + }, + { + "id": 740, + "productName": "Premium Shampoo", + "category": "Beauty", + "sku": "BEAU-00740", + "price": 6742.49, + "stock": 486, + "status": "Active" + }, + { + "id": 741, + "productName": "Classic Anthology", + "category": "Books", + "sku": "BOOK-00741", + "price": 1430.13, + "stock": 348, + "status": "Active" + }, + { + "id": 742, + "productName": "Classic Sneakers", + "category": "Clothing", + "sku": "CLOT-00742", + "price": 2204.63, + "stock": 491, + "status": "Active" + }, + { + "id": 743, + "productName": "Ergonomic Guide", + "category": "Books", + "sku": "BOOK-00743", + "price": 1846.04, + "stock": 266, + "status": "Active" + }, + { + "id": 744, + "productName": "Smart Water Bottle", + "category": "Home & Kitchen", + "sku": "HOME-00744", + "price": 26861.08, + "stock": 354, + "status": "Active" + }, + { + "id": 745, + "productName": "Portable Shampoo", + "category": "Beauty", + "sku": "BEAU-00745", + "price": 5790.91, + "stock": 265, + "status": "Active" + }, + { + "id": 746, + "productName": "Compact Basmati Rice", + "category": "Grocery", + "sku": "GROC-00746", + "price": 1443.27, + "stock": 170, + "status": "Active" + }, + { + "id": 747, + "productName": "Ultra Kurta", + "category": "Clothing", + "sku": "CLOT-00747", + "price": 5717.1, + "stock": 343, + "status": "Active" + }, + { + "id": 748, + "productName": "Classic Olive Oil", + "category": "Grocery", + "sku": "GROC-00748", + "price": 1731.73, + "stock": 395, + "status": "Active" + }, + { + "id": 749, + "productName": "Premium Dark Chocolate", + "category": "Grocery", + "sku": "GROC-00749", + "price": 267.37, + "stock": 473, + "status": "Active" + }, + { + "id": 750, + "productName": "Ultra Cycling Helmet", + "category": "Sports", + "sku": "SPRT-00750", + "price": 4988.18, + "stock": 249, + "status": "Active" + }, + { + "id": 751, + "productName": "Smart Guide", + "category": "Books", + "sku": "BOOK-00751", + "price": 878.57, + "stock": 207, + "status": "Active" + }, + { + "id": 752, + "productName": "Ergonomic Dark Chocolate", + "category": "Grocery", + "sku": "GROC-00752", + "price": 1190.85, + "stock": 197, + "status": "Active" + }, + { + "id": 753, + "productName": "Wireless Charger", + "category": "Electronics", + "sku": "ELEC-00753", + "price": 79901.74, + "stock": 33, + "status": "Active" + }, + { + "id": 754, + "productName": "Eco Board Game", + "category": "Toys", + "sku": "TOYS-00754", + "price": 178.94, + "stock": 68, + "status": "Active" + }, + { + "id": 755, + "productName": "Compact Filing Tray", + "category": "Office", + "sku": "OFFC-00755", + "price": 2302.46, + "stock": 357, + "status": "Active" + }, + { + "id": 756, + "productName": "Smart Jeans", + "category": "Clothing", + "sku": "CLOT-00756", + "price": 3783.39, + "stock": 172, + "status": "Active" + }, + { + "id": 757, + "productName": "Classic Mouse", + "category": "Electronics", + "sku": "ELEC-00757", + "price": 106217.38, + "stock": 240, + "status": "Active" + }, + { + "id": 758, + "productName": "Wireless Dark Chocolate", + "category": "Grocery", + "sku": "GROC-00758", + "price": 1229.67, + "stock": 194, + "status": "Active" + }, + { + "id": 759, + "productName": "Ultra Face Cream", + "category": "Beauty", + "sku": "BEAU-00759", + "price": 1518.63, + "stock": 404, + "status": "Active" + }, + { + "id": 760, + "productName": "Portable Bluetooth Speaker", + "category": "Electronics", + "sku": "ELEC-00760", + "price": 9378.07, + "stock": 495, + "status": "Active" + }, + { + "id": 761, + "productName": "Portable Honey", + "category": "Grocery", + "sku": "GROC-00761", + "price": 636.08, + "stock": 272, + "status": "Active" + }, + { + "id": 762, + "productName": "Ergonomic Serum", + "category": "Beauty", + "sku": "BEAU-00762", + "price": 7561.31, + "stock": 143, + "status": "Active" + }, + { + "id": 763, + "productName": "Compact Planner", + "category": "Office", + "sku": "OFFC-00763", + "price": 530.25, + "stock": 61, + "status": "Active" + }, + { + "id": 764, + "productName": "Premium Jacket", + "category": "Clothing", + "sku": "CLOT-00764", + "price": 2766.82, + "stock": 9, + "status": "Active" + }, + { + "id": 765, + "productName": "Premium Honey", + "category": "Grocery", + "sku": "GROC-00765", + "price": 1064.15, + "stock": 129, + "status": "Active" + }, + { + "id": 766, + "productName": "Smart Planner", + "category": "Office", + "sku": "OFFC-00766", + "price": 4392.8, + "stock": 113, + "status": "Active" + }, + { + "id": 767, + "productName": "Smart Air Fryer", + "category": "Home & Kitchen", + "sku": "HOME-00767", + "price": 22321.68, + "stock": 10, + "status": "Active" + }, + { + "id": 768, + "productName": "Premium Planner", + "category": "Office", + "sku": "OFFC-00768", + "price": 609.68, + "stock": 371, + "status": "Active" + }, + { + "id": 769, + "productName": "Premium Monitor", + "category": "Electronics", + "sku": "ELEC-00769", + "price": 129362.08, + "stock": 265, + "status": "Active" + }, + { + "id": 770, + "productName": "Ergonomic Basmati Rice", + "category": "Grocery", + "sku": "GROC-00770", + "price": 1984.95, + "stock": 10, + "status": "Active" + }, + { + "id": 771, + "productName": "Eco Bluetooth Speaker", + "category": "Electronics", + "sku": "ELEC-00771", + "price": 48056.3, + "stock": 63, + "status": "Active" + }, + { + "id": 772, + "productName": "Eco Jacket", + "category": "Clothing", + "sku": "CLOT-00772", + "price": 4012.85, + "stock": 31, + "status": "Active" + }, + { + "id": 773, + "productName": "Ultra Tennis Racket", + "category": "Sports", + "sku": "SPRT-00773", + "price": 15054.89, + "stock": 176, + "status": "Active" + }, + { + "id": 774, + "productName": "Eco Basmati Rice", + "category": "Grocery", + "sku": "GROC-00774", + "price": 923.9, + "stock": 191, + "status": "Active" + }, + { + "id": 775, + "productName": "Ultra Stuffed Toy", + "category": "Toys", + "sku": "TOYS-00775", + "price": 4591.16, + "stock": 91, + "status": "Active" + }, + { + "id": 776, + "productName": "Durable Building Blocks", + "category": "Toys", + "sku": "TOYS-00776", + "price": 8271.54, + "stock": 253, + "status": "Active" + }, + { + "id": 777, + "productName": "Classic Pen Set", + "category": "Office", + "sku": "OFFC-00777", + "price": 8420.76, + "stock": 390, + "status": "Active" + }, + { + "id": 778, + "productName": "Compact Desk Lamp", + "category": "Office", + "sku": "OFFC-00778", + "price": 8032.4, + "stock": 195, + "status": "Active" + }, + { + "id": 779, + "productName": "Eco Tennis Racket", + "category": "Sports", + "sku": "SPRT-00779", + "price": 5851.11, + "stock": 191, + "status": "Active" + }, + { + "id": 780, + "productName": "Durable Shampoo", + "category": "Beauty", + "sku": "BEAU-00780", + "price": 6087.45, + "stock": 494, + "status": "Active" + }, + { + "id": 781, + "productName": "Durable Textbook", + "category": "Books", + "sku": "BOOK-00781", + "price": 1452.55, + "stock": 331, + "status": "Active" + }, + { + "id": 782, + "productName": "Ultra Pen Set", + "category": "Office", + "sku": "OFFC-00782", + "price": 7527.42, + "stock": 316, + "status": "Active" + }, + { + "id": 783, + "productName": "Durable Football", + "category": "Sports", + "sku": "SPRT-00783", + "price": 25088.7, + "stock": 399, + "status": "Active" + }, + { + "id": 784, + "productName": "Ultra Sneakers", + "category": "Clothing", + "sku": "CLOT-00784", + "price": 5949.44, + "stock": 5, + "status": "Active" + }, + { + "id": 785, + "productName": "Premium Jacket", + "category": "Clothing", + "sku": "CLOT-00785", + "price": 3432.26, + "stock": 198, + "status": "Active" + }, + { + "id": 786, + "productName": "Classic Guide", + "category": "Books", + "sku": "BOOK-00786", + "price": 113.01, + "stock": 56, + "status": "Active" + }, + { + "id": 787, + "productName": "Portable Shampoo", + "category": "Beauty", + "sku": "BEAU-00787", + "price": 2120.67, + "stock": 279, + "status": "Active" + }, + { + "id": 788, + "productName": "Eco Keyboard", + "category": "Electronics", + "sku": "ELEC-00788", + "price": 29789.15, + "stock": 117, + "status": "Active" + }, + { + "id": 789, + "productName": "Durable Tennis Racket", + "category": "Sports", + "sku": "SPRT-00789", + "price": 5285.78, + "stock": 335, + "status": "Active" + }, + { + "id": 790, + "productName": "Smart Puzzle", + "category": "Toys", + "sku": "TOYS-00790", + "price": 7768.95, + "stock": 277, + "status": "Active" + }, + { + "id": 791, + "productName": "Durable Honey", + "category": "Grocery", + "sku": "GROC-00791", + "price": 1975.64, + "stock": 11, + "status": "Active" + }, + { + "id": 792, + "productName": "Smart Dress", + "category": "Clothing", + "sku": "CLOT-00792", + "price": 7851.98, + "stock": 156, + "status": "Active" + }, + { + "id": 793, + "productName": "Compact Puzzle", + "category": "Toys", + "sku": "TOYS-00793", + "price": 5384.86, + "stock": 189, + "status": "Active" + }, + { + "id": 794, + "productName": "Durable Almonds", + "category": "Grocery", + "sku": "GROC-00794", + "price": 988.36, + "stock": 167, + "status": "Active" + }, + { + "id": 795, + "productName": "Ultra Coffee Maker", + "category": "Home & Kitchen", + "sku": "HOME-00795", + "price": 29417.79, + "stock": 463, + "status": "Active" + }, + { + "id": 796, + "productName": "Durable Dress", + "category": "Clothing", + "sku": "CLOT-00796", + "price": 4285.06, + "stock": 131, + "status": "Active" + }, + { + "id": 797, + "productName": "Classic Notebook", + "category": "Office", + "sku": "OFFC-00797", + "price": 702.73, + "stock": 90, + "status": "Active" + }, + { + "id": 798, + "productName": "Portable Jacket", + "category": "Clothing", + "sku": "CLOT-00798", + "price": 3998.8, + "stock": 168, + "status": "Active" + }, + { + "id": 799, + "productName": "Compact Shampoo", + "category": "Beauty", + "sku": "BEAU-00799", + "price": 6593.86, + "stock": 76, + "status": "Active" + }, + { + "id": 800, + "productName": "Smart Shampoo", + "category": "Beauty", + "sku": "BEAU-00800", + "price": 8747.99, + "stock": 159, + "status": "Active" + }, + { + "id": 801, + "productName": "Durable Headphones", + "category": "Electronics", + "sku": "ELEC-00801", + "price": 66203.61, + "stock": 34, + "status": "Active" + }, + { + "id": 802, + "productName": "Classic Filing Tray", + "category": "Office", + "sku": "OFFC-00802", + "price": 8124.1, + "stock": 438, + "status": "Active" + }, + { + "id": 803, + "productName": "Durable Mouse", + "category": "Electronics", + "sku": "ELEC-00803", + "price": 20292.62, + "stock": 49, + "status": "Active" + }, + { + "id": 804, + "productName": "Premium Headphones", + "category": "Electronics", + "sku": "ELEC-00804", + "price": 46386.34, + "stock": 180, + "status": "Active" + }, + { + "id": 805, + "productName": "Smart Pen Set", + "category": "Office", + "sku": "OFFC-00805", + "price": 6545.9, + "stock": 362, + "status": "Active" + }, + { + "id": 806, + "productName": "Wireless Dark Chocolate", + "category": "Grocery", + "sku": "GROC-00806", + "price": 1928.12, + "stock": 188, + "status": "Active" + }, + { + "id": 807, + "productName": "Portable Smartwatch", + "category": "Electronics", + "sku": "ELEC-00807", + "price": 10975.32, + "stock": 429, + "status": "Active" + }, + { + "id": 808, + "productName": "Durable Textbook", + "category": "Books", + "sku": "BOOK-00808", + "price": 1806.58, + "stock": 368, + "status": "Active" + }, + { + "id": 809, + "productName": "Eco T-Shirt", + "category": "Clothing", + "sku": "CLOT-00809", + "price": 952.68, + "stock": 147, + "status": "Active" + }, + { + "id": 810, + "productName": "Compact Knife Set", + "category": "Home & Kitchen", + "sku": "HOME-00810", + "price": 13417.08, + "stock": 482, + "status": "Active" + }, + { + "id": 811, + "productName": "Ergonomic Cycling Helmet", + "category": "Sports", + "sku": "SPRT-00811", + "price": 18833.07, + "stock": 27, + "status": "Active" + }, + { + "id": 812, + "productName": "Classic Perfume", + "category": "Beauty", + "sku": "BEAU-00812", + "price": 9893.79, + "stock": 267, + "status": "Active" + }, + { + "id": 813, + "productName": "Smart Laptop", + "category": "Electronics", + "sku": "ELEC-00813", + "price": 37446.58, + "stock": 141, + "status": "Active" + }, + { + "id": 814, + "productName": "Ergonomic Building Blocks", + "category": "Toys", + "sku": "TOYS-00814", + "price": 6908.76, + "stock": 407, + "status": "Active" + }, + { + "id": 815, + "productName": "Premium Monitor", + "category": "Electronics", + "sku": "ELEC-00815", + "price": 31609.54, + "stock": 193, + "status": "Active" + }, + { + "id": 816, + "productName": "Classic Board Game", + "category": "Toys", + "sku": "TOYS-00816", + "price": 6187.2, + "stock": 165, + "status": "Active" + }, + { + "id": 817, + "productName": "Portable Notebook", + "category": "Office", + "sku": "OFFC-00817", + "price": 1627.88, + "stock": 192, + "status": "Active" + }, + { + "id": 818, + "productName": "Smart Face Cream", + "category": "Beauty", + "sku": "BEAU-00818", + "price": 8300.8, + "stock": 95, + "status": "Active" + }, + { + "id": 819, + "productName": "Compact Dress", + "category": "Clothing", + "sku": "CLOT-00819", + "price": 683.66, + "stock": 160, + "status": "Active" + }, + { + "id": 820, + "productName": "Smart Anthology", + "category": "Books", + "sku": "BOOK-00820", + "price": 527.36, + "stock": 14, + "status": "Active" + }, + { + "id": 821, + "productName": "Durable Mixer", + "category": "Home & Kitchen", + "sku": "HOME-00821", + "price": 17101.33, + "stock": 170, + "status": "Active" + }, + { + "id": 822, + "productName": "Wireless Shampoo", + "category": "Beauty", + "sku": "BEAU-00822", + "price": 7627.42, + "stock": 83, + "status": "Active" + }, + { + "id": 823, + "productName": "Eco Dumbbells", + "category": "Sports", + "sku": "SPRT-00823", + "price": 1733.52, + "stock": 113, + "status": "Active" + }, + { + "id": 824, + "productName": "Wireless Pen Set", + "category": "Office", + "sku": "OFFC-00824", + "price": 7633.57, + "stock": 100, + "status": "Active" + }, + { + "id": 825, + "productName": "Classic Serum", + "category": "Beauty", + "sku": "BEAU-00825", + "price": 8208.29, + "stock": 156, + "status": "Active" + }, + { + "id": 826, + "productName": "Classic Coffee Maker", + "category": "Home & Kitchen", + "sku": "HOME-00826", + "price": 26106.81, + "stock": 52, + "status": "Active" + }, + { + "id": 827, + "productName": "Ergonomic Serum", + "category": "Beauty", + "sku": "BEAU-00827", + "price": 4817.13, + "stock": 318, + "status": "Active" + }, + { + "id": 828, + "productName": "Premium Yoga Mat", + "category": "Sports", + "sku": "SPRT-00828", + "price": 720.05, + "stock": 91, + "status": "Active" + }, + { + "id": 829, + "productName": "Premium Planner", + "category": "Office", + "sku": "OFFC-00829", + "price": 6146.76, + "stock": 232, + "status": "Active" + }, + { + "id": 830, + "productName": "Ergonomic Dress", + "category": "Clothing", + "sku": "CLOT-00830", + "price": 5052.97, + "stock": 12, + "status": "Active" + }, + { + "id": 831, + "productName": "Premium Textbook", + "category": "Books", + "sku": "BOOK-00831", + "price": 468.15, + "stock": 404, + "status": "Active" + }, + { + "id": 832, + "productName": "Premium Smartwatch", + "category": "Electronics", + "sku": "ELEC-00832", + "price": 78480.28, + "stock": 75, + "status": "Active" + }, + { + "id": 833, + "productName": "Classic Conditioner", + "category": "Beauty", + "sku": "BEAU-00833", + "price": 6538.84, + "stock": 10, + "status": "Active" + }, + { + "id": 834, + "productName": "Wireless Dress", + "category": "Clothing", + "sku": "CLOT-00834", + "price": 6347.12, + "stock": 269, + "status": "Active" + }, + { + "id": 835, + "productName": "Portable Jeans", + "category": "Clothing", + "sku": "CLOT-00835", + "price": 3334.58, + "stock": 63, + "status": "Active" + }, + { + "id": 836, + "productName": "Ultra Olive Oil", + "category": "Grocery", + "sku": "GROC-00836", + "price": 1088.88, + "stock": 476, + "status": "Active" + }, + { + "id": 837, + "productName": "Smart Anthology", + "category": "Books", + "sku": "BOOK-00837", + "price": 1954.77, + "stock": 381, + "status": "Active" + }, + { + "id": 838, + "productName": "Ultra Charger", + "category": "Electronics", + "sku": "ELEC-00838", + "price": 7306.82, + "stock": 279, + "status": "Active" + }, + { + "id": 839, + "productName": "Durable Biography", + "category": "Books", + "sku": "BOOK-00839", + "price": 102.86, + "stock": 132, + "status": "Active" + }, + { + "id": 840, + "productName": "Ultra Remote Car", + "category": "Toys", + "sku": "TOYS-00840", + "price": 9334.86, + "stock": 476, + "status": "Active" + }, + { + "id": 841, + "productName": "Classic Cricket Bat", + "category": "Sports", + "sku": "SPRT-00841", + "price": 21335.22, + "stock": 333, + "status": "Active" + }, + { + "id": 842, + "productName": "Smart T-Shirt", + "category": "Clothing", + "sku": "CLOT-00842", + "price": 2489.13, + "stock": 125, + "status": "Active" + }, + { + "id": 843, + "productName": "Ultra T-Shirt", + "category": "Clothing", + "sku": "CLOT-00843", + "price": 932.55, + "stock": 129, + "status": "Active" + }, + { + "id": 844, + "productName": "Eco Serum", + "category": "Beauty", + "sku": "BEAU-00844", + "price": 3921.08, + "stock": 264, + "status": "Active" + }, + { + "id": 845, + "productName": "Ultra Notebook", + "category": "Office", + "sku": "OFFC-00845", + "price": 2770.33, + "stock": 216, + "status": "Active" + }, + { + "id": 846, + "productName": "Smart Planner", + "category": "Office", + "sku": "OFFC-00846", + "price": 3707.25, + "stock": 135, + "status": "Active" + }, + { + "id": 847, + "productName": "Wireless Olive Oil", + "category": "Grocery", + "sku": "GROC-00847", + "price": 1870.19, + "stock": 273, + "status": "Active" + }, + { + "id": 848, + "productName": "Wireless Vacuum Cleaner", + "category": "Home & Kitchen", + "sku": "HOME-00848", + "price": 2475.09, + "stock": 6, + "status": "Active" + }, + { + "id": 849, + "productName": "Classic Guide", + "category": "Books", + "sku": "BOOK-00849", + "price": 718.3, + "stock": 205, + "status": "Active" + }, + { + "id": 850, + "productName": "Classic Pen Set", + "category": "Office", + "sku": "OFFC-00850", + "price": 9526.54, + "stock": 430, + "status": "Active" + }, + { + "id": 851, + "productName": "Ergonomic Perfume", + "category": "Beauty", + "sku": "BEAU-00851", + "price": 2579.35, + "stock": 363, + "status": "Active" + }, + { + "id": 852, + "productName": "Smart Face Cream", + "category": "Beauty", + "sku": "BEAU-00852", + "price": 5514.13, + "stock": 114, + "status": "Active" + }, + { + "id": 853, + "productName": "Premium Perfume", + "category": "Beauty", + "sku": "BEAU-00853", + "price": 9661.52, + "stock": 137, + "status": "Active" + }, + { + "id": 854, + "productName": "Compact Perfume", + "category": "Beauty", + "sku": "BEAU-00854", + "price": 2000.5, + "stock": 280, + "status": "Active" + }, + { + "id": 855, + "productName": "Portable Planner", + "category": "Office", + "sku": "OFFC-00855", + "price": 7417.94, + "stock": 475, + "status": "Active" + }, + { + "id": 856, + "productName": "Smart Serum", + "category": "Beauty", + "sku": "BEAU-00856", + "price": 8907.18, + "stock": 85, + "status": "Active" + }, + { + "id": 857, + "productName": "Wireless Monitor", + "category": "Electronics", + "sku": "ELEC-00857", + "price": 37645.74, + "stock": 476, + "status": "Active" + }, + { + "id": 858, + "productName": "Compact Puzzle", + "category": "Toys", + "sku": "TOYS-00858", + "price": 8889.97, + "stock": 465, + "status": "Active" + }, + { + "id": 859, + "productName": "Classic Smartwatch", + "category": "Electronics", + "sku": "ELEC-00859", + "price": 7651.67, + "stock": 301, + "status": "Active" + }, + { + "id": 860, + "productName": "Compact Building Blocks", + "category": "Toys", + "sku": "TOYS-00860", + "price": 3347.68, + "stock": 330, + "status": "Active" + }, + { + "id": 861, + "productName": "Durable Charger", + "category": "Electronics", + "sku": "ELEC-00861", + "price": 4116.22, + "stock": 205, + "status": "Active" + }, + { + "id": 862, + "productName": "Compact Knife Set", + "category": "Home & Kitchen", + "sku": "HOME-00862", + "price": 16032.3, + "stock": 476, + "status": "Active" + }, + { + "id": 863, + "productName": "Premium Football", + "category": "Sports", + "sku": "SPRT-00863", + "price": 22736.63, + "stock": 144, + "status": "Active" + }, + { + "id": 864, + "productName": "Durable Mouse", + "category": "Electronics", + "sku": "ELEC-00864", + "price": 40020.91, + "stock": 429, + "status": "Active" + }, + { + "id": 865, + "productName": "Wireless Coffee Maker", + "category": "Home & Kitchen", + "sku": "HOME-00865", + "price": 2876.85, + "stock": 158, + "status": "Active" + }, + { + "id": 866, + "productName": "Ultra Jeans", + "category": "Clothing", + "sku": "CLOT-00866", + "price": 1117.41, + "stock": 492, + "status": "Active" + }, + { + "id": 867, + "productName": "Durable Dark Chocolate", + "category": "Grocery", + "sku": "GROC-00867", + "price": 1413.69, + "stock": 142, + "status": "Active" + }, + { + "id": 868, + "productName": "Wireless Shampoo", + "category": "Beauty", + "sku": "BEAU-00868", + "price": 2156.34, + "stock": 311, + "status": "Active" + }, + { + "id": 869, + "productName": "Smart Almonds", + "category": "Grocery", + "sku": "GROC-00869", + "price": 791.34, + "stock": 167, + "status": "Active" + }, + { + "id": 870, + "productName": "Compact Filing Tray", + "category": "Office", + "sku": "OFFC-00870", + "price": 6074.04, + "stock": 313, + "status": "Active" + }, + { + "id": 871, + "productName": "Compact Almonds", + "category": "Grocery", + "sku": "GROC-00871", + "price": 123.3, + "stock": 226, + "status": "Active" + }, + { + "id": 872, + "productName": "Eco Cricket Bat", + "category": "Sports", + "sku": "SPRT-00872", + "price": 10393.39, + "stock": 227, + "status": "Active" + }, + { + "id": 873, + "productName": "Eco Pen Set", + "category": "Office", + "sku": "OFFC-00873", + "price": 5595.98, + "stock": 229, + "status": "Active" + }, + { + "id": 874, + "productName": "Premium Perfume", + "category": "Beauty", + "sku": "BEAU-00874", + "price": 2426.09, + "stock": 279, + "status": "Active" + }, + { + "id": 875, + "productName": "Smart Puzzle", + "category": "Toys", + "sku": "TOYS-00875", + "price": 744.03, + "stock": 205, + "status": "Active" + }, + { + "id": 876, + "productName": "Eco Anthology", + "category": "Books", + "sku": "BOOK-00876", + "price": 1440.1, + "stock": 319, + "status": "Active" + }, + { + "id": 877, + "productName": "Premium Guide", + "category": "Books", + "sku": "BOOK-00877", + "price": 1896.63, + "stock": 98, + "status": "Active" + }, + { + "id": 878, + "productName": "Portable Cycling Helmet", + "category": "Sports", + "sku": "SPRT-00878", + "price": 19404.18, + "stock": 86, + "status": "Active" + }, + { + "id": 879, + "productName": "Ergonomic Knife Set", + "category": "Home & Kitchen", + "sku": "HOME-00879", + "price": 16468.16, + "stock": 396, + "status": "Active" + }, + { + "id": 880, + "productName": "Portable Dumbbells", + "category": "Sports", + "sku": "SPRT-00880", + "price": 1734.55, + "stock": 67, + "status": "Active" + }, + { + "id": 881, + "productName": "Portable Shampoo", + "category": "Beauty", + "sku": "BEAU-00881", + "price": 7583.42, + "stock": 335, + "status": "Active" + }, + { + "id": 882, + "productName": "Ultra Novel", + "category": "Books", + "sku": "BOOK-00882", + "price": 1979.78, + "stock": 491, + "status": "Active" + }, + { + "id": 883, + "productName": "Eco Puzzle", + "category": "Toys", + "sku": "TOYS-00883", + "price": 2761.12, + "stock": 403, + "status": "Active" + }, + { + "id": 884, + "productName": "Ultra Cricket Bat", + "category": "Sports", + "sku": "SPRT-00884", + "price": 16173.92, + "stock": 419, + "status": "Active" + }, + { + "id": 885, + "productName": "Classic Conditioner", + "category": "Beauty", + "sku": "BEAU-00885", + "price": 7346.34, + "stock": 158, + "status": "Active" + }, + { + "id": 886, + "productName": "Premium Dress", + "category": "Clothing", + "sku": "CLOT-00886", + "price": 7526.18, + "stock": 26, + "status": "Active" + }, + { + "id": 887, + "productName": "Smart Anthology", + "category": "Books", + "sku": "BOOK-00887", + "price": 566.93, + "stock": 76, + "status": "Active" + }, + { + "id": 888, + "productName": "Portable Planner", + "category": "Office", + "sku": "OFFC-00888", + "price": 8004.04, + "stock": 406, + "status": "Active" + }, + { + "id": 889, + "productName": "Portable Camera", + "category": "Electronics", + "sku": "ELEC-00889", + "price": 84995.08, + "stock": 475, + "status": "Active" + }, + { + "id": 890, + "productName": "Compact Building Blocks", + "category": "Toys", + "sku": "TOYS-00890", + "price": 8952.02, + "stock": 291, + "status": "Active" + }, + { + "id": 891, + "productName": "Classic Monitor", + "category": "Electronics", + "sku": "ELEC-00891", + "price": 26098.29, + "stock": 30, + "status": "Active" + }, + { + "id": 892, + "productName": "Classic Dress", + "category": "Clothing", + "sku": "CLOT-00892", + "price": 1982.7, + "stock": 42, + "status": "Active" + }, + { + "id": 893, + "productName": "Ergonomic Perfume", + "category": "Beauty", + "sku": "BEAU-00893", + "price": 8660.46, + "stock": 464, + "status": "Active" + }, + { + "id": 894, + "productName": "Classic Tennis Racket", + "category": "Sports", + "sku": "SPRT-00894", + "price": 12363.78, + "stock": 5, + "status": "Active" + }, + { + "id": 895, + "productName": "Wireless Perfume", + "category": "Beauty", + "sku": "BEAU-00895", + "price": 4201.55, + "stock": 325, + "status": "Active" + }, + { + "id": 896, + "productName": "Portable Shirt", + "category": "Clothing", + "sku": "CLOT-00896", + "price": 7682.3, + "stock": 134, + "status": "Active" + }, + { + "id": 897, + "productName": "Durable Cookbook", + "category": "Books", + "sku": "BOOK-00897", + "price": 1304.28, + "stock": 264, + "status": "Active" + }, + { + "id": 898, + "productName": "Eco Olive Oil", + "category": "Grocery", + "sku": "GROC-00898", + "price": 960.86, + "stock": 217, + "status": "Active" + }, + { + "id": 899, + "productName": "Classic Honey", + "category": "Grocery", + "sku": "GROC-00899", + "price": 845.35, + "stock": 104, + "status": "Active" + }, + { + "id": 900, + "productName": "Ultra Laptop", + "category": "Electronics", + "sku": "ELEC-00900", + "price": 64435.04, + "stock": 88, + "status": "Active" + }, + { + "id": 901, + "productName": "Smart Power Bank", + "category": "Electronics", + "sku": "ELEC-00901", + "price": 31308.49, + "stock": 432, + "status": "Active" + }, + { + "id": 902, + "productName": "Wireless Basmati Rice", + "category": "Grocery", + "sku": "GROC-00902", + "price": 854.43, + "stock": 246, + "status": "Active" + }, + { + "id": 903, + "productName": "Classic Desk Lamp", + "category": "Office", + "sku": "OFFC-00903", + "price": 9575.51, + "stock": 364, + "status": "Active" + }, + { + "id": 904, + "productName": "Compact Headphones", + "category": "Electronics", + "sku": "ELEC-00904", + "price": 42353.72, + "stock": 397, + "status": "Active" + }, + { + "id": 905, + "productName": "Durable Cycling Helmet", + "category": "Sports", + "sku": "SPRT-00905", + "price": 22661.88, + "stock": 190, + "status": "Active" + }, + { + "id": 906, + "productName": "Portable Anthology", + "category": "Books", + "sku": "BOOK-00906", + "price": 1178.94, + "stock": 475, + "status": "Active" + }, + { + "id": 907, + "productName": "Smart Water Bottle", + "category": "Home & Kitchen", + "sku": "HOME-00907", + "price": 29902.32, + "stock": 489, + "status": "Active" + }, + { + "id": 908, + "productName": "Classic Filing Tray", + "category": "Office", + "sku": "OFFC-00908", + "price": 7714.11, + "stock": 341, + "status": "Active" + }, + { + "id": 909, + "productName": "Ergonomic Building Blocks", + "category": "Toys", + "sku": "TOYS-00909", + "price": 8366.74, + "stock": 260, + "status": "Active" + }, + { + "id": 910, + "productName": "Wireless Laptop", + "category": "Electronics", + "sku": "ELEC-00910", + "price": 26515.02, + "stock": 230, + "status": "Active" + }, + { + "id": 911, + "productName": "Portable Sneakers", + "category": "Clothing", + "sku": "CLOT-00911", + "price": 5087.47, + "stock": 187, + "status": "Active" + }, + { + "id": 912, + "productName": "Durable Biography", + "category": "Books", + "sku": "BOOK-00912", + "price": 1704.94, + "stock": 362, + "status": "Active" + }, + { + "id": 913, + "productName": "Premium Vacuum Cleaner", + "category": "Home & Kitchen", + "sku": "HOME-00913", + "price": 21339.3, + "stock": 399, + "status": "Active" + }, + { + "id": 914, + "productName": "Ultra Shampoo", + "category": "Beauty", + "sku": "BEAU-00914", + "price": 5395.66, + "stock": 289, + "status": "Active" + }, + { + "id": 915, + "productName": "Classic Remote Car", + "category": "Toys", + "sku": "TOYS-00915", + "price": 1235.63, + "stock": 256, + "status": "Active" + }, + { + "id": 916, + "productName": "Ultra Sneakers", + "category": "Clothing", + "sku": "CLOT-00916", + "price": 3143.88, + "stock": 12, + "status": "Active" + }, + { + "id": 917, + "productName": "Ultra Kurta", + "category": "Clothing", + "sku": "CLOT-00917", + "price": 3872.19, + "stock": 371, + "status": "Active" + }, + { + "id": 918, + "productName": "Ultra Toaster", + "category": "Home & Kitchen", + "sku": "HOME-00918", + "price": 22637.73, + "stock": 127, + "status": "Active" + }, + { + "id": 919, + "productName": "Smart Jacket", + "category": "Clothing", + "sku": "CLOT-00919", + "price": 6981.78, + "stock": 69, + "status": "Active" + }, + { + "id": 920, + "productName": "Premium Cookbook", + "category": "Books", + "sku": "BOOK-00920", + "price": 204.88, + "stock": 352, + "status": "Active" + }, + { + "id": 921, + "productName": "Portable Mixer", + "category": "Home & Kitchen", + "sku": "HOME-00921", + "price": 23074.82, + "stock": 346, + "status": "Active" + }, + { + "id": 922, + "productName": "Smart Cycling Helmet", + "category": "Sports", + "sku": "SPRT-00922", + "price": 12426.63, + "stock": 441, + "status": "Active" + }, + { + "id": 923, + "productName": "Ergonomic Toaster", + "category": "Home & Kitchen", + "sku": "HOME-00923", + "price": 5129.55, + "stock": 458, + "status": "Active" + }, + { + "id": 924, + "productName": "Ultra Football", + "category": "Sports", + "sku": "SPRT-00924", + "price": 7776.11, + "stock": 12, + "status": "Active" + }, + { + "id": 925, + "productName": "Portable Remote Car", + "category": "Toys", + "sku": "TOYS-00925", + "price": 7831.37, + "stock": 295, + "status": "Active" + }, + { + "id": 926, + "productName": "Smart Building Blocks", + "category": "Toys", + "sku": "TOYS-00926", + "price": 3602.01, + "stock": 171, + "status": "Active" + }, + { + "id": 927, + "productName": "Classic Notebook", + "category": "Office", + "sku": "OFFC-00927", + "price": 5990.42, + "stock": 314, + "status": "Active" + }, + { + "id": 928, + "productName": "Premium Filing Tray", + "category": "Office", + "sku": "OFFC-00928", + "price": 5712.29, + "stock": 119, + "status": "Active" + }, + { + "id": 929, + "productName": "Eco Textbook", + "category": "Books", + "sku": "BOOK-00929", + "price": 466.87, + "stock": 80, + "status": "Active" + }, + { + "id": 930, + "productName": "Classic Serum", + "category": "Beauty", + "sku": "BEAU-00930", + "price": 7830.78, + "stock": 218, + "status": "Active" + }, + { + "id": 931, + "productName": "Portable Jacket", + "category": "Clothing", + "sku": "CLOT-00931", + "price": 6370.14, + "stock": 99, + "status": "Active" + }, + { + "id": 932, + "productName": "Durable Keyboard", + "category": "Electronics", + "sku": "ELEC-00932", + "price": 32446.43, + "stock": 412, + "status": "Active" + }, + { + "id": 933, + "productName": "Portable Basmati Rice", + "category": "Grocery", + "sku": "GROC-00933", + "price": 1666.82, + "stock": 213, + "status": "Active" + }, + { + "id": 934, + "productName": "Smart Building Blocks", + "category": "Toys", + "sku": "TOYS-00934", + "price": 5632.19, + "stock": 301, + "status": "Active" + }, + { + "id": 935, + "productName": "Portable Filing Tray", + "category": "Office", + "sku": "OFFC-00935", + "price": 2482.15, + "stock": 364, + "status": "Active" + }, + { + "id": 936, + "productName": "Eco Cycling Helmet", + "category": "Sports", + "sku": "SPRT-00936", + "price": 21318.79, + "stock": 269, + "status": "Active" + }, + { + "id": 937, + "productName": "Durable Keyboard", + "category": "Electronics", + "sku": "ELEC-00937", + "price": 137710.49, + "stock": 12, + "status": "Active" + }, + { + "id": 938, + "productName": "Premium Remote Car", + "category": "Toys", + "sku": "TOYS-00938", + "price": 4059.07, + "stock": 279, + "status": "Active" + }, + { + "id": 939, + "productName": "Eco Perfume", + "category": "Beauty", + "sku": "BEAU-00939", + "price": 2761.75, + "stock": 314, + "status": "Active" + }, + { + "id": 940, + "productName": "Premium Dark Chocolate", + "category": "Grocery", + "sku": "GROC-00940", + "price": 1783.15, + "stock": 371, + "status": "Active" + }, + { + "id": 941, + "productName": "Portable Puzzle", + "category": "Toys", + "sku": "TOYS-00941", + "price": 2552.88, + "stock": 382, + "status": "Active" + }, + { + "id": 942, + "productName": "Wireless Jacket", + "category": "Clothing", + "sku": "CLOT-00942", + "price": 946.9, + "stock": 458, + "status": "Active" + }, + { + "id": 943, + "productName": "Durable Almonds", + "category": "Grocery", + "sku": "GROC-00943", + "price": 1197.8, + "stock": 72, + "status": "Active" + }, + { + "id": 944, + "productName": "Classic Charger", + "category": "Electronics", + "sku": "ELEC-00944", + "price": 149327.84, + "stock": 485, + "status": "Active" + }, + { + "id": 945, + "productName": "Ergonomic Cookbook", + "category": "Books", + "sku": "BOOK-00945", + "price": 501.16, + "stock": 31, + "status": "Active" + }, + { + "id": 946, + "productName": "Compact Board Game", + "category": "Toys", + "sku": "TOYS-00946", + "price": 9459.31, + "stock": 199, + "status": "Active" + }, + { + "id": 947, + "productName": "Classic Cycling Helmet", + "category": "Sports", + "sku": "SPRT-00947", + "price": 736.42, + "stock": 387, + "status": "Active" + }, + { + "id": 948, + "productName": "Eco Board Game", + "category": "Toys", + "sku": "TOYS-00948", + "price": 6235.38, + "stock": 500, + "status": "Active" + }, + { + "id": 949, + "productName": "Eco Olive Oil", + "category": "Grocery", + "sku": "GROC-00949", + "price": 702.32, + "stock": 376, + "status": "Active" + }, + { + "id": 950, + "productName": "Premium Basmati Rice", + "category": "Grocery", + "sku": "GROC-00950", + "price": 1396.49, + "stock": 449, + "status": "Active" + }, + { + "id": 951, + "productName": "Eco Guide", + "category": "Books", + "sku": "BOOK-00951", + "price": 1734.77, + "stock": 442, + "status": "Active" + }, + { + "id": 952, + "productName": "Ergonomic Vacuum Cleaner", + "category": "Home & Kitchen", + "sku": "HOME-00952", + "price": 1361.7, + "stock": 396, + "status": "Active" + }, + { + "id": 953, + "productName": "Ergonomic Conditioner", + "category": "Beauty", + "sku": "BEAU-00953", + "price": 2785.5, + "stock": 55, + "status": "Active" + }, + { + "id": 954, + "productName": "Ergonomic Jeans", + "category": "Clothing", + "sku": "CLOT-00954", + "price": 2750.65, + "stock": 218, + "status": "Active" + }, + { + "id": 955, + "productName": "Ultra Almonds", + "category": "Grocery", + "sku": "GROC-00955", + "price": 1497.04, + "stock": 393, + "status": "Active" + }, + { + "id": 956, + "productName": "Portable Dark Chocolate", + "category": "Grocery", + "sku": "GROC-00956", + "price": 1698.78, + "stock": 38, + "status": "Active" + }, + { + "id": 957, + "productName": "Classic Laptop", + "category": "Electronics", + "sku": "ELEC-00957", + "price": 129249.8, + "stock": 471, + "status": "Active" + }, + { + "id": 958, + "productName": "Compact Perfume", + "category": "Beauty", + "sku": "BEAU-00958", + "price": 7514.64, + "stock": 113, + "status": "Active" + }, + { + "id": 959, + "productName": "Wireless Cookbook", + "category": "Books", + "sku": "BOOK-00959", + "price": 1378.88, + "stock": 434, + "status": "Active" + }, + { + "id": 960, + "productName": "Durable Perfume", + "category": "Beauty", + "sku": "BEAU-00960", + "price": 8570.6, + "stock": 305, + "status": "Active" + }, + { + "id": 961, + "productName": "Wireless Planner", + "category": "Office", + "sku": "OFFC-00961", + "price": 1005.5, + "stock": 336, + "status": "Active" + }, + { + "id": 962, + "productName": "Portable Sneakers", + "category": "Clothing", + "sku": "CLOT-00962", + "price": 6676.31, + "stock": 72, + "status": "Active" + }, + { + "id": 963, + "productName": "Ultra Guide", + "category": "Books", + "sku": "BOOK-00963", + "price": 1570.23, + "stock": 9, + "status": "Active" + }, + { + "id": 964, + "productName": "Durable Knife Set", + "category": "Home & Kitchen", + "sku": "HOME-00964", + "price": 1116.18, + "stock": 227, + "status": "Active" + }, + { + "id": 965, + "productName": "Ergonomic Notebook", + "category": "Office", + "sku": "OFFC-00965", + "price": 727.32, + "stock": 58, + "status": "Active" + }, + { + "id": 966, + "productName": "Portable Serum", + "category": "Beauty", + "sku": "BEAU-00966", + "price": 5221.59, + "stock": 324, + "status": "Active" + }, + { + "id": 967, + "productName": "Wireless Headphones", + "category": "Electronics", + "sku": "ELEC-00967", + "price": 12322.38, + "stock": 434, + "status": "Active" + }, + { + "id": 968, + "productName": "Ergonomic Serum", + "category": "Beauty", + "sku": "BEAU-00968", + "price": 8051.9, + "stock": 230, + "status": "Active" + }, + { + "id": 969, + "productName": "Smart Desk Lamp", + "category": "Office", + "sku": "OFFC-00969", + "price": 6344.02, + "stock": 197, + "status": "Active" + }, + { + "id": 970, + "productName": "Premium Anthology", + "category": "Books", + "sku": "BOOK-00970", + "price": 1030.11, + "stock": 270, + "status": "Active" + }, + { + "id": 971, + "productName": "Eco Coffee Maker", + "category": "Home & Kitchen", + "sku": "HOME-00971", + "price": 3149.1, + "stock": 412, + "status": "Active" + }, + { + "id": 972, + "productName": "Durable Stuffed Toy", + "category": "Toys", + "sku": "TOYS-00972", + "price": 7162.71, + "stock": 203, + "status": "Active" + }, + { + "id": 973, + "productName": "Ultra Notebook", + "category": "Office", + "sku": "OFFC-00973", + "price": 436.21, + "stock": 351, + "status": "Active" + }, + { + "id": 974, + "productName": "Durable Kurta", + "category": "Clothing", + "sku": "CLOT-00974", + "price": 1769.88, + "stock": 382, + "status": "Active" + }, + { + "id": 975, + "productName": "Eco Notebook", + "category": "Office", + "sku": "OFFC-00975", + "price": 5863.61, + "stock": 297, + "status": "Active" + }, + { + "id": 976, + "productName": "Classic Textbook", + "category": "Books", + "sku": "BOOK-00976", + "price": 1959.87, + "stock": 145, + "status": "Active" + }, + { + "id": 977, + "productName": "Classic Football", + "category": "Sports", + "sku": "SPRT-00977", + "price": 12689.03, + "stock": 390, + "status": "Active" + }, + { + "id": 978, + "productName": "Premium Jacket", + "category": "Clothing", + "sku": "CLOT-00978", + "price": 2133.91, + "stock": 342, + "status": "Active" + }, + { + "id": 979, + "productName": "Ultra Smartwatch", + "category": "Electronics", + "sku": "ELEC-00979", + "price": 57409.93, + "stock": 111, + "status": "Active" + }, + { + "id": 980, + "productName": "Eco Mouse", + "category": "Electronics", + "sku": "ELEC-00980", + "price": 103680.75, + "stock": 41, + "status": "Active" + }, + { + "id": 981, + "productName": "Durable Face Cream", + "category": "Beauty", + "sku": "BEAU-00981", + "price": 2168.84, + "stock": 417, + "status": "Active" + }, + { + "id": 982, + "productName": "Eco Mouse", + "category": "Electronics", + "sku": "ELEC-00982", + "price": 73387.51, + "stock": 288, + "status": "Active" + }, + { + "id": 983, + "productName": "Premium T-Shirt", + "category": "Clothing", + "sku": "CLOT-00983", + "price": 6585.8, + "stock": 387, + "status": "Active" + }, + { + "id": 984, + "productName": "Wireless Serum", + "category": "Beauty", + "sku": "BEAU-00984", + "price": 2130.65, + "stock": 245, + "status": "Active" + }, + { + "id": 985, + "productName": "Eco Power Bank", + "category": "Electronics", + "sku": "ELEC-00985", + "price": 121906.15, + "stock": 337, + "status": "Active" + }, + { + "id": 986, + "productName": "Portable Yoga Mat", + "category": "Sports", + "sku": "SPRT-00986", + "price": 24384.53, + "stock": 328, + "status": "Active" + }, + { + "id": 987, + "productName": "Wireless Basmati Rice", + "category": "Grocery", + "sku": "GROC-00987", + "price": 742.75, + "stock": 296, + "status": "Active" + }, + { + "id": 988, + "productName": "Portable Novel", + "category": "Books", + "sku": "BOOK-00988", + "price": 1532.0, + "stock": 192, + "status": "Active" + }, + { + "id": 989, + "productName": "Ultra Shirt", + "category": "Clothing", + "sku": "CLOT-00989", + "price": 2111.24, + "stock": 345, + "status": "Active" + }, + { + "id": 990, + "productName": "Portable Yoga Mat", + "category": "Sports", + "sku": "SPRT-00990", + "price": 17725.07, + "stock": 221, + "status": "Active" + }, + { + "id": 991, + "productName": "Ultra Kurta", + "category": "Clothing", + "sku": "CLOT-00991", + "price": 7134.53, + "stock": 296, + "status": "Active" + }, + { + "id": 992, + "productName": "Portable Board Game", + "category": "Toys", + "sku": "TOYS-00992", + "price": 9587.17, + "stock": 435, + "status": "Active" + }, + { + "id": 993, + "productName": "Ultra Monitor", + "category": "Electronics", + "sku": "ELEC-00993", + "price": 140499.78, + "stock": 133, + "status": "Active" + }, + { + "id": 994, + "productName": "Ultra Air Fryer", + "category": "Home & Kitchen", + "sku": "HOME-00994", + "price": 4800.04, + "stock": 156, + "status": "Active" + }, + { + "id": 995, + "productName": "Compact Football", + "category": "Sports", + "sku": "SPRT-00995", + "price": 323.12, + "stock": 340, + "status": "Active" + }, + { + "id": 996, + "productName": "Portable Board Game", + "category": "Toys", + "sku": "TOYS-00996", + "price": 3912.81, + "stock": 141, + "status": "Active" + }, + { + "id": 997, + "productName": "Compact Guide", + "category": "Books", + "sku": "BOOK-00997", + "price": 1464.17, + "stock": 88, + "status": "Active" + }, + { + "id": 998, + "productName": "Ultra Coffee Maker", + "category": "Home & Kitchen", + "sku": "HOME-00998", + "price": 12402.78, + "stock": 403, + "status": "Active" + }, + { + "id": 999, + "productName": "Ultra Olive Oil", + "category": "Grocery", + "sku": "GROC-00999", + "price": 1570.72, + "stock": 153, + "status": "Active" + }, + { + "id": 1000, + "productName": "Eco Laptop", + "category": "Electronics", + "sku": "ELEC-01000", + "price": 36450.3, + "stock": 307, + "status": "Active" + }, + { + "id": 1001, + "productName": "Compact Shirt", + "category": "Clothing", + "sku": "CLOT-01001", + "price": 7817.6, + "stock": 283, + "status": "Active" + }, + { + "id": 1002, + "productName": "Portable Planner", + "category": "Office", + "sku": "OFFC-01002", + "price": 1170.51, + "stock": 476, + "status": "Active" + }, + { + "id": 1003, + "productName": "Compact Olive Oil", + "category": "Grocery", + "sku": "GROC-01003", + "price": 1908.58, + "stock": 96, + "status": "Active" + }, + { + "id": 1004, + "productName": "Portable Cycling Helmet", + "category": "Sports", + "sku": "SPRT-01004", + "price": 17713.92, + "stock": 168, + "status": "Active" + }, + { + "id": 1005, + "productName": "Ergonomic Water Bottle", + "category": "Home & Kitchen", + "sku": "HOME-01005", + "price": 8123.78, + "stock": 440, + "status": "Active" + }, + { + "id": 1006, + "productName": "Compact Cookware Set", + "category": "Home & Kitchen", + "sku": "HOME-01006", + "price": 688.18, + "stock": 89, + "status": "Active" + }, + { + "id": 1007, + "productName": "Ultra Novel", + "category": "Books", + "sku": "BOOK-01007", + "price": 771.69, + "stock": 78, + "status": "Active" + }, + { + "id": 1008, + "productName": "Portable Guide", + "category": "Books", + "sku": "BOOK-01008", + "price": 1008.4, + "stock": 215, + "status": "Active" + }, + { + "id": 1009, + "productName": "Ultra Dumbbells", + "category": "Sports", + "sku": "SPRT-01009", + "price": 418.24, + "stock": 450, + "status": "Active" + }, + { + "id": 1010, + "productName": "Ultra Almonds", + "category": "Grocery", + "sku": "GROC-01010", + "price": 1141.5, + "stock": 252, + "status": "Active" + }, + { + "id": 1011, + "productName": "Premium Notebook", + "category": "Office", + "sku": "OFFC-01011", + "price": 6626.88, + "stock": 365, + "status": "Active" + }, + { + "id": 1012, + "productName": "Compact Notebook", + "category": "Office", + "sku": "OFFC-01012", + "price": 7684.32, + "stock": 354, + "status": "Active" + }, + { + "id": 1013, + "productName": "Portable Kurta", + "category": "Clothing", + "sku": "CLOT-01013", + "price": 1927.65, + "stock": 105, + "status": "Active" + }, + { + "id": 1014, + "productName": "Eco Conditioner", + "category": "Beauty", + "sku": "BEAU-01014", + "price": 8467.71, + "stock": 196, + "status": "Active" + }, + { + "id": 1015, + "productName": "Compact Football", + "category": "Sports", + "sku": "SPRT-01015", + "price": 9305.38, + "stock": 410, + "status": "Active" + }, + { + "id": 1016, + "productName": "Wireless Board Game", + "category": "Toys", + "sku": "TOYS-01016", + "price": 3637.29, + "stock": 223, + "status": "Active" + }, + { + "id": 1017, + "productName": "Compact Tennis Racket", + "category": "Sports", + "sku": "SPRT-01017", + "price": 6121.67, + "stock": 374, + "status": "Active" + }, + { + "id": 1018, + "productName": "Wireless Power Bank", + "category": "Electronics", + "sku": "ELEC-01018", + "price": 15747.02, + "stock": 189, + "status": "Active" + }, + { + "id": 1019, + "productName": "Ultra Anthology", + "category": "Books", + "sku": "BOOK-01019", + "price": 1296.88, + "stock": 113, + "status": "Active" + }, + { + "id": 1020, + "productName": "Durable Notebook", + "category": "Office", + "sku": "OFFC-01020", + "price": 1871.91, + "stock": 89, + "status": "Active" + }, + { + "id": 1021, + "productName": "Smart Cookbook", + "category": "Books", + "sku": "BOOK-01021", + "price": 906.05, + "stock": 133, + "status": "Active" + }, + { + "id": 1022, + "productName": "Wireless Pen Set", + "category": "Office", + "sku": "OFFC-01022", + "price": 5725.13, + "stock": 180, + "status": "Active" + }, + { + "id": 1023, + "productName": "Portable Water Bottle", + "category": "Home & Kitchen", + "sku": "HOME-01023", + "price": 5089.88, + "stock": 444, + "status": "Active" + }, + { + "id": 1024, + "productName": "Ultra Power Bank", + "category": "Electronics", + "sku": "ELEC-01024", + "price": 66129.78, + "stock": 392, + "status": "Active" + }, + { + "id": 1025, + "productName": "Smart Kurta", + "category": "Clothing", + "sku": "CLOT-01025", + "price": 1215.16, + "stock": 478, + "status": "Active" + }, + { + "id": 1026, + "productName": "Wireless Perfume", + "category": "Beauty", + "sku": "BEAU-01026", + "price": 3588.75, + "stock": 12, + "status": "Active" + }, + { + "id": 1027, + "productName": "Durable Kurta", + "category": "Clothing", + "sku": "CLOT-01027", + "price": 5745.45, + "stock": 108, + "status": "Active" + }, + { + "id": 1028, + "productName": "Ergonomic Headphones", + "category": "Electronics", + "sku": "ELEC-01028", + "price": 134092.95, + "stock": 361, + "status": "Active" + }, + { + "id": 1029, + "productName": "Wireless Biography", + "category": "Books", + "sku": "BOOK-01029", + "price": 165.83, + "stock": 15, + "status": "Active" + }, + { + "id": 1030, + "productName": "Wireless Planner", + "category": "Office", + "sku": "OFFC-01030", + "price": 1534.75, + "stock": 488, + "status": "Active" + }, + { + "id": 1031, + "productName": "Classic Building Blocks", + "category": "Toys", + "sku": "TOYS-01031", + "price": 5090.52, + "stock": 217, + "status": "Active" + }, + { + "id": 1032, + "productName": "Durable Football", + "category": "Sports", + "sku": "SPRT-01032", + "price": 7428.84, + "stock": 111, + "status": "Active" + }, + { + "id": 1033, + "productName": "Wireless Pen Set", + "category": "Office", + "sku": "OFFC-01033", + "price": 9434.16, + "stock": 215, + "status": "Active" + }, + { + "id": 1034, + "productName": "Portable Shampoo", + "category": "Beauty", + "sku": "BEAU-01034", + "price": 1359.69, + "stock": 477, + "status": "Active" + }, + { + "id": 1035, + "productName": "Ultra Stuffed Toy", + "category": "Toys", + "sku": "TOYS-01035", + "price": 5244.59, + "stock": 54, + "status": "Active" + }, + { + "id": 1036, + "productName": "Compact T-Shirt", + "category": "Clothing", + "sku": "CLOT-01036", + "price": 2927.57, + "stock": 466, + "status": "Active" + }, + { + "id": 1037, + "productName": "Ultra Planner", + "category": "Office", + "sku": "OFFC-01037", + "price": 2057.64, + "stock": 178, + "status": "Active" + }, + { + "id": 1038, + "productName": "Wireless Coffee Maker", + "category": "Home & Kitchen", + "sku": "HOME-01038", + "price": 20141.88, + "stock": 133, + "status": "Active" + }, + { + "id": 1039, + "productName": "Smart Honey", + "category": "Grocery", + "sku": "GROC-01039", + "price": 1936.59, + "stock": 182, + "status": "Active" + }, + { + "id": 1040, + "productName": "Portable Jeans", + "category": "Clothing", + "sku": "CLOT-01040", + "price": 2718.22, + "stock": 414, + "status": "Active" + }, + { + "id": 1041, + "productName": "Compact Coffee Maker", + "category": "Home & Kitchen", + "sku": "HOME-01041", + "price": 27397.67, + "stock": 417, + "status": "Active" + }, + { + "id": 1042, + "productName": "Ergonomic Almonds", + "category": "Grocery", + "sku": "GROC-01042", + "price": 1024.48, + "stock": 184, + "status": "Active" + }, + { + "id": 1043, + "productName": "Eco Toaster", + "category": "Home & Kitchen", + "sku": "HOME-01043", + "price": 20922.36, + "stock": 117, + "status": "Active" + }, + { + "id": 1044, + "productName": "Premium Coffee Maker", + "category": "Home & Kitchen", + "sku": "HOME-01044", + "price": 24839.81, + "stock": 28, + "status": "Active" + }, + { + "id": 1045, + "productName": "Eco Dark Chocolate", + "category": "Grocery", + "sku": "GROC-01045", + "price": 1516.85, + "stock": 110, + "status": "Active" + }, + { + "id": 1046, + "productName": "Classic Jacket", + "category": "Clothing", + "sku": "CLOT-01046", + "price": 5778.01, + "stock": 224, + "status": "Active" + }, + { + "id": 1047, + "productName": "Ergonomic Cycling Helmet", + "category": "Sports", + "sku": "SPRT-01047", + "price": 17199.35, + "stock": 381, + "status": "Active" + }, + { + "id": 1048, + "productName": "Wireless Planner", + "category": "Office", + "sku": "OFFC-01048", + "price": 5762.93, + "stock": 495, + "status": "Active" + }, + { + "id": 1049, + "productName": "Classic Almonds", + "category": "Grocery", + "sku": "GROC-01049", + "price": 1039.6, + "stock": 433, + "status": "Active" + }, + { + "id": 1050, + "productName": "Portable Sneakers", + "category": "Clothing", + "sku": "CLOT-01050", + "price": 6817.14, + "stock": 253, + "status": "Active" + }, + { + "id": 1051, + "productName": "Durable Pen Set", + "category": "Office", + "sku": "OFFC-01051", + "price": 4758.08, + "stock": 387, + "status": "Active" + }, + { + "id": 1052, + "productName": "Ultra Face Cream", + "category": "Beauty", + "sku": "BEAU-01052", + "price": 587.85, + "stock": 337, + "status": "Active" + }, + { + "id": 1053, + "productName": "Compact Face Cream", + "category": "Beauty", + "sku": "BEAU-01053", + "price": 8189.18, + "stock": 267, + "status": "Active" + }, + { + "id": 1054, + "productName": "Eco Perfume", + "category": "Beauty", + "sku": "BEAU-01054", + "price": 8221.47, + "stock": 367, + "status": "Active" + }, + { + "id": 1055, + "productName": "Premium Air Fryer", + "category": "Home & Kitchen", + "sku": "HOME-01055", + "price": 27002.44, + "stock": 98, + "status": "Active" + }, + { + "id": 1056, + "productName": "Wireless Toaster", + "category": "Home & Kitchen", + "sku": "HOME-01056", + "price": 25490.62, + "stock": 262, + "status": "Active" + }, + { + "id": 1057, + "productName": "Portable Puzzle", + "category": "Toys", + "sku": "TOYS-01057", + "price": 3959.97, + "stock": 130, + "status": "Active" + }, + { + "id": 1058, + "productName": "Premium Basmati Rice", + "category": "Grocery", + "sku": "GROC-01058", + "price": 1897.79, + "stock": 482, + "status": "Active" + }, + { + "id": 1059, + "productName": "Portable T-Shirt", + "category": "Clothing", + "sku": "CLOT-01059", + "price": 4430.77, + "stock": 57, + "status": "Active" + }, + { + "id": 1060, + "productName": "Smart Puzzle", + "category": "Toys", + "sku": "TOYS-01060", + "price": 6399.92, + "stock": 99, + "status": "Active" + }, + { + "id": 1061, + "productName": "Ultra Dark Chocolate", + "category": "Grocery", + "sku": "GROC-01061", + "price": 463.3, + "stock": 131, + "status": "Active" + }, + { + "id": 1062, + "productName": "Eco Cookbook", + "category": "Books", + "sku": "BOOK-01062", + "price": 1135.21, + "stock": 439, + "status": "Active" + }, + { + "id": 1063, + "productName": "Ultra Filing Tray", + "category": "Office", + "sku": "OFFC-01063", + "price": 8853.45, + "stock": 426, + "status": "Active" + }, + { + "id": 1064, + "productName": "Durable Olive Oil", + "category": "Grocery", + "sku": "GROC-01064", + "price": 733.95, + "stock": 459, + "status": "Active" + }, + { + "id": 1065, + "productName": "Classic Pen Set", + "category": "Office", + "sku": "OFFC-01065", + "price": 6964.37, + "stock": 433, + "status": "Active" + }, + { + "id": 1066, + "productName": "Eco Novel", + "category": "Books", + "sku": "BOOK-01066", + "price": 1202.11, + "stock": 169, + "status": "Active" + }, + { + "id": 1067, + "productName": "Portable Olive Oil", + "category": "Grocery", + "sku": "GROC-01067", + "price": 706.22, + "stock": 189, + "status": "Active" + }, + { + "id": 1068, + "productName": "Compact Charger", + "category": "Electronics", + "sku": "ELEC-01068", + "price": 105725.8, + "stock": 153, + "status": "Active" + }, + { + "id": 1069, + "productName": "Premium Biography", + "category": "Books", + "sku": "BOOK-01069", + "price": 566.84, + "stock": 427, + "status": "Active" + }, + { + "id": 1070, + "productName": "Ultra Dumbbells", + "category": "Sports", + "sku": "SPRT-01070", + "price": 2624.09, + "stock": 112, + "status": "Active" + }, + { + "id": 1071, + "productName": "Classic Filing Tray", + "category": "Office", + "sku": "OFFC-01071", + "price": 766.49, + "stock": 438, + "status": "Active" + }, + { + "id": 1072, + "productName": "Premium Toaster", + "category": "Home & Kitchen", + "sku": "HOME-01072", + "price": 6882.42, + "stock": 378, + "status": "Active" + }, + { + "id": 1073, + "productName": "Ergonomic Puzzle", + "category": "Toys", + "sku": "TOYS-01073", + "price": 2316.6, + "stock": 70, + "status": "Active" + }, + { + "id": 1074, + "productName": "Wireless Honey", + "category": "Grocery", + "sku": "GROC-01074", + "price": 1372.81, + "stock": 186, + "status": "Active" + }, + { + "id": 1075, + "productName": "Durable Biography", + "category": "Books", + "sku": "BOOK-01075", + "price": 362.17, + "stock": 0, + "status": "Discontinued" + }, + { + "id": 1076, + "productName": "Classic Camera", + "category": "Electronics", + "sku": "ELEC-01076", + "price": 21012.6, + "stock": 403, + "status": "Active" + }, + { + "id": 1077, + "productName": "Durable T-Shirt", + "category": "Clothing", + "sku": "CLOT-01077", + "price": 3556.45, + "stock": 233, + "status": "Active" + }, + { + "id": 1078, + "productName": "Ergonomic Planner", + "category": "Office", + "sku": "OFFC-01078", + "price": 1718.45, + "stock": 314, + "status": "Active" + }, + { + "id": 1079, + "productName": "Classic Biography", + "category": "Books", + "sku": "BOOK-01079", + "price": 1634.63, + "stock": 342, + "status": "Active" + }, + { + "id": 1080, + "productName": "Eco Shampoo", + "category": "Beauty", + "sku": "BEAU-01080", + "price": 6175.01, + "stock": 247, + "status": "Active" + }, + { + "id": 1081, + "productName": "Classic Jeans", + "category": "Clothing", + "sku": "CLOT-01081", + "price": 1750.39, + "stock": 265, + "status": "Active" + }, + { + "id": 1082, + "productName": "Smart Jeans", + "category": "Clothing", + "sku": "CLOT-01082", + "price": 3108.17, + "stock": 214, + "status": "Active" + }, + { + "id": 1083, + "productName": "Compact Cookware Set", + "category": "Home & Kitchen", + "sku": "HOME-01083", + "price": 628.51, + "stock": 163, + "status": "Active" + }, + { + "id": 1084, + "productName": "Eco Shirt", + "category": "Clothing", + "sku": "CLOT-01084", + "price": 6350.91, + "stock": 101, + "status": "Active" + }, + { + "id": 1085, + "productName": "Eco Dress", + "category": "Clothing", + "sku": "CLOT-01085", + "price": 5053.59, + "stock": 354, + "status": "Active" + }, + { + "id": 1086, + "productName": "Ultra Conditioner", + "category": "Beauty", + "sku": "BEAU-01086", + "price": 8047.61, + "stock": 177, + "status": "Active" + }, + { + "id": 1087, + "productName": "Premium Water Bottle", + "category": "Home & Kitchen", + "sku": "HOME-01087", + "price": 10931.85, + "stock": 68, + "status": "Active" + }, + { + "id": 1088, + "productName": "Classic Perfume", + "category": "Beauty", + "sku": "BEAU-01088", + "price": 4904.2, + "stock": 461, + "status": "Active" + }, + { + "id": 1089, + "productName": "Ultra Vacuum Cleaner", + "category": "Home & Kitchen", + "sku": "HOME-01089", + "price": 15946.43, + "stock": 132, + "status": "Active" + }, + { + "id": 1090, + "productName": "Smart Filing Tray", + "category": "Office", + "sku": "OFFC-01090", + "price": 4901.59, + "stock": 382, + "status": "Active" + }, + { + "id": 1091, + "productName": "Eco Dark Chocolate", + "category": "Grocery", + "sku": "GROC-01091", + "price": 1890.42, + "stock": 63, + "status": "Active" + }, + { + "id": 1092, + "productName": "Durable Face Cream", + "category": "Beauty", + "sku": "BEAU-01092", + "price": 3408.76, + "stock": 269, + "status": "Active" + }, + { + "id": 1093, + "productName": "Ultra Face Cream", + "category": "Beauty", + "sku": "BEAU-01093", + "price": 8862.38, + "stock": 407, + "status": "Active" + }, + { + "id": 1094, + "productName": "Premium Pen Set", + "category": "Office", + "sku": "OFFC-01094", + "price": 2312.34, + "stock": 216, + "status": "Active" + }, + { + "id": 1095, + "productName": "Eco Novel", + "category": "Books", + "sku": "BOOK-01095", + "price": 1793.32, + "stock": 116, + "status": "Active" + }, + { + "id": 1096, + "productName": "Ergonomic Vacuum Cleaner", + "category": "Home & Kitchen", + "sku": "HOME-01096", + "price": 22629.82, + "stock": 114, + "status": "Active" + }, + { + "id": 1097, + "productName": "Durable Cricket Bat", + "category": "Sports", + "sku": "SPRT-01097", + "price": 27403.2, + "stock": 144, + "status": "Active" + }, + { + "id": 1098, + "productName": "Compact Football", + "category": "Sports", + "sku": "SPRT-01098", + "price": 475.57, + "stock": 389, + "status": "Active" + }, + { + "id": 1099, + "productName": "Compact Almonds", + "category": "Grocery", + "sku": "GROC-01099", + "price": 333.88, + "stock": 131, + "status": "Active" + }, + { + "id": 1100, + "productName": "Portable Dress", + "category": "Clothing", + "sku": "CLOT-01100", + "price": 3351.15, + "stock": 181, + "status": "Active" + }, + { + "id": 1101, + "productName": "Premium Headphones", + "category": "Electronics", + "sku": "ELEC-01101", + "price": 97672.46, + "stock": 170, + "status": "Active" + }, + { + "id": 1102, + "productName": "Compact Knife Set", + "category": "Home & Kitchen", + "sku": "HOME-01102", + "price": 21815.62, + "stock": 297, + "status": "Active" + }, + { + "id": 1103, + "productName": "Compact Almonds", + "category": "Grocery", + "sku": "GROC-01103", + "price": 1626.31, + "stock": 357, + "status": "Active" + }, + { + "id": 1104, + "productName": "Wireless Textbook", + "category": "Books", + "sku": "BOOK-01104", + "price": 1309.27, + "stock": 310, + "status": "Active" + }, + { + "id": 1105, + "productName": "Compact Jeans", + "category": "Clothing", + "sku": "CLOT-01105", + "price": 3276.53, + "stock": 93, + "status": "Active" + }, + { + "id": 1106, + "productName": "Classic Textbook", + "category": "Books", + "sku": "BOOK-01106", + "price": 439.34, + "stock": 490, + "status": "Active" + }, + { + "id": 1107, + "productName": "Smart Almonds", + "category": "Grocery", + "sku": "GROC-01107", + "price": 777.44, + "stock": 187, + "status": "Active" + }, + { + "id": 1108, + "productName": "Smart Yoga Mat", + "category": "Sports", + "sku": "SPRT-01108", + "price": 23779.56, + "stock": 61, + "status": "Active" + }, + { + "id": 1109, + "productName": "Eco Kurta", + "category": "Clothing", + "sku": "CLOT-01109", + "price": 6469.51, + "stock": 257, + "status": "Active" + }, + { + "id": 1110, + "productName": "Wireless Jeans", + "category": "Clothing", + "sku": "CLOT-01110", + "price": 3571.88, + "stock": 132, + "status": "Active" + }, + { + "id": 1111, + "productName": "Ergonomic Dark Chocolate", + "category": "Grocery", + "sku": "GROC-01111", + "price": 277.21, + "stock": 76, + "status": "Active" + }, + { + "id": 1112, + "productName": "Ultra Kurta", + "category": "Clothing", + "sku": "CLOT-01112", + "price": 1668.97, + "stock": 339, + "status": "Active" + }, + { + "id": 1113, + "productName": "Durable Biography", + "category": "Books", + "sku": "BOOK-01113", + "price": 1447.48, + "stock": 216, + "status": "Active" + }, + { + "id": 1114, + "productName": "Premium Yoga Mat", + "category": "Sports", + "sku": "SPRT-01114", + "price": 5317.84, + "stock": 334, + "status": "Active" + }, + { + "id": 1115, + "productName": "Ergonomic Cycling Helmet", + "category": "Sports", + "sku": "SPRT-01115", + "price": 10782.71, + "stock": 37, + "status": "Active" + }, + { + "id": 1116, + "productName": "Premium Conditioner", + "category": "Beauty", + "sku": "BEAU-01116", + "price": 4803.47, + "stock": 196, + "status": "Active" + }, + { + "id": 1117, + "productName": "Eco Jacket", + "category": "Clothing", + "sku": "CLOT-01117", + "price": 6057.41, + "stock": 441, + "status": "Active" + }, + { + "id": 1118, + "productName": "Durable Planner", + "category": "Office", + "sku": "OFFC-01118", + "price": 760.56, + "stock": 463, + "status": "Active" + }, + { + "id": 1119, + "productName": "Classic Puzzle", + "category": "Toys", + "sku": "TOYS-01119", + "price": 5823.58, + "stock": 345, + "status": "Active" + }, + { + "id": 1120, + "productName": "Wireless Bluetooth Speaker", + "category": "Electronics", + "sku": "ELEC-01120", + "price": 65424.6, + "stock": 420, + "status": "Active" + }, + { + "id": 1121, + "productName": "Premium Dark Chocolate", + "category": "Grocery", + "sku": "GROC-01121", + "price": 1393.53, + "stock": 359, + "status": "Active" + }, + { + "id": 1122, + "productName": "Premium Almonds", + "category": "Grocery", + "sku": "GROC-01122", + "price": 710.68, + "stock": 176, + "status": "Active" + }, + { + "id": 1123, + "productName": "Wireless Laptop", + "category": "Electronics", + "sku": "ELEC-01123", + "price": 58642.63, + "stock": 482, + "status": "Active" + }, + { + "id": 1124, + "productName": "Compact Dark Chocolate", + "category": "Grocery", + "sku": "GROC-01124", + "price": 1827.98, + "stock": 315, + "status": "Active" + }, + { + "id": 1125, + "productName": "Premium Laptop", + "category": "Electronics", + "sku": "ELEC-01125", + "price": 99260.43, + "stock": 256, + "status": "Active" + }, + { + "id": 1126, + "productName": "Premium Jeans", + "category": "Clothing", + "sku": "CLOT-01126", + "price": 7894.18, + "stock": 426, + "status": "Active" + }, + { + "id": 1127, + "productName": "Compact Serum", + "category": "Beauty", + "sku": "BEAU-01127", + "price": 4602.64, + "stock": 359, + "status": "Active" + }, + { + "id": 1128, + "productName": "Smart Pen Set", + "category": "Office", + "sku": "OFFC-01128", + "price": 3233.71, + "stock": 238, + "status": "Active" + }, + { + "id": 1129, + "productName": "Compact Olive Oil", + "category": "Grocery", + "sku": "GROC-01129", + "price": 507.06, + "stock": 240, + "status": "Active" + }, + { + "id": 1130, + "productName": "Portable Mixer", + "category": "Home & Kitchen", + "sku": "HOME-01130", + "price": 7742.02, + "stock": 198, + "status": "Active" + }, + { + "id": 1131, + "productName": "Premium Desk Lamp", + "category": "Office", + "sku": "OFFC-01131", + "price": 7033.4, + "stock": 106, + "status": "Active" + }, + { + "id": 1132, + "productName": "Eco Building Blocks", + "category": "Toys", + "sku": "TOYS-01132", + "price": 2556.23, + "stock": 189, + "status": "Active" + }, + { + "id": 1133, + "productName": "Wireless Planner", + "category": "Office", + "sku": "OFFC-01133", + "price": 7057.27, + "stock": 47, + "status": "Active" + }, + { + "id": 1134, + "productName": "Smart Anthology", + "category": "Books", + "sku": "BOOK-01134", + "price": 513.95, + "stock": 173, + "status": "Active" + }, + { + "id": 1135, + "productName": "Portable Stuffed Toy", + "category": "Toys", + "sku": "TOYS-01135", + "price": 7721.4, + "stock": 66, + "status": "Active" + }, + { + "id": 1136, + "productName": "Smart Pen Set", + "category": "Office", + "sku": "OFFC-01136", + "price": 1628.39, + "stock": 120, + "status": "Active" + }, + { + "id": 1137, + "productName": "Compact Cricket Bat", + "category": "Sports", + "sku": "SPRT-01137", + "price": 11601.48, + "stock": 454, + "status": "Active" + }, + { + "id": 1138, + "productName": "Premium Serum", + "category": "Beauty", + "sku": "BEAU-01138", + "price": 9693.83, + "stock": 249, + "status": "Active" + }, + { + "id": 1139, + "productName": "Durable Mouse", + "category": "Electronics", + "sku": "ELEC-01139", + "price": 139052.31, + "stock": 211, + "status": "Active" + }, + { + "id": 1140, + "productName": "Ergonomic Football", + "category": "Sports", + "sku": "SPRT-01140", + "price": 9821.65, + "stock": 4, + "status": "Active" + }, + { + "id": 1141, + "productName": "Premium Dark Chocolate", + "category": "Grocery", + "sku": "GROC-01141", + "price": 1670.44, + "stock": 368, + "status": "Active" + }, + { + "id": 1142, + "productName": "Compact Toaster", + "category": "Home & Kitchen", + "sku": "HOME-01142", + "price": 28715.22, + "stock": 394, + "status": "Active" + }, + { + "id": 1143, + "productName": "Portable Olive Oil", + "category": "Grocery", + "sku": "GROC-01143", + "price": 1173.83, + "stock": 20, + "status": "Active" + }, + { + "id": 1144, + "productName": "Portable Jeans", + "category": "Clothing", + "sku": "CLOT-01144", + "price": 1293.68, + "stock": 404, + "status": "Active" + }, + { + "id": 1145, + "productName": "Premium Puzzle", + "category": "Toys", + "sku": "TOYS-01145", + "price": 752.91, + "stock": 469, + "status": "Active" + }, + { + "id": 1146, + "productName": "Smart Honey", + "category": "Grocery", + "sku": "GROC-01146", + "price": 1957.94, + "stock": 14, + "status": "Active" + }, + { + "id": 1147, + "productName": "Ultra Desk Lamp", + "category": "Office", + "sku": "OFFC-01147", + "price": 9796.79, + "stock": 367, + "status": "Active" + }, + { + "id": 1148, + "productName": "Premium Cookbook", + "category": "Books", + "sku": "BOOK-01148", + "price": 764.8, + "stock": 211, + "status": "Active" + }, + { + "id": 1149, + "productName": "Ergonomic Textbook", + "category": "Books", + "sku": "BOOK-01149", + "price": 1095.17, + "stock": 133, + "status": "Active" + }, + { + "id": 1150, + "productName": "Portable Basmati Rice", + "category": "Grocery", + "sku": "GROC-01150", + "price": 260.22, + "stock": 100, + "status": "Active" + }, + { + "id": 1151, + "productName": "Smart Kurta", + "category": "Clothing", + "sku": "CLOT-01151", + "price": 6100.87, + "stock": 279, + "status": "Active" + }, + { + "id": 1152, + "productName": "Compact Stuffed Toy", + "category": "Toys", + "sku": "TOYS-01152", + "price": 6379.38, + "stock": 151, + "status": "Active" + }, + { + "id": 1153, + "productName": "Eco Air Fryer", + "category": "Home & Kitchen", + "sku": "HOME-01153", + "price": 24208.33, + "stock": 370, + "status": "Active" + }, + { + "id": 1154, + "productName": "Wireless Conditioner", + "category": "Beauty", + "sku": "BEAU-01154", + "price": 6501.64, + "stock": 49, + "status": "Active" + }, + { + "id": 1155, + "productName": "Ergonomic Puzzle", + "category": "Toys", + "sku": "TOYS-01155", + "price": 3630.8, + "stock": 370, + "status": "Active" + }, + { + "id": 1156, + "productName": "Ultra Novel", + "category": "Books", + "sku": "BOOK-01156", + "price": 644.06, + "stock": 368, + "status": "Active" + }, + { + "id": 1157, + "productName": "Classic Sneakers", + "category": "Clothing", + "sku": "CLOT-01157", + "price": 5200.52, + "stock": 267, + "status": "Active" + }, + { + "id": 1158, + "productName": "Compact Basmati Rice", + "category": "Grocery", + "sku": "GROC-01158", + "price": 1050.39, + "stock": 417, + "status": "Active" + }, + { + "id": 1159, + "productName": "Smart T-Shirt", + "category": "Clothing", + "sku": "CLOT-01159", + "price": 6228.47, + "stock": 87, + "status": "Active" + }, + { + "id": 1160, + "productName": "Smart Mixer", + "category": "Home & Kitchen", + "sku": "HOME-01160", + "price": 16522.18, + "stock": 105, + "status": "Active" + }, + { + "id": 1161, + "productName": "Ultra Laptop", + "category": "Electronics", + "sku": "ELEC-01161", + "price": 112014.25, + "stock": 271, + "status": "Active" + }, + { + "id": 1162, + "productName": "Classic Building Blocks", + "category": "Toys", + "sku": "TOYS-01162", + "price": 8368.52, + "stock": 359, + "status": "Active" + }, + { + "id": 1163, + "productName": "Wireless Planner", + "category": "Office", + "sku": "OFFC-01163", + "price": 4551.63, + "stock": 40, + "status": "Active" + }, + { + "id": 1164, + "productName": "Eco Conditioner", + "category": "Beauty", + "sku": "BEAU-01164", + "price": 9022.1, + "stock": 374, + "status": "Active" + }, + { + "id": 1165, + "productName": "Ergonomic Basmati Rice", + "category": "Grocery", + "sku": "GROC-01165", + "price": 1250.39, + "stock": 486, + "status": "Active" + }, + { + "id": 1166, + "productName": "Durable Dress", + "category": "Clothing", + "sku": "CLOT-01166", + "price": 3660.98, + "stock": 59, + "status": "Active" + }, + { + "id": 1167, + "productName": "Compact Pen Set", + "category": "Office", + "sku": "OFFC-01167", + "price": 9433.08, + "stock": 480, + "status": "Active" + }, + { + "id": 1168, + "productName": "Wireless Pen Set", + "category": "Office", + "sku": "OFFC-01168", + "price": 389.25, + "stock": 412, + "status": "Active" + }, + { + "id": 1169, + "productName": "Eco Board Game", + "category": "Toys", + "sku": "TOYS-01169", + "price": 5990.34, + "stock": 483, + "status": "Active" + }, + { + "id": 1170, + "productName": "Wireless Conditioner", + "category": "Beauty", + "sku": "BEAU-01170", + "price": 9808.53, + "stock": 283, + "status": "Active" + }, + { + "id": 1171, + "productName": "Ultra Conditioner", + "category": "Beauty", + "sku": "BEAU-01171", + "price": 8544.12, + "stock": 326, + "status": "Active" + }, + { + "id": 1172, + "productName": "Durable Air Fryer", + "category": "Home & Kitchen", + "sku": "HOME-01172", + "price": 1104.1, + "stock": 387, + "status": "Active" + }, + { + "id": 1173, + "productName": "Eco Stuffed Toy", + "category": "Toys", + "sku": "TOYS-01173", + "price": 3999.37, + "stock": 289, + "status": "Active" + }, + { + "id": 1174, + "productName": "Ultra Smartwatch", + "category": "Electronics", + "sku": "ELEC-01174", + "price": 135671.4, + "stock": 430, + "status": "Active" + }, + { + "id": 1175, + "productName": "Portable Stuffed Toy", + "category": "Toys", + "sku": "TOYS-01175", + "price": 1366.49, + "stock": 253, + "status": "Active" + }, + { + "id": 1176, + "productName": "Eco Olive Oil", + "category": "Grocery", + "sku": "GROC-01176", + "price": 132.97, + "stock": 388, + "status": "Active" + }, + { + "id": 1177, + "productName": "Eco Mouse", + "category": "Electronics", + "sku": "ELEC-01177", + "price": 45404.3, + "stock": 320, + "status": "Active" + }, + { + "id": 1178, + "productName": "Classic Notebook", + "category": "Office", + "sku": "OFFC-01178", + "price": 9641.62, + "stock": 381, + "status": "Active" + }, + { + "id": 1179, + "productName": "Classic Serum", + "category": "Beauty", + "sku": "BEAU-01179", + "price": 7398.98, + "stock": 258, + "status": "Active" + }, + { + "id": 1180, + "productName": "Durable Football", + "category": "Sports", + "sku": "SPRT-01180", + "price": 26428.15, + "stock": 139, + "status": "Active" + }, + { + "id": 1181, + "productName": "Ergonomic Building Blocks", + "category": "Toys", + "sku": "TOYS-01181", + "price": 5851.99, + "stock": 215, + "status": "Active" + }, + { + "id": 1182, + "productName": "Eco Almonds", + "category": "Grocery", + "sku": "GROC-01182", + "price": 1935.05, + "stock": 148, + "status": "Active" + }, + { + "id": 1183, + "productName": "Compact Yoga Mat", + "category": "Sports", + "sku": "SPRT-01183", + "price": 4098.82, + "stock": 482, + "status": "Active" + }, + { + "id": 1184, + "productName": "Classic Planner", + "category": "Office", + "sku": "OFFC-01184", + "price": 5176.34, + "stock": 459, + "status": "Active" + }, + { + "id": 1185, + "productName": "Ergonomic Building Blocks", + "category": "Toys", + "sku": "TOYS-01185", + "price": 4536.7, + "stock": 196, + "status": "Active" + }, + { + "id": 1186, + "productName": "Eco Notebook", + "category": "Office", + "sku": "OFFC-01186", + "price": 9339.31, + "stock": 411, + "status": "Active" + }, + { + "id": 1187, + "productName": "Durable Tennis Racket", + "category": "Sports", + "sku": "SPRT-01187", + "price": 21717.82, + "stock": 366, + "status": "Active" + }, + { + "id": 1188, + "productName": "Compact Remote Car", + "category": "Toys", + "sku": "TOYS-01188", + "price": 8048.44, + "stock": 100, + "status": "Active" + }, + { + "id": 1189, + "productName": "Smart Smartwatch", + "category": "Electronics", + "sku": "ELEC-01189", + "price": 131548.12, + "stock": 292, + "status": "Active" + }, + { + "id": 1190, + "productName": "Ultra Dumbbells", + "category": "Sports", + "sku": "SPRT-01190", + "price": 22286.09, + "stock": 206, + "status": "Active" + }, + { + "id": 1191, + "productName": "Portable Serum", + "category": "Beauty", + "sku": "BEAU-01191", + "price": 740.38, + "stock": 438, + "status": "Active" + }, + { + "id": 1192, + "productName": "Eco Olive Oil", + "category": "Grocery", + "sku": "GROC-01192", + "price": 982.27, + "stock": 385, + "status": "Active" + }, + { + "id": 1193, + "productName": "Eco Mixer", + "category": "Home & Kitchen", + "sku": "HOME-01193", + "price": 1514.22, + "stock": 107, + "status": "Active" + }, + { + "id": 1194, + "productName": "Durable Football", + "category": "Sports", + "sku": "SPRT-01194", + "price": 20993.88, + "stock": 293, + "status": "Active" + }, + { + "id": 1195, + "productName": "Ergonomic Pen Set", + "category": "Office", + "sku": "OFFC-01195", + "price": 3793.58, + "stock": 132, + "status": "Active" + }, + { + "id": 1196, + "productName": "Classic Olive Oil", + "category": "Grocery", + "sku": "GROC-01196", + "price": 652.25, + "stock": 158, + "status": "Active" + }, + { + "id": 1197, + "productName": "Compact Power Bank", + "category": "Electronics", + "sku": "ELEC-01197", + "price": 34180.4, + "stock": 385, + "status": "Active" + }, + { + "id": 1198, + "productName": "Premium Knife Set", + "category": "Home & Kitchen", + "sku": "HOME-01198", + "price": 20054.94, + "stock": 141, + "status": "Active" + }, + { + "id": 1199, + "productName": "Premium Planner", + "category": "Office", + "sku": "OFFC-01199", + "price": 3973.39, + "stock": 391, + "status": "Active" + }, + { + "id": 1200, + "productName": "Ergonomic Coffee Maker", + "category": "Home & Kitchen", + "sku": "HOME-01200", + "price": 23858.89, + "stock": 187, + "status": "Active" + }, + { + "id": 1201, + "productName": "Eco Pen Set", + "category": "Office", + "sku": "OFFC-01201", + "price": 8968.01, + "stock": 360, + "status": "Active" + }, + { + "id": 1202, + "productName": "Wireless Jeans", + "category": "Clothing", + "sku": "CLOT-01202", + "price": 7807.9, + "stock": 422, + "status": "Active" + }, + { + "id": 1203, + "productName": "Ergonomic Laptop", + "category": "Electronics", + "sku": "ELEC-01203", + "price": 29089.2, + "stock": 371, + "status": "Active" + }, + { + "id": 1204, + "productName": "Portable Olive Oil", + "category": "Grocery", + "sku": "GROC-01204", + "price": 1043.13, + "stock": 252, + "status": "Active" + }, + { + "id": 1205, + "productName": "Portable Basmati Rice", + "category": "Grocery", + "sku": "GROC-01205", + "price": 1931.63, + "stock": 457, + "status": "Active" + }, + { + "id": 1206, + "productName": "Compact Smartwatch", + "category": "Electronics", + "sku": "ELEC-01206", + "price": 10311.5, + "stock": 62, + "status": "Active" + }, + { + "id": 1207, + "productName": "Compact Building Blocks", + "category": "Toys", + "sku": "TOYS-01207", + "price": 1877.83, + "stock": 141, + "status": "Active" + }, + { + "id": 1208, + "productName": "Smart Face Cream", + "category": "Beauty", + "sku": "BEAU-01208", + "price": 7807.19, + "stock": 223, + "status": "Active" + }, + { + "id": 1209, + "productName": "Ergonomic Notebook", + "category": "Office", + "sku": "OFFC-01209", + "price": 4273.03, + "stock": 44, + "status": "Active" + }, + { + "id": 1210, + "productName": "Ergonomic Laptop", + "category": "Electronics", + "sku": "ELEC-01210", + "price": 93972.27, + "stock": 392, + "status": "Active" + }, + { + "id": 1211, + "productName": "Ergonomic Mixer", + "category": "Home & Kitchen", + "sku": "HOME-01211", + "price": 3282.6, + "stock": 180, + "status": "Active" + }, + { + "id": 1212, + "productName": "Ergonomic Monitor", + "category": "Electronics", + "sku": "ELEC-01212", + "price": 125005.23, + "stock": 220, + "status": "Active" + }, + { + "id": 1213, + "productName": "Wireless Serum", + "category": "Beauty", + "sku": "BEAU-01213", + "price": 8136.04, + "stock": 274, + "status": "Active" + }, + { + "id": 1214, + "productName": "Durable Planner", + "category": "Office", + "sku": "OFFC-01214", + "price": 5206.46, + "stock": 224, + "status": "Active" + }, + { + "id": 1215, + "productName": "Ultra Water Bottle", + "category": "Home & Kitchen", + "sku": "HOME-01215", + "price": 13968.98, + "stock": 387, + "status": "Active" + }, + { + "id": 1216, + "productName": "Compact Cookbook", + "category": "Books", + "sku": "BOOK-01216", + "price": 371.57, + "stock": 307, + "status": "Active" + }, + { + "id": 1217, + "productName": "Smart Perfume", + "category": "Beauty", + "sku": "BEAU-01217", + "price": 5793.0, + "stock": 329, + "status": "Active" + }, + { + "id": 1218, + "productName": "Portable Laptop", + "category": "Electronics", + "sku": "ELEC-01218", + "price": 112320.79, + "stock": 119, + "status": "Active" + }, + { + "id": 1219, + "productName": "Durable Cricket Bat", + "category": "Sports", + "sku": "SPRT-01219", + "price": 10797.54, + "stock": 466, + "status": "Active" + }, + { + "id": 1220, + "productName": "Classic Vacuum Cleaner", + "category": "Home & Kitchen", + "sku": "HOME-01220", + "price": 18783.19, + "stock": 274, + "status": "Active" + }, + { + "id": 1221, + "productName": "Wireless Cookbook", + "category": "Books", + "sku": "BOOK-01221", + "price": 1174.78, + "stock": 215, + "status": "Active" + }, + { + "id": 1222, + "productName": "Ultra Pen Set", + "category": "Office", + "sku": "OFFC-01222", + "price": 3548.0, + "stock": 95, + "status": "Active" + }, + { + "id": 1223, + "productName": "Ergonomic Cookbook", + "category": "Books", + "sku": "BOOK-01223", + "price": 773.71, + "stock": 391, + "status": "Active" + }, + { + "id": 1224, + "productName": "Durable Planner", + "category": "Office", + "sku": "OFFC-01224", + "price": 5578.65, + "stock": 389, + "status": "Active" + }, + { + "id": 1225, + "productName": "Portable Board Game", + "category": "Toys", + "sku": "TOYS-01225", + "price": 3424.69, + "stock": 318, + "status": "Active" + }, + { + "id": 1226, + "productName": "Durable Camera", + "category": "Electronics", + "sku": "ELEC-01226", + "price": 2438.17, + "stock": 375, + "status": "Active" + }, + { + "id": 1227, + "productName": "Ultra Conditioner", + "category": "Beauty", + "sku": "BEAU-01227", + "price": 8559.88, + "stock": 436, + "status": "Active" + }, + { + "id": 1228, + "productName": "Premium Mouse", + "category": "Electronics", + "sku": "ELEC-01228", + "price": 64540.14, + "stock": 234, + "status": "Active" + }, + { + "id": 1229, + "productName": "Ergonomic Cycling Helmet", + "category": "Sports", + "sku": "SPRT-01229", + "price": 8449.68, + "stock": 477, + "status": "Active" + }, + { + "id": 1230, + "productName": "Eco Cricket Bat", + "category": "Sports", + "sku": "SPRT-01230", + "price": 25726.19, + "stock": 22, + "status": "Active" + }, + { + "id": 1231, + "productName": "Smart Vacuum Cleaner", + "category": "Home & Kitchen", + "sku": "HOME-01231", + "price": 10723.54, + "stock": 147, + "status": "Active" + }, + { + "id": 1232, + "productName": "Ergonomic Jeans", + "category": "Clothing", + "sku": "CLOT-01232", + "price": 2190.37, + "stock": 78, + "status": "Active" + }, + { + "id": 1233, + "productName": "Portable Basmati Rice", + "category": "Grocery", + "sku": "GROC-01233", + "price": 253.82, + "stock": 339, + "status": "Active" + }, + { + "id": 1234, + "productName": "Classic Novel", + "category": "Books", + "sku": "BOOK-01234", + "price": 886.32, + "stock": 493, + "status": "Active" + }, + { + "id": 1235, + "productName": "Compact Dark Chocolate", + "category": "Grocery", + "sku": "GROC-01235", + "price": 1431.19, + "stock": 49, + "status": "Active" + }, + { + "id": 1236, + "productName": "Durable Pen Set", + "category": "Office", + "sku": "OFFC-01236", + "price": 5867.54, + "stock": 378, + "status": "Active" + }, + { + "id": 1237, + "productName": "Compact Notebook", + "category": "Office", + "sku": "OFFC-01237", + "price": 617.97, + "stock": 40, + "status": "Active" + }, + { + "id": 1238, + "productName": "Ultra Headphones", + "category": "Electronics", + "sku": "ELEC-01238", + "price": 8354.97, + "stock": 303, + "status": "Active" + }, + { + "id": 1239, + "productName": "Eco Basmati Rice", + "category": "Grocery", + "sku": "GROC-01239", + "price": 773.27, + "stock": 272, + "status": "Active" + }, + { + "id": 1240, + "productName": "Classic Notebook", + "category": "Office", + "sku": "OFFC-01240", + "price": 2320.51, + "stock": 331, + "status": "Active" + }, + { + "id": 1241, + "productName": "Durable Jeans", + "category": "Clothing", + "sku": "CLOT-01241", + "price": 2191.39, + "stock": 319, + "status": "Active" + }, + { + "id": 1242, + "productName": "Portable Anthology", + "category": "Books", + "sku": "BOOK-01242", + "price": 429.0, + "stock": 142, + "status": "Active" + }, + { + "id": 1243, + "productName": "Eco Laptop", + "category": "Electronics", + "sku": "ELEC-01243", + "price": 69613.67, + "stock": 216, + "status": "Active" + }, + { + "id": 1244, + "productName": "Eco Filing Tray", + "category": "Office", + "sku": "OFFC-01244", + "price": 3612.97, + "stock": 227, + "status": "Active" + }, + { + "id": 1245, + "productName": "Portable Bluetooth Speaker", + "category": "Electronics", + "sku": "ELEC-01245", + "price": 5093.76, + "stock": 74, + "status": "Active" + }, + { + "id": 1246, + "productName": "Compact Toaster", + "category": "Home & Kitchen", + "sku": "HOME-01246", + "price": 12796.19, + "stock": 185, + "status": "Active" + }, + { + "id": 1247, + "productName": "Compact T-Shirt", + "category": "Clothing", + "sku": "CLOT-01247", + "price": 1179.9, + "stock": 334, + "status": "Active" + }, + { + "id": 1248, + "productName": "Ultra Serum", + "category": "Beauty", + "sku": "BEAU-01248", + "price": 926.06, + "stock": 373, + "status": "Active" + }, + { + "id": 1249, + "productName": "Smart Jacket", + "category": "Clothing", + "sku": "CLOT-01249", + "price": 1296.02, + "stock": 8, + "status": "Active" + }, + { + "id": 1250, + "productName": "Premium Desk Lamp", + "category": "Office", + "sku": "OFFC-01250", + "price": 4375.26, + "stock": 144, + "status": "Active" + }, + { + "id": 1251, + "productName": "Ultra Vacuum Cleaner", + "category": "Home & Kitchen", + "sku": "HOME-01251", + "price": 22224.2, + "stock": 134, + "status": "Active" + }, + { + "id": 1252, + "productName": "Wireless Pen Set", + "category": "Office", + "sku": "OFFC-01252", + "price": 4871.56, + "stock": 258, + "status": "Active" + }, + { + "id": 1253, + "productName": "Smart Sneakers", + "category": "Clothing", + "sku": "CLOT-01253", + "price": 1245.5, + "stock": 226, + "status": "Active" + }, + { + "id": 1254, + "productName": "Premium Cricket Bat", + "category": "Sports", + "sku": "SPRT-01254", + "price": 23918.91, + "stock": 441, + "status": "Active" + }, + { + "id": 1255, + "productName": "Smart Dumbbells", + "category": "Sports", + "sku": "SPRT-01255", + "price": 14465.23, + "stock": 0, + "status": "Discontinued" + }, + { + "id": 1256, + "productName": "Ultra Face Cream", + "category": "Beauty", + "sku": "BEAU-01256", + "price": 1211.19, + "stock": 127, + "status": "Active" + }, + { + "id": 1257, + "productName": "Smart Board Game", + "category": "Toys", + "sku": "TOYS-01257", + "price": 654.27, + "stock": 327, + "status": "Active" + }, + { + "id": 1258, + "productName": "Eco Anthology", + "category": "Books", + "sku": "BOOK-01258", + "price": 592.67, + "stock": 338, + "status": "Active" + }, + { + "id": 1259, + "productName": "Premium Serum", + "category": "Beauty", + "sku": "BEAU-01259", + "price": 718.75, + "stock": 144, + "status": "Active" + }, + { + "id": 1260, + "productName": "Premium Puzzle", + "category": "Toys", + "sku": "TOYS-01260", + "price": 7572.86, + "stock": 238, + "status": "Active" + }, + { + "id": 1261, + "productName": "Compact Stuffed Toy", + "category": "Toys", + "sku": "TOYS-01261", + "price": 6400.26, + "stock": 262, + "status": "Active" + }, + { + "id": 1262, + "productName": "Smart Notebook", + "category": "Office", + "sku": "OFFC-01262", + "price": 8723.49, + "stock": 453, + "status": "Active" + }, + { + "id": 1263, + "productName": "Compact Charger", + "category": "Electronics", + "sku": "ELEC-01263", + "price": 103608.34, + "stock": 473, + "status": "Active" + }, + { + "id": 1264, + "productName": "Premium Football", + "category": "Sports", + "sku": "SPRT-01264", + "price": 14726.06, + "stock": 423, + "status": "Active" + }, + { + "id": 1265, + "productName": "Compact Filing Tray", + "category": "Office", + "sku": "OFFC-01265", + "price": 3600.58, + "stock": 12, + "status": "Active" + }, + { + "id": 1266, + "productName": "Eco Notebook", + "category": "Office", + "sku": "OFFC-01266", + "price": 6073.95, + "stock": 210, + "status": "Active" + }, + { + "id": 1267, + "productName": "Eco Mixer", + "category": "Home & Kitchen", + "sku": "HOME-01267", + "price": 14107.46, + "stock": 21, + "status": "Active" + }, + { + "id": 1268, + "productName": "Ultra Conditioner", + "category": "Beauty", + "sku": "BEAU-01268", + "price": 4626.81, + "stock": 471, + "status": "Active" + }, + { + "id": 1269, + "productName": "Premium Shampoo", + "category": "Beauty", + "sku": "BEAU-01269", + "price": 9147.6, + "stock": 281, + "status": "Active" + }, + { + "id": 1270, + "productName": "Classic Basmati Rice", + "category": "Grocery", + "sku": "GROC-01270", + "price": 293.85, + "stock": 81, + "status": "Active" + }, + { + "id": 1271, + "productName": "Ergonomic Jeans", + "category": "Clothing", + "sku": "CLOT-01271", + "price": 2239.72, + "stock": 87, + "status": "Active" + }, + { + "id": 1272, + "productName": "Ergonomic Olive Oil", + "category": "Grocery", + "sku": "GROC-01272", + "price": 530.18, + "stock": 127, + "status": "Active" + }, + { + "id": 1273, + "productName": "Durable Honey", + "category": "Grocery", + "sku": "GROC-01273", + "price": 453.79, + "stock": 370, + "status": "Active" + }, + { + "id": 1274, + "productName": "Eco Cookbook", + "category": "Books", + "sku": "BOOK-01274", + "price": 1691.48, + "stock": 169, + "status": "Active" + }, + { + "id": 1275, + "productName": "Smart Serum", + "category": "Beauty", + "sku": "BEAU-01275", + "price": 2982.1, + "stock": 11, + "status": "Active" + }, + { + "id": 1276, + "productName": "Smart Dress", + "category": "Clothing", + "sku": "CLOT-01276", + "price": 1460.78, + "stock": 231, + "status": "Active" + }, + { + "id": 1277, + "productName": "Eco Conditioner", + "category": "Beauty", + "sku": "BEAU-01277", + "price": 1211.76, + "stock": 59, + "status": "Active" + }, + { + "id": 1278, + "productName": "Premium Dress", + "category": "Clothing", + "sku": "CLOT-01278", + "price": 3773.72, + "stock": 243, + "status": "Active" + }, + { + "id": 1279, + "productName": "Smart Dumbbells", + "category": "Sports", + "sku": "SPRT-01279", + "price": 24804.0, + "stock": 173, + "status": "Active" + }, + { + "id": 1280, + "productName": "Ultra Football", + "category": "Sports", + "sku": "SPRT-01280", + "price": 13549.64, + "stock": 219, + "status": "Active" + }, + { + "id": 1281, + "productName": "Eco Cookbook", + "category": "Books", + "sku": "BOOK-01281", + "price": 890.05, + "stock": 483, + "status": "Active" + }, + { + "id": 1282, + "productName": "Wireless Football", + "category": "Sports", + "sku": "SPRT-01282", + "price": 27250.9, + "stock": 137, + "status": "Active" + }, + { + "id": 1283, + "productName": "Smart Shampoo", + "category": "Beauty", + "sku": "BEAU-01283", + "price": 4458.44, + "stock": 439, + "status": "Active" + }, + { + "id": 1284, + "productName": "Wireless Power Bank", + "category": "Electronics", + "sku": "ELEC-01284", + "price": 112256.39, + "stock": 105, + "status": "Active" + }, + { + "id": 1285, + "productName": "Compact Sneakers", + "category": "Clothing", + "sku": "CLOT-01285", + "price": 5369.81, + "stock": 476, + "status": "Active" + }, + { + "id": 1286, + "productName": "Classic Cycling Helmet", + "category": "Sports", + "sku": "SPRT-01286", + "price": 18666.43, + "stock": 151, + "status": "Active" + }, + { + "id": 1287, + "productName": "Classic Headphones", + "category": "Electronics", + "sku": "ELEC-01287", + "price": 111550.71, + "stock": 122, + "status": "Active" + }, + { + "id": 1288, + "productName": "Smart Pen Set", + "category": "Office", + "sku": "OFFC-01288", + "price": 1791.33, + "stock": 450, + "status": "Active" + }, + { + "id": 1289, + "productName": "Smart Textbook", + "category": "Books", + "sku": "BOOK-01289", + "price": 703.44, + "stock": 159, + "status": "Active" + }, + { + "id": 1290, + "productName": "Portable Mixer", + "category": "Home & Kitchen", + "sku": "HOME-01290", + "price": 9898.36, + "stock": 369, + "status": "Active" + }, + { + "id": 1291, + "productName": "Smart Notebook", + "category": "Office", + "sku": "OFFC-01291", + "price": 3796.32, + "stock": 263, + "status": "Active" + }, + { + "id": 1292, + "productName": "Portable Keyboard", + "category": "Electronics", + "sku": "ELEC-01292", + "price": 115219.27, + "stock": 451, + "status": "Active" + }, + { + "id": 1293, + "productName": "Ergonomic Headphones", + "category": "Electronics", + "sku": "ELEC-01293", + "price": 90613.94, + "stock": 376, + "status": "Active" + }, + { + "id": 1294, + "productName": "Portable Keyboard", + "category": "Electronics", + "sku": "ELEC-01294", + "price": 114750.26, + "stock": 426, + "status": "Active" + }, + { + "id": 1295, + "productName": "Portable T-Shirt", + "category": "Clothing", + "sku": "CLOT-01295", + "price": 5829.21, + "stock": 130, + "status": "Active" + }, + { + "id": 1296, + "productName": "Ultra Cycling Helmet", + "category": "Sports", + "sku": "SPRT-01296", + "price": 18061.4, + "stock": 476, + "status": "Active" + }, + { + "id": 1297, + "productName": "Ergonomic Keyboard", + "category": "Electronics", + "sku": "ELEC-01297", + "price": 25191.09, + "stock": 254, + "status": "Active" + }, + { + "id": 1298, + "productName": "Durable Filing Tray", + "category": "Office", + "sku": "OFFC-01298", + "price": 9959.93, + "stock": 284, + "status": "Active" + }, + { + "id": 1299, + "productName": "Durable Novel", + "category": "Books", + "sku": "BOOK-01299", + "price": 589.59, + "stock": 130, + "status": "Active" + }, + { + "id": 1300, + "productName": "Compact Coffee Maker", + "category": "Home & Kitchen", + "sku": "HOME-01300", + "price": 1454.86, + "stock": 89, + "status": "Active" + }, + { + "id": 1301, + "productName": "Portable Biography", + "category": "Books", + "sku": "BOOK-01301", + "price": 152.7, + "stock": 37, + "status": "Active" + }, + { + "id": 1302, + "productName": "Wireless Filing Tray", + "category": "Office", + "sku": "OFFC-01302", + "price": 3936.58, + "stock": 190, + "status": "Active" + }, + { + "id": 1303, + "productName": "Wireless Planner", + "category": "Office", + "sku": "OFFC-01303", + "price": 4176.77, + "stock": 16, + "status": "Active" + }, + { + "id": 1304, + "productName": "Wireless Dress", + "category": "Clothing", + "sku": "CLOT-01304", + "price": 7571.67, + "stock": 53, + "status": "Active" + }, + { + "id": 1305, + "productName": "Portable Novel", + "category": "Books", + "sku": "BOOK-01305", + "price": 518.47, + "stock": 307, + "status": "Active" + }, + { + "id": 1306, + "productName": "Premium Cookware Set", + "category": "Home & Kitchen", + "sku": "HOME-01306", + "price": 16773.05, + "stock": 230, + "status": "Active" + }, + { + "id": 1307, + "productName": "Ultra Bluetooth Speaker", + "category": "Electronics", + "sku": "ELEC-01307", + "price": 74770.86, + "stock": 429, + "status": "Active" + }, + { + "id": 1308, + "productName": "Classic Honey", + "category": "Grocery", + "sku": "GROC-01308", + "price": 490.05, + "stock": 457, + "status": "Active" + }, + { + "id": 1309, + "productName": "Ergonomic Dark Chocolate", + "category": "Grocery", + "sku": "GROC-01309", + "price": 1433.07, + "stock": 118, + "status": "Active" + }, + { + "id": 1310, + "productName": "Smart Yoga Mat", + "category": "Sports", + "sku": "SPRT-01310", + "price": 27780.55, + "stock": 163, + "status": "Active" + }, + { + "id": 1311, + "productName": "Wireless Mouse", + "category": "Electronics", + "sku": "ELEC-01311", + "price": 7033.12, + "stock": 400, + "status": "Active" + }, + { + "id": 1312, + "productName": "Smart Serum", + "category": "Beauty", + "sku": "BEAU-01312", + "price": 4834.81, + "stock": 193, + "status": "Active" + }, + { + "id": 1313, + "productName": "Compact Dress", + "category": "Clothing", + "sku": "CLOT-01313", + "price": 3961.43, + "stock": 267, + "status": "Active" + }, + { + "id": 1314, + "productName": "Compact T-Shirt", + "category": "Clothing", + "sku": "CLOT-01314", + "price": 6192.87, + "stock": 316, + "status": "Active" + }, + { + "id": 1315, + "productName": "Ergonomic Almonds", + "category": "Grocery", + "sku": "GROC-01315", + "price": 134.0, + "stock": 307, + "status": "Active" + }, + { + "id": 1316, + "productName": "Smart Cricket Bat", + "category": "Sports", + "sku": "SPRT-01316", + "price": 23855.69, + "stock": 313, + "status": "Active" + }, + { + "id": 1317, + "productName": "Portable Honey", + "category": "Grocery", + "sku": "GROC-01317", + "price": 1920.72, + "stock": 272, + "status": "Active" + }, + { + "id": 1318, + "productName": "Smart Sneakers", + "category": "Clothing", + "sku": "CLOT-01318", + "price": 4891.41, + "stock": 275, + "status": "Active" + }, + { + "id": 1319, + "productName": "Ultra Laptop", + "category": "Electronics", + "sku": "ELEC-01319", + "price": 12801.48, + "stock": 202, + "status": "Active" + }, + { + "id": 1320, + "productName": "Premium Keyboard", + "category": "Electronics", + "sku": "ELEC-01320", + "price": 39383.39, + "stock": 414, + "status": "Active" + }, + { + "id": 1321, + "productName": "Durable Conditioner", + "category": "Beauty", + "sku": "BEAU-01321", + "price": 2926.03, + "stock": 301, + "status": "Active" + }, + { + "id": 1322, + "productName": "Smart Camera", + "category": "Electronics", + "sku": "ELEC-01322", + "price": 120113.55, + "stock": 42, + "status": "Active" + }, + { + "id": 1323, + "productName": "Compact Remote Car", + "category": "Toys", + "sku": "TOYS-01323", + "price": 1321.59, + "stock": 369, + "status": "Active" + }, + { + "id": 1324, + "productName": "Eco Camera", + "category": "Electronics", + "sku": "ELEC-01324", + "price": 95011.7, + "stock": 282, + "status": "Active" + }, + { + "id": 1325, + "productName": "Portable Novel", + "category": "Books", + "sku": "BOOK-01325", + "price": 803.67, + "stock": 281, + "status": "Active" + }, + { + "id": 1326, + "productName": "Classic Filing Tray", + "category": "Office", + "sku": "OFFC-01326", + "price": 7549.79, + "stock": 114, + "status": "Active" + }, + { + "id": 1327, + "productName": "Classic Planner", + "category": "Office", + "sku": "OFFC-01327", + "price": 1332.82, + "stock": 29, + "status": "Active" + }, + { + "id": 1328, + "productName": "Ergonomic Building Blocks", + "category": "Toys", + "sku": "TOYS-01328", + "price": 395.42, + "stock": 425, + "status": "Active" + }, + { + "id": 1329, + "productName": "Wireless Jacket", + "category": "Clothing", + "sku": "CLOT-01329", + "price": 2629.69, + "stock": 217, + "status": "Active" + }, + { + "id": 1330, + "productName": "Ergonomic Keyboard", + "category": "Electronics", + "sku": "ELEC-01330", + "price": 71702.18, + "stock": 269, + "status": "Active" + }, + { + "id": 1331, + "productName": "Smart Filing Tray", + "category": "Office", + "sku": "OFFC-01331", + "price": 4858.53, + "stock": 364, + "status": "Active" + }, + { + "id": 1332, + "productName": "Ergonomic Textbook", + "category": "Books", + "sku": "BOOK-01332", + "price": 1036.22, + "stock": 432, + "status": "Active" + }, + { + "id": 1333, + "productName": "Durable Knife Set", + "category": "Home & Kitchen", + "sku": "HOME-01333", + "price": 13359.01, + "stock": 178, + "status": "Active" + }, + { + "id": 1334, + "productName": "Smart Mouse", + "category": "Electronics", + "sku": "ELEC-01334", + "price": 21109.11, + "stock": 106, + "status": "Active" + }, + { + "id": 1335, + "productName": "Classic Building Blocks", + "category": "Toys", + "sku": "TOYS-01335", + "price": 6608.77, + "stock": 89, + "status": "Active" + }, + { + "id": 1336, + "productName": "Classic Guide", + "category": "Books", + "sku": "BOOK-01336", + "price": 942.96, + "stock": 22, + "status": "Active" + }, + { + "id": 1337, + "productName": "Ergonomic Face Cream", + "category": "Beauty", + "sku": "BEAU-01337", + "price": 8384.0, + "stock": 268, + "status": "Active" + }, + { + "id": 1338, + "productName": "Classic Charger", + "category": "Electronics", + "sku": "ELEC-01338", + "price": 7133.78, + "stock": 449, + "status": "Active" + }, + { + "id": 1339, + "productName": "Premium Serum", + "category": "Beauty", + "sku": "BEAU-01339", + "price": 8778.08, + "stock": 10, + "status": "Active" + }, + { + "id": 1340, + "productName": "Premium Keyboard", + "category": "Electronics", + "sku": "ELEC-01340", + "price": 142010.8, + "stock": 90, + "status": "Active" + }, + { + "id": 1341, + "productName": "Premium Water Bottle", + "category": "Home & Kitchen", + "sku": "HOME-01341", + "price": 16975.95, + "stock": 222, + "status": "Active" + }, + { + "id": 1342, + "productName": "Eco Conditioner", + "category": "Beauty", + "sku": "BEAU-01342", + "price": 8779.38, + "stock": 398, + "status": "Active" + }, + { + "id": 1343, + "productName": "Eco Puzzle", + "category": "Toys", + "sku": "TOYS-01343", + "price": 1916.34, + "stock": 409, + "status": "Active" + }, + { + "id": 1344, + "productName": "Portable Jeans", + "category": "Clothing", + "sku": "CLOT-01344", + "price": 4638.09, + "stock": 225, + "status": "Active" + }, + { + "id": 1345, + "productName": "Portable Dress", + "category": "Clothing", + "sku": "CLOT-01345", + "price": 1013.41, + "stock": 5, + "status": "Active" + }, + { + "id": 1346, + "productName": "Ergonomic Guide", + "category": "Books", + "sku": "BOOK-01346", + "price": 1237.4, + "stock": 31, + "status": "Active" + }, + { + "id": 1347, + "productName": "Durable Knife Set", + "category": "Home & Kitchen", + "sku": "HOME-01347", + "price": 14010.76, + "stock": 237, + "status": "Active" + }, + { + "id": 1348, + "productName": "Classic Bluetooth Speaker", + "category": "Electronics", + "sku": "ELEC-01348", + "price": 93351.21, + "stock": 312, + "status": "Active" + }, + { + "id": 1349, + "productName": "Smart Cycling Helmet", + "category": "Sports", + "sku": "SPRT-01349", + "price": 19710.9, + "stock": 182, + "status": "Active" + }, + { + "id": 1350, + "productName": "Eco Building Blocks", + "category": "Toys", + "sku": "TOYS-01350", + "price": 1735.62, + "stock": 239, + "status": "Active" + }, + { + "id": 1351, + "productName": "Compact Honey", + "category": "Grocery", + "sku": "GROC-01351", + "price": 336.43, + "stock": 119, + "status": "Active" + }, + { + "id": 1352, + "productName": "Durable Stuffed Toy", + "category": "Toys", + "sku": "TOYS-01352", + "price": 8444.98, + "stock": 164, + "status": "Active" + }, + { + "id": 1353, + "productName": "Durable Dark Chocolate", + "category": "Grocery", + "sku": "GROC-01353", + "price": 1727.66, + "stock": 177, + "status": "Active" + }, + { + "id": 1354, + "productName": "Ergonomic Puzzle", + "category": "Toys", + "sku": "TOYS-01354", + "price": 4590.57, + "stock": 123, + "status": "Active" + }, + { + "id": 1355, + "productName": "Smart Dark Chocolate", + "category": "Grocery", + "sku": "GROC-01355", + "price": 89.57, + "stock": 32, + "status": "Active" + }, + { + "id": 1356, + "productName": "Compact Charger", + "category": "Electronics", + "sku": "ELEC-01356", + "price": 110533.06, + "stock": 42, + "status": "Active" + }, + { + "id": 1357, + "productName": "Classic Conditioner", + "category": "Beauty", + "sku": "BEAU-01357", + "price": 7058.07, + "stock": 405, + "status": "Active" + }, + { + "id": 1358, + "productName": "Premium Cookbook", + "category": "Books", + "sku": "BOOK-01358", + "price": 241.06, + "stock": 440, + "status": "Active" + }, + { + "id": 1359, + "productName": "Ergonomic Monitor", + "category": "Electronics", + "sku": "ELEC-01359", + "price": 7315.24, + "stock": 89, + "status": "Active" + }, + { + "id": 1360, + "productName": "Durable Almonds", + "category": "Grocery", + "sku": "GROC-01360", + "price": 1224.2, + "stock": 455, + "status": "Active" + }, + { + "id": 1361, + "productName": "Durable Guide", + "category": "Books", + "sku": "BOOK-01361", + "price": 1706.51, + "stock": 218, + "status": "Active" + }, + { + "id": 1362, + "productName": "Compact Remote Car", + "category": "Toys", + "sku": "TOYS-01362", + "price": 2828.92, + "stock": 139, + "status": "Active" + }, + { + "id": 1363, + "productName": "Ultra Remote Car", + "category": "Toys", + "sku": "TOYS-01363", + "price": 7335.03, + "stock": 380, + "status": "Active" + }, + { + "id": 1364, + "productName": "Wireless Mixer", + "category": "Home & Kitchen", + "sku": "HOME-01364", + "price": 16933.35, + "stock": 261, + "status": "Active" + }, + { + "id": 1365, + "productName": "Eco Desk Lamp", + "category": "Office", + "sku": "OFFC-01365", + "price": 203.73, + "stock": 404, + "status": "Active" + }, + { + "id": 1366, + "productName": "Eco Honey", + "category": "Grocery", + "sku": "GROC-01366", + "price": 121.95, + "stock": 272, + "status": "Active" + }, + { + "id": 1367, + "productName": "Classic T-Shirt", + "category": "Clothing", + "sku": "CLOT-01367", + "price": 2819.84, + "stock": 317, + "status": "Active" + }, + { + "id": 1368, + "productName": "Durable Anthology", + "category": "Books", + "sku": "BOOK-01368", + "price": 646.43, + "stock": 164, + "status": "Active" + }, + { + "id": 1369, + "productName": "Durable Headphones", + "category": "Electronics", + "sku": "ELEC-01369", + "price": 89319.91, + "stock": 131, + "status": "Active" + }, + { + "id": 1370, + "productName": "Smart Cycling Helmet", + "category": "Sports", + "sku": "SPRT-01370", + "price": 3390.99, + "stock": 198, + "status": "Active" + }, + { + "id": 1371, + "productName": "Portable Board Game", + "category": "Toys", + "sku": "TOYS-01371", + "price": 1934.91, + "stock": 101, + "status": "Active" + }, + { + "id": 1372, + "productName": "Ultra Cookbook", + "category": "Books", + "sku": "BOOK-01372", + "price": 1043.78, + "stock": 180, + "status": "Active" + }, + { + "id": 1373, + "productName": "Classic Tennis Racket", + "category": "Sports", + "sku": "SPRT-01373", + "price": 19994.05, + "stock": 216, + "status": "Active" + }, + { + "id": 1374, + "productName": "Wireless Building Blocks", + "category": "Toys", + "sku": "TOYS-01374", + "price": 2925.96, + "stock": 6, + "status": "Active" + }, + { + "id": 1375, + "productName": "Ergonomic Honey", + "category": "Grocery", + "sku": "GROC-01375", + "price": 819.72, + "stock": 363, + "status": "Active" + }, + { + "id": 1376, + "productName": "Durable Basmati Rice", + "category": "Grocery", + "sku": "GROC-01376", + "price": 816.34, + "stock": 473, + "status": "Active" + }, + { + "id": 1377, + "productName": "Eco Smartwatch", + "category": "Electronics", + "sku": "ELEC-01377", + "price": 75666.86, + "stock": 78, + "status": "Active" + }, + { + "id": 1378, + "productName": "Ergonomic Basmati Rice", + "category": "Grocery", + "sku": "GROC-01378", + "price": 1930.08, + "stock": 250, + "status": "Active" + }, + { + "id": 1379, + "productName": "Eco Remote Car", + "category": "Toys", + "sku": "TOYS-01379", + "price": 5292.93, + "stock": 398, + "status": "Active" + }, + { + "id": 1380, + "productName": "Classic Basmati Rice", + "category": "Grocery", + "sku": "GROC-01380", + "price": 1518.33, + "stock": 434, + "status": "Active" + }, + { + "id": 1381, + "productName": "Compact Biography", + "category": "Books", + "sku": "BOOK-01381", + "price": 828.55, + "stock": 78, + "status": "Active" + }, + { + "id": 1382, + "productName": "Ergonomic Building Blocks", + "category": "Toys", + "sku": "TOYS-01382", + "price": 9171.2, + "stock": 311, + "status": "Active" + }, + { + "id": 1383, + "productName": "Smart Stuffed Toy", + "category": "Toys", + "sku": "TOYS-01383", + "price": 6632.16, + "stock": 245, + "status": "Active" + }, + { + "id": 1384, + "productName": "Smart Biography", + "category": "Books", + "sku": "BOOK-01384", + "price": 139.85, + "stock": 33, + "status": "Active" + }, + { + "id": 1385, + "productName": "Premium Biography", + "category": "Books", + "sku": "BOOK-01385", + "price": 1889.24, + "stock": 213, + "status": "Active" + }, + { + "id": 1386, + "productName": "Durable Basmati Rice", + "category": "Grocery", + "sku": "GROC-01386", + "price": 1219.45, + "stock": 211, + "status": "Active" + }, + { + "id": 1387, + "productName": "Ergonomic Knife Set", + "category": "Home & Kitchen", + "sku": "HOME-01387", + "price": 28943.94, + "stock": 393, + "status": "Active" + }, + { + "id": 1388, + "productName": "Ultra Remote Car", + "category": "Toys", + "sku": "TOYS-01388", + "price": 3395.15, + "stock": 303, + "status": "Active" + }, + { + "id": 1389, + "productName": "Classic Pen Set", + "category": "Office", + "sku": "OFFC-01389", + "price": 4407.91, + "stock": 192, + "status": "Active" + }, + { + "id": 1390, + "productName": "Durable Vacuum Cleaner", + "category": "Home & Kitchen", + "sku": "HOME-01390", + "price": 29891.77, + "stock": 106, + "status": "Active" + }, + { + "id": 1391, + "productName": "Compact Kurta", + "category": "Clothing", + "sku": "CLOT-01391", + "price": 7590.86, + "stock": 281, + "status": "Active" + }, + { + "id": 1392, + "productName": "Ergonomic Dress", + "category": "Clothing", + "sku": "CLOT-01392", + "price": 3228.65, + "stock": 147, + "status": "Active" + }, + { + "id": 1393, + "productName": "Ultra Dark Chocolate", + "category": "Grocery", + "sku": "GROC-01393", + "price": 512.43, + "stock": 450, + "status": "Active" + }, + { + "id": 1394, + "productName": "Classic Cycling Helmet", + "category": "Sports", + "sku": "SPRT-01394", + "price": 28778.3, + "stock": 55, + "status": "Active" + }, + { + "id": 1395, + "productName": "Compact Guide", + "category": "Books", + "sku": "BOOK-01395", + "price": 249.38, + "stock": 383, + "status": "Active" + }, + { + "id": 1396, + "productName": "Wireless Puzzle", + "category": "Toys", + "sku": "TOYS-01396", + "price": 9335.74, + "stock": 8, + "status": "Active" + }, + { + "id": 1397, + "productName": "Smart Kurta", + "category": "Clothing", + "sku": "CLOT-01397", + "price": 4826.75, + "stock": 125, + "status": "Active" + }, + { + "id": 1398, + "productName": "Ultra Desk Lamp", + "category": "Office", + "sku": "OFFC-01398", + "price": 6332.92, + "stock": 305, + "status": "Active" + }, + { + "id": 1399, + "productName": "Wireless Kurta", + "category": "Clothing", + "sku": "CLOT-01399", + "price": 2354.59, + "stock": 317, + "status": "Active" + }, + { + "id": 1400, + "productName": "Compact Olive Oil", + "category": "Grocery", + "sku": "GROC-01400", + "price": 1770.04, + "stock": 212, + "status": "Active" + }, + { + "id": 1401, + "productName": "Premium Novel", + "category": "Books", + "sku": "BOOK-01401", + "price": 1163.15, + "stock": 278, + "status": "Active" + }, + { + "id": 1402, + "productName": "Premium Mixer", + "category": "Home & Kitchen", + "sku": "HOME-01402", + "price": 15367.04, + "stock": 460, + "status": "Active" + }, + { + "id": 1403, + "productName": "Portable Conditioner", + "category": "Beauty", + "sku": "BEAU-01403", + "price": 5393.23, + "stock": 313, + "status": "Active" + }, + { + "id": 1404, + "productName": "Durable Filing Tray", + "category": "Office", + "sku": "OFFC-01404", + "price": 8628.27, + "stock": 365, + "status": "Active" + }, + { + "id": 1405, + "productName": "Classic Shampoo", + "category": "Beauty", + "sku": "BEAU-01405", + "price": 8809.75, + "stock": 363, + "status": "Active" + }, + { + "id": 1406, + "productName": "Premium Dumbbells", + "category": "Sports", + "sku": "SPRT-01406", + "price": 12049.33, + "stock": 42, + "status": "Active" + }, + { + "id": 1407, + "productName": "Classic Remote Car", + "category": "Toys", + "sku": "TOYS-01407", + "price": 4281.75, + "stock": 135, + "status": "Active" + }, + { + "id": 1408, + "productName": "Premium Bluetooth Speaker", + "category": "Electronics", + "sku": "ELEC-01408", + "price": 10851.56, + "stock": 102, + "status": "Active" + }, + { + "id": 1409, + "productName": "Compact Water Bottle", + "category": "Home & Kitchen", + "sku": "HOME-01409", + "price": 27566.19, + "stock": 84, + "status": "Active" + }, + { + "id": 1410, + "productName": "Ultra Serum", + "category": "Beauty", + "sku": "BEAU-01410", + "price": 9438.88, + "stock": 7, + "status": "Active" + }, + { + "id": 1411, + "productName": "Ultra Football", + "category": "Sports", + "sku": "SPRT-01411", + "price": 26578.07, + "stock": 43, + "status": "Active" + }, + { + "id": 1412, + "productName": "Durable Knife Set", + "category": "Home & Kitchen", + "sku": "HOME-01412", + "price": 302.81, + "stock": 309, + "status": "Active" + }, + { + "id": 1413, + "productName": "Compact Pen Set", + "category": "Office", + "sku": "OFFC-01413", + "price": 8834.94, + "stock": 16, + "status": "Active" + }, + { + "id": 1414, + "productName": "Premium Perfume", + "category": "Beauty", + "sku": "BEAU-01414", + "price": 7831.18, + "stock": 322, + "status": "Active" + }, + { + "id": 1415, + "productName": "Eco Stuffed Toy", + "category": "Toys", + "sku": "TOYS-01415", + "price": 4784.81, + "stock": 267, + "status": "Active" + }, + { + "id": 1416, + "productName": "Smart Building Blocks", + "category": "Toys", + "sku": "TOYS-01416", + "price": 279.55, + "stock": 103, + "status": "Active" + }, + { + "id": 1417, + "productName": "Smart Shampoo", + "category": "Beauty", + "sku": "BEAU-01417", + "price": 4697.21, + "stock": 480, + "status": "Active" + }, + { + "id": 1418, + "productName": "Eco Tennis Racket", + "category": "Sports", + "sku": "SPRT-01418", + "price": 22171.79, + "stock": 480, + "status": "Active" + }, + { + "id": 1419, + "productName": "Classic Honey", + "category": "Grocery", + "sku": "GROC-01419", + "price": 624.54, + "stock": 253, + "status": "Active" + }, + { + "id": 1420, + "productName": "Ergonomic Basmati Rice", + "category": "Grocery", + "sku": "GROC-01420", + "price": 662.83, + "stock": 99, + "status": "Active" + }, + { + "id": 1421, + "productName": "Classic Bluetooth Speaker", + "category": "Electronics", + "sku": "ELEC-01421", + "price": 133213.08, + "stock": 376, + "status": "Active" + }, + { + "id": 1422, + "productName": "Compact Puzzle", + "category": "Toys", + "sku": "TOYS-01422", + "price": 7324.91, + "stock": 152, + "status": "Active" + }, + { + "id": 1423, + "productName": "Wireless Board Game", + "category": "Toys", + "sku": "TOYS-01423", + "price": 7918.18, + "stock": 194, + "status": "Active" + }, + { + "id": 1424, + "productName": "Portable Building Blocks", + "category": "Toys", + "sku": "TOYS-01424", + "price": 9706.12, + "stock": 355, + "status": "Active" + }, + { + "id": 1425, + "productName": "Portable Cricket Bat", + "category": "Sports", + "sku": "SPRT-01425", + "price": 29165.86, + "stock": 185, + "status": "Active" + }, + { + "id": 1426, + "productName": "Durable Filing Tray", + "category": "Office", + "sku": "OFFC-01426", + "price": 3336.04, + "stock": 452, + "status": "Active" + }, + { + "id": 1427, + "productName": "Compact Notebook", + "category": "Office", + "sku": "OFFC-01427", + "price": 1569.92, + "stock": 27, + "status": "Active" + }, + { + "id": 1428, + "productName": "Ultra Stuffed Toy", + "category": "Toys", + "sku": "TOYS-01428", + "price": 3206.63, + "stock": 263, + "status": "Active" + }, + { + "id": 1429, + "productName": "Wireless Almonds", + "category": "Grocery", + "sku": "GROC-01429", + "price": 1844.52, + "stock": 333, + "status": "Active" + }, + { + "id": 1430, + "productName": "Ergonomic Conditioner", + "category": "Beauty", + "sku": "BEAU-01430", + "price": 5899.46, + "stock": 172, + "status": "Active" + }, + { + "id": 1431, + "productName": "Premium Basmati Rice", + "category": "Grocery", + "sku": "GROC-01431", + "price": 772.67, + "stock": 204, + "status": "Active" + }, + { + "id": 1432, + "productName": "Smart Dress", + "category": "Clothing", + "sku": "CLOT-01432", + "price": 5355.69, + "stock": 36, + "status": "Active" + }, + { + "id": 1433, + "productName": "Smart Water Bottle", + "category": "Home & Kitchen", + "sku": "HOME-01433", + "price": 23445.86, + "stock": 282, + "status": "Active" + }, + { + "id": 1434, + "productName": "Eco Anthology", + "category": "Books", + "sku": "BOOK-01434", + "price": 584.55, + "stock": 287, + "status": "Active" + }, + { + "id": 1435, + "productName": "Compact Knife Set", + "category": "Home & Kitchen", + "sku": "HOME-01435", + "price": 15485.75, + "stock": 283, + "status": "Active" + }, + { + "id": 1436, + "productName": "Portable Remote Car", + "category": "Toys", + "sku": "TOYS-01436", + "price": 5257.13, + "stock": 321, + "status": "Active" + }, + { + "id": 1437, + "productName": "Compact Cookbook", + "category": "Books", + "sku": "BOOK-01437", + "price": 853.91, + "stock": 4, + "status": "Active" + }, + { + "id": 1438, + "productName": "Wireless Novel", + "category": "Books", + "sku": "BOOK-01438", + "price": 173.78, + "stock": 123, + "status": "Active" + }, + { + "id": 1439, + "productName": "Ergonomic Football", + "category": "Sports", + "sku": "SPRT-01439", + "price": 18801.19, + "stock": 419, + "status": "Active" + }, + { + "id": 1440, + "productName": "Classic Desk Lamp", + "category": "Office", + "sku": "OFFC-01440", + "price": 4155.84, + "stock": 283, + "status": "Active" + }, + { + "id": 1441, + "productName": "Compact Remote Car", + "category": "Toys", + "sku": "TOYS-01441", + "price": 5326.48, + "stock": 190, + "status": "Active" + }, + { + "id": 1442, + "productName": "Eco Football", + "category": "Sports", + "sku": "SPRT-01442", + "price": 10815.86, + "stock": 430, + "status": "Active" + }, + { + "id": 1443, + "productName": "Eco Remote Car", + "category": "Toys", + "sku": "TOYS-01443", + "price": 5647.79, + "stock": 434, + "status": "Active" + }, + { + "id": 1444, + "productName": "Ultra Board Game", + "category": "Toys", + "sku": "TOYS-01444", + "price": 2696.17, + "stock": 332, + "status": "Active" + }, + { + "id": 1445, + "productName": "Durable Kurta", + "category": "Clothing", + "sku": "CLOT-01445", + "price": 7244.11, + "stock": 238, + "status": "Active" + }, + { + "id": 1446, + "productName": "Ultra Biography", + "category": "Books", + "sku": "BOOK-01446", + "price": 916.4, + "stock": 407, + "status": "Active" + }, + { + "id": 1447, + "productName": "Portable Stuffed Toy", + "category": "Toys", + "sku": "TOYS-01447", + "price": 3579.53, + "stock": 133, + "status": "Active" + }, + { + "id": 1448, + "productName": "Compact Remote Car", + "category": "Toys", + "sku": "TOYS-01448", + "price": 7617.66, + "stock": 319, + "status": "Active" + }, + { + "id": 1449, + "productName": "Durable Notebook", + "category": "Office", + "sku": "OFFC-01449", + "price": 8019.36, + "stock": 364, + "status": "Active" + }, + { + "id": 1450, + "productName": "Premium Water Bottle", + "category": "Home & Kitchen", + "sku": "HOME-01450", + "price": 28918.34, + "stock": 449, + "status": "Active" + }, + { + "id": 1451, + "productName": "Eco Vacuum Cleaner", + "category": "Home & Kitchen", + "sku": "HOME-01451", + "price": 10636.02, + "stock": 335, + "status": "Active" + }, + { + "id": 1452, + "productName": "Portable Coffee Maker", + "category": "Home & Kitchen", + "sku": "HOME-01452", + "price": 10153.6, + "stock": 244, + "status": "Active" + }, + { + "id": 1453, + "productName": "Classic Novel", + "category": "Books", + "sku": "BOOK-01453", + "price": 1003.23, + "stock": 235, + "status": "Active" + }, + { + "id": 1454, + "productName": "Portable Yoga Mat", + "category": "Sports", + "sku": "SPRT-01454", + "price": 25694.98, + "stock": 15, + "status": "Active" + }, + { + "id": 1455, + "productName": "Classic Laptop", + "category": "Electronics", + "sku": "ELEC-01455", + "price": 20826.1, + "stock": 232, + "status": "Active" + }, + { + "id": 1456, + "productName": "Eco Shampoo", + "category": "Beauty", + "sku": "BEAU-01456", + "price": 9470.55, + "stock": 83, + "status": "Active" + }, + { + "id": 1457, + "productName": "Smart Mouse", + "category": "Electronics", + "sku": "ELEC-01457", + "price": 4852.73, + "stock": 7, + "status": "Active" + }, + { + "id": 1458, + "productName": "Portable Novel", + "category": "Books", + "sku": "BOOK-01458", + "price": 372.33, + "stock": 479, + "status": "Active" + }, + { + "id": 1459, + "productName": "Classic Desk Lamp", + "category": "Office", + "sku": "OFFC-01459", + "price": 6409.78, + "stock": 36, + "status": "Active" + }, + { + "id": 1460, + "productName": "Durable Textbook", + "category": "Books", + "sku": "BOOK-01460", + "price": 1765.81, + "stock": 340, + "status": "Active" + }, + { + "id": 1461, + "productName": "Wireless Headphones", + "category": "Electronics", + "sku": "ELEC-01461", + "price": 74177.07, + "stock": 146, + "status": "Active" + }, + { + "id": 1462, + "productName": "Portable Puzzle", + "category": "Toys", + "sku": "TOYS-01462", + "price": 9390.51, + "stock": 238, + "status": "Active" + }, + { + "id": 1463, + "productName": "Smart Almonds", + "category": "Grocery", + "sku": "GROC-01463", + "price": 1974.76, + "stock": 241, + "status": "Active" + }, + { + "id": 1464, + "productName": "Ergonomic Perfume", + "category": "Beauty", + "sku": "BEAU-01464", + "price": 8011.0, + "stock": 42, + "status": "Active" + }, + { + "id": 1465, + "productName": "Eco Filing Tray", + "category": "Office", + "sku": "OFFC-01465", + "price": 8549.52, + "stock": 298, + "status": "Active" + }, + { + "id": 1466, + "productName": "Wireless Shirt", + "category": "Clothing", + "sku": "CLOT-01466", + "price": 758.72, + "stock": 22, + "status": "Active" + }, + { + "id": 1467, + "productName": "Wireless Cookbook", + "category": "Books", + "sku": "BOOK-01467", + "price": 1563.9, + "stock": 167, + "status": "Active" + }, + { + "id": 1468, + "productName": "Classic Pen Set", + "category": "Office", + "sku": "OFFC-01468", + "price": 1077.72, + "stock": 210, + "status": "Active" + }, + { + "id": 1469, + "productName": "Classic Cycling Helmet", + "category": "Sports", + "sku": "SPRT-01469", + "price": 8248.73, + "stock": 203, + "status": "Active" + }, + { + "id": 1470, + "productName": "Ultra Tennis Racket", + "category": "Sports", + "sku": "SPRT-01470", + "price": 7169.95, + "stock": 139, + "status": "Active" + }, + { + "id": 1471, + "productName": "Portable Cycling Helmet", + "category": "Sports", + "sku": "SPRT-01471", + "price": 16444.62, + "stock": 158, + "status": "Active" + }, + { + "id": 1472, + "productName": "Ultra Mixer", + "category": "Home & Kitchen", + "sku": "HOME-01472", + "price": 27329.23, + "stock": 296, + "status": "Active" + }, + { + "id": 1473, + "productName": "Premium Vacuum Cleaner", + "category": "Home & Kitchen", + "sku": "HOME-01473", + "price": 22379.69, + "stock": 398, + "status": "Active" + }, + { + "id": 1474, + "productName": "Wireless Serum", + "category": "Beauty", + "sku": "BEAU-01474", + "price": 5039.63, + "stock": 17, + "status": "Active" + }, + { + "id": 1475, + "productName": "Eco Conditioner", + "category": "Beauty", + "sku": "BEAU-01475", + "price": 4991.22, + "stock": 176, + "status": "Active" + }, + { + "id": 1476, + "productName": "Classic Almonds", + "category": "Grocery", + "sku": "GROC-01476", + "price": 1254.28, + "stock": 367, + "status": "Active" + }, + { + "id": 1477, + "productName": "Durable Honey", + "category": "Grocery", + "sku": "GROC-01477", + "price": 388.33, + "stock": 461, + "status": "Active" + }, + { + "id": 1478, + "productName": "Smart Textbook", + "category": "Books", + "sku": "BOOK-01478", + "price": 946.33, + "stock": 314, + "status": "Active" + }, + { + "id": 1479, + "productName": "Wireless Cycling Helmet", + "category": "Sports", + "sku": "SPRT-01479", + "price": 16330.47, + "stock": 210, + "status": "Active" + }, + { + "id": 1480, + "productName": "Compact Yoga Mat", + "category": "Sports", + "sku": "SPRT-01480", + "price": 25081.11, + "stock": 52, + "status": "Active" + }, + { + "id": 1481, + "productName": "Ultra Jeans", + "category": "Clothing", + "sku": "CLOT-01481", + "price": 7551.3, + "stock": 238, + "status": "Active" + }, + { + "id": 1482, + "productName": "Wireless Shirt", + "category": "Clothing", + "sku": "CLOT-01482", + "price": 5368.69, + "stock": 118, + "status": "Active" + }, + { + "id": 1483, + "productName": "Premium Puzzle", + "category": "Toys", + "sku": "TOYS-01483", + "price": 9519.23, + "stock": 125, + "status": "Active" + }, + { + "id": 1484, + "productName": "Durable Coffee Maker", + "category": "Home & Kitchen", + "sku": "HOME-01484", + "price": 20158.18, + "stock": 150, + "status": "Active" + }, + { + "id": 1485, + "productName": "Durable Anthology", + "category": "Books", + "sku": "BOOK-01485", + "price": 1559.82, + "stock": 302, + "status": "Active" + }, + { + "id": 1486, + "productName": "Portable Desk Lamp", + "category": "Office", + "sku": "OFFC-01486", + "price": 8368.07, + "stock": 323, + "status": "Active" + }, + { + "id": 1487, + "productName": "Wireless Filing Tray", + "category": "Office", + "sku": "OFFC-01487", + "price": 9466.97, + "stock": 75, + "status": "Active" + }, + { + "id": 1488, + "productName": "Wireless Vacuum Cleaner", + "category": "Home & Kitchen", + "sku": "HOME-01488", + "price": 23486.06, + "stock": 183, + "status": "Active" + }, + { + "id": 1489, + "productName": "Wireless Vacuum Cleaner", + "category": "Home & Kitchen", + "sku": "HOME-01489", + "price": 25791.9, + "stock": 174, + "status": "Active" + }, + { + "id": 1490, + "productName": "Ultra Yoga Mat", + "category": "Sports", + "sku": "SPRT-01490", + "price": 11883.78, + "stock": 466, + "status": "Active" + }, + { + "id": 1491, + "productName": "Portable Basmati Rice", + "category": "Grocery", + "sku": "GROC-01491", + "price": 947.87, + "stock": 90, + "status": "Active" + }, + { + "id": 1492, + "productName": "Classic Cookware Set", + "category": "Home & Kitchen", + "sku": "HOME-01492", + "price": 26801.36, + "stock": 218, + "status": "Active" + }, + { + "id": 1493, + "productName": "Smart Laptop", + "category": "Electronics", + "sku": "ELEC-01493", + "price": 135789.48, + "stock": 172, + "status": "Active" + }, + { + "id": 1494, + "productName": "Ergonomic Basmati Rice", + "category": "Grocery", + "sku": "GROC-01494", + "price": 912.53, + "stock": 93, + "status": "Active" + }, + { + "id": 1495, + "productName": "Classic Jacket", + "category": "Clothing", + "sku": "CLOT-01495", + "price": 6355.95, + "stock": 222, + "status": "Active" + }, + { + "id": 1496, + "productName": "Portable Olive Oil", + "category": "Grocery", + "sku": "GROC-01496", + "price": 1597.77, + "stock": 136, + "status": "Active" + }, + { + "id": 1497, + "productName": "Classic Perfume", + "category": "Beauty", + "sku": "BEAU-01497", + "price": 1011.06, + "stock": 221, + "status": "Active" + }, + { + "id": 1498, + "productName": "Eco Jacket", + "category": "Clothing", + "sku": "CLOT-01498", + "price": 5713.1, + "stock": 362, + "status": "Active" + }, + { + "id": 1499, + "productName": "Classic Conditioner", + "category": "Beauty", + "sku": "BEAU-01499", + "price": 3019.6, + "stock": 82, + "status": "Active" + }, + { + "id": 1500, + "productName": "Ultra Planner", + "category": "Office", + "sku": "OFFC-01500", + "price": 8140.58, + "stock": 219, + "status": "Active" + }, + { + "id": 1501, + "productName": "Wireless Perfume", + "category": "Beauty", + "sku": "BEAU-01501", + "price": 9020.61, + "stock": 3, + "status": "Active" + }, + { + "id": 1502, + "productName": "Smart Biography", + "category": "Books", + "sku": "BOOK-01502", + "price": 1663.69, + "stock": 331, + "status": "Active" + }, + { + "id": 1503, + "productName": "Compact Almonds", + "category": "Grocery", + "sku": "GROC-01503", + "price": 701.51, + "stock": 149, + "status": "Active" + }, + { + "id": 1504, + "productName": "Wireless Textbook", + "category": "Books", + "sku": "BOOK-01504", + "price": 1121.26, + "stock": 424, + "status": "Active" + }, + { + "id": 1505, + "productName": "Premium Keyboard", + "category": "Electronics", + "sku": "ELEC-01505", + "price": 34760.9, + "stock": 237, + "status": "Active" + }, + { + "id": 1506, + "productName": "Eco Basmati Rice", + "category": "Grocery", + "sku": "GROC-01506", + "price": 343.32, + "stock": 126, + "status": "Active" + }, + { + "id": 1507, + "productName": "Eco Power Bank", + "category": "Electronics", + "sku": "ELEC-01507", + "price": 87549.01, + "stock": 109, + "status": "Active" + }, + { + "id": 1508, + "productName": "Eco Laptop", + "category": "Electronics", + "sku": "ELEC-01508", + "price": 70054.04, + "stock": 189, + "status": "Active" + }, + { + "id": 1509, + "productName": "Eco Dumbbells", + "category": "Sports", + "sku": "SPRT-01509", + "price": 16942.53, + "stock": 441, + "status": "Active" + }, + { + "id": 1510, + "productName": "Premium Shirt", + "category": "Clothing", + "sku": "CLOT-01510", + "price": 6678.12, + "stock": 113, + "status": "Active" + }, + { + "id": 1511, + "productName": "Smart Jacket", + "category": "Clothing", + "sku": "CLOT-01511", + "price": 5974.84, + "stock": 80, + "status": "Active" + }, + { + "id": 1512, + "productName": "Ultra Dumbbells", + "category": "Sports", + "sku": "SPRT-01512", + "price": 21451.18, + "stock": 229, + "status": "Active" + }, + { + "id": 1513, + "productName": "Classic Conditioner", + "category": "Beauty", + "sku": "BEAU-01513", + "price": 3499.97, + "stock": 291, + "status": "Active" + }, + { + "id": 1514, + "productName": "Smart Remote Car", + "category": "Toys", + "sku": "TOYS-01514", + "price": 4553.49, + "stock": 438, + "status": "Active" + }, + { + "id": 1515, + "productName": "Smart Laptop", + "category": "Electronics", + "sku": "ELEC-01515", + "price": 82786.58, + "stock": 214, + "status": "Active" + }, + { + "id": 1516, + "productName": "Smart Knife Set", + "category": "Home & Kitchen", + "sku": "HOME-01516", + "price": 23908.43, + "stock": 58, + "status": "Active" + }, + { + "id": 1517, + "productName": "Smart Remote Car", + "category": "Toys", + "sku": "TOYS-01517", + "price": 3434.37, + "stock": 416, + "status": "Active" + }, + { + "id": 1518, + "productName": "Eco Board Game", + "category": "Toys", + "sku": "TOYS-01518", + "price": 6687.17, + "stock": 87, + "status": "Active" + }, + { + "id": 1519, + "productName": "Ergonomic Power Bank", + "category": "Electronics", + "sku": "ELEC-01519", + "price": 3854.59, + "stock": 139, + "status": "Active" + }, + { + "id": 1520, + "productName": "Ultra Dumbbells", + "category": "Sports", + "sku": "SPRT-01520", + "price": 18928.24, + "stock": 45, + "status": "Active" + }, + { + "id": 1521, + "productName": "Compact Building Blocks", + "category": "Toys", + "sku": "TOYS-01521", + "price": 2057.76, + "stock": 366, + "status": "Active" + }, + { + "id": 1522, + "productName": "Eco Cricket Bat", + "category": "Sports", + "sku": "SPRT-01522", + "price": 27112.31, + "stock": 396, + "status": "Active" + }, + { + "id": 1523, + "productName": "Ultra Dumbbells", + "category": "Sports", + "sku": "SPRT-01523", + "price": 26218.7, + "stock": 123, + "status": "Active" + }, + { + "id": 1524, + "productName": "Ergonomic Dumbbells", + "category": "Sports", + "sku": "SPRT-01524", + "price": 7378.04, + "stock": 15, + "status": "Active" + }, + { + "id": 1525, + "productName": "Smart Tennis Racket", + "category": "Sports", + "sku": "SPRT-01525", + "price": 29959.33, + "stock": 480, + "status": "Active" + }, + { + "id": 1526, + "productName": "Ergonomic Serum", + "category": "Beauty", + "sku": "BEAU-01526", + "price": 4768.71, + "stock": 226, + "status": "Active" + }, + { + "id": 1527, + "productName": "Smart Perfume", + "category": "Beauty", + "sku": "BEAU-01527", + "price": 7601.78, + "stock": 16, + "status": "Active" + }, + { + "id": 1528, + "productName": "Ergonomic Anthology", + "category": "Books", + "sku": "BOOK-01528", + "price": 1839.56, + "stock": 199, + "status": "Active" + }, + { + "id": 1529, + "productName": "Smart Almonds", + "category": "Grocery", + "sku": "GROC-01529", + "price": 843.68, + "stock": 306, + "status": "Active" + }, + { + "id": 1530, + "productName": "Ergonomic Biography", + "category": "Books", + "sku": "BOOK-01530", + "price": 1767.97, + "stock": 228, + "status": "Active" + }, + { + "id": 1531, + "productName": "Compact Keyboard", + "category": "Electronics", + "sku": "ELEC-01531", + "price": 108188.68, + "stock": 36, + "status": "Active" + }, + { + "id": 1532, + "productName": "Ergonomic Remote Car", + "category": "Toys", + "sku": "TOYS-01532", + "price": 9763.81, + "stock": 77, + "status": "Active" + }, + { + "id": 1533, + "productName": "Durable T-Shirt", + "category": "Clothing", + "sku": "CLOT-01533", + "price": 6145.92, + "stock": 246, + "status": "Active" + }, + { + "id": 1534, + "productName": "Wireless Board Game", + "category": "Toys", + "sku": "TOYS-01534", + "price": 1203.58, + "stock": 440, + "status": "Active" + }, + { + "id": 1535, + "productName": "Ergonomic Board Game", + "category": "Toys", + "sku": "TOYS-01535", + "price": 8235.67, + "stock": 306, + "status": "Active" + }, + { + "id": 1536, + "productName": "Premium Knife Set", + "category": "Home & Kitchen", + "sku": "HOME-01536", + "price": 23720.77, + "stock": 227, + "status": "Active" + }, + { + "id": 1537, + "productName": "Ultra Headphones", + "category": "Electronics", + "sku": "ELEC-01537", + "price": 123329.22, + "stock": 143, + "status": "Active" + }, + { + "id": 1538, + "productName": "Premium Planner", + "category": "Office", + "sku": "OFFC-01538", + "price": 1603.28, + "stock": 131, + "status": "Active" + }, + { + "id": 1539, + "productName": "Premium Serum", + "category": "Beauty", + "sku": "BEAU-01539", + "price": 134.18, + "stock": 469, + "status": "Active" + }, + { + "id": 1540, + "productName": "Ergonomic Camera", + "category": "Electronics", + "sku": "ELEC-01540", + "price": 108481.13, + "stock": 416, + "status": "Active" + }, + { + "id": 1541, + "productName": "Portable Headphones", + "category": "Electronics", + "sku": "ELEC-01541", + "price": 135068.53, + "stock": 65, + "status": "Active" + }, + { + "id": 1542, + "productName": "Eco Coffee Maker", + "category": "Home & Kitchen", + "sku": "HOME-01542", + "price": 25153.15, + "stock": 299, + "status": "Active" + }, + { + "id": 1543, + "productName": "Eco Board Game", + "category": "Toys", + "sku": "TOYS-01543", + "price": 6217.62, + "stock": 210, + "status": "Active" + }, + { + "id": 1544, + "productName": "Eco Honey", + "category": "Grocery", + "sku": "GROC-01544", + "price": 439.86, + "stock": 454, + "status": "Active" + }, + { + "id": 1545, + "productName": "Premium Olive Oil", + "category": "Grocery", + "sku": "GROC-01545", + "price": 827.48, + "stock": 479, + "status": "Active" + }, + { + "id": 1546, + "productName": "Compact Monitor", + "category": "Electronics", + "sku": "ELEC-01546", + "price": 123103.53, + "stock": 55, + "status": "Active" + }, + { + "id": 1547, + "productName": "Classic Bluetooth Speaker", + "category": "Electronics", + "sku": "ELEC-01547", + "price": 149546.37, + "stock": 271, + "status": "Active" + }, + { + "id": 1548, + "productName": "Ultra Desk Lamp", + "category": "Office", + "sku": "OFFC-01548", + "price": 4905.58, + "stock": 295, + "status": "Active" + }, + { + "id": 1549, + "productName": "Ultra Coffee Maker", + "category": "Home & Kitchen", + "sku": "HOME-01549", + "price": 25352.61, + "stock": 232, + "status": "Active" + }, + { + "id": 1550, + "productName": "Ultra Planner", + "category": "Office", + "sku": "OFFC-01550", + "price": 8501.71, + "stock": 186, + "status": "Active" + }, + { + "id": 1551, + "productName": "Eco Textbook", + "category": "Books", + "sku": "BOOK-01551", + "price": 1860.32, + "stock": 160, + "status": "Active" + }, + { + "id": 1552, + "productName": "Compact Almonds", + "category": "Grocery", + "sku": "GROC-01552", + "price": 1473.06, + "stock": 90, + "status": "Active" + }, + { + "id": 1553, + "productName": "Classic Planner", + "category": "Office", + "sku": "OFFC-01553", + "price": 283.46, + "stock": 224, + "status": "Active" + }, + { + "id": 1554, + "productName": "Ergonomic Shirt", + "category": "Clothing", + "sku": "CLOT-01554", + "price": 7136.26, + "stock": 159, + "status": "Active" + }, + { + "id": 1555, + "productName": "Ultra Football", + "category": "Sports", + "sku": "SPRT-01555", + "price": 19480.17, + "stock": 183, + "status": "Active" + }, + { + "id": 1556, + "productName": "Eco Cookbook", + "category": "Books", + "sku": "BOOK-01556", + "price": 962.92, + "stock": 219, + "status": "Active" + }, + { + "id": 1557, + "productName": "Smart Olive Oil", + "category": "Grocery", + "sku": "GROC-01557", + "price": 1264.39, + "stock": 109, + "status": "Active" + }, + { + "id": 1558, + "productName": "Durable Yoga Mat", + "category": "Sports", + "sku": "SPRT-01558", + "price": 3945.13, + "stock": 186, + "status": "Active" + }, + { + "id": 1559, + "productName": "Ergonomic Air Fryer", + "category": "Home & Kitchen", + "sku": "HOME-01559", + "price": 6061.87, + "stock": 205, + "status": "Active" + }, + { + "id": 1560, + "productName": "Wireless Headphones", + "category": "Electronics", + "sku": "ELEC-01560", + "price": 132521.45, + "stock": 85, + "status": "Active" + }, + { + "id": 1561, + "productName": "Durable Basmati Rice", + "category": "Grocery", + "sku": "GROC-01561", + "price": 517.69, + "stock": 205, + "status": "Active" + }, + { + "id": 1562, + "productName": "Wireless Camera", + "category": "Electronics", + "sku": "ELEC-01562", + "price": 100820.38, + "stock": 341, + "status": "Active" + }, + { + "id": 1563, + "productName": "Ergonomic Face Cream", + "category": "Beauty", + "sku": "BEAU-01563", + "price": 2833.53, + "stock": 399, + "status": "Active" + }, + { + "id": 1564, + "productName": "Portable Board Game", + "category": "Toys", + "sku": "TOYS-01564", + "price": 4590.54, + "stock": 122, + "status": "Active" + }, + { + "id": 1565, + "productName": "Durable Puzzle", + "category": "Toys", + "sku": "TOYS-01565", + "price": 9831.19, + "stock": 352, + "status": "Active" + }, + { + "id": 1566, + "productName": "Eco Sneakers", + "category": "Clothing", + "sku": "CLOT-01566", + "price": 5280.31, + "stock": 353, + "status": "Active" + }, + { + "id": 1567, + "productName": "Smart Board Game", + "category": "Toys", + "sku": "TOYS-01567", + "price": 7031.76, + "stock": 279, + "status": "Active" + }, + { + "id": 1568, + "productName": "Portable Kurta", + "category": "Clothing", + "sku": "CLOT-01568", + "price": 5552.6, + "stock": 132, + "status": "Active" + }, + { + "id": 1569, + "productName": "Ergonomic Face Cream", + "category": "Beauty", + "sku": "BEAU-01569", + "price": 462.5, + "stock": 243, + "status": "Active" + }, + { + "id": 1570, + "productName": "Wireless Dark Chocolate", + "category": "Grocery", + "sku": "GROC-01570", + "price": 1361.43, + "stock": 112, + "status": "Active" + }, + { + "id": 1571, + "productName": "Durable Yoga Mat", + "category": "Sports", + "sku": "SPRT-01571", + "price": 26610.97, + "stock": 174, + "status": "Active" + }, + { + "id": 1572, + "productName": "Durable Building Blocks", + "category": "Toys", + "sku": "TOYS-01572", + "price": 1128.17, + "stock": 411, + "status": "Active" + }, + { + "id": 1573, + "productName": "Ergonomic Face Cream", + "category": "Beauty", + "sku": "BEAU-01573", + "price": 6621.2, + "stock": 360, + "status": "Active" + }, + { + "id": 1574, + "productName": "Portable Sneakers", + "category": "Clothing", + "sku": "CLOT-01574", + "price": 813.66, + "stock": 227, + "status": "Active" + }, + { + "id": 1575, + "productName": "Classic Kurta", + "category": "Clothing", + "sku": "CLOT-01575", + "price": 2785.25, + "stock": 271, + "status": "Active" + }, + { + "id": 1576, + "productName": "Premium Pen Set", + "category": "Office", + "sku": "OFFC-01576", + "price": 6173.25, + "stock": 85, + "status": "Active" + }, + { + "id": 1577, + "productName": "Durable Face Cream", + "category": "Beauty", + "sku": "BEAU-01577", + "price": 5272.22, + "stock": 102, + "status": "Active" + }, + { + "id": 1578, + "productName": "Durable Planner", + "category": "Office", + "sku": "OFFC-01578", + "price": 5984.22, + "stock": 52, + "status": "Active" + }, + { + "id": 1579, + "productName": "Wireless Cookbook", + "category": "Books", + "sku": "BOOK-01579", + "price": 1720.0, + "stock": 79, + "status": "Active" + }, + { + "id": 1580, + "productName": "Wireless Dumbbells", + "category": "Sports", + "sku": "SPRT-01580", + "price": 21912.62, + "stock": 23, + "status": "Active" + }, + { + "id": 1581, + "productName": "Premium Laptop", + "category": "Electronics", + "sku": "ELEC-01581", + "price": 145239.0, + "stock": 428, + "status": "Active" + }, + { + "id": 1582, + "productName": "Eco Dress", + "category": "Clothing", + "sku": "CLOT-01582", + "price": 3809.3, + "stock": 147, + "status": "Active" + }, + { + "id": 1583, + "productName": "Eco Remote Car", + "category": "Toys", + "sku": "TOYS-01583", + "price": 1472.8, + "stock": 67, + "status": "Active" + }, + { + "id": 1584, + "productName": "Eco Textbook", + "category": "Books", + "sku": "BOOK-01584", + "price": 872.23, + "stock": 109, + "status": "Active" + }, + { + "id": 1585, + "productName": "Smart Notebook", + "category": "Office", + "sku": "OFFC-01585", + "price": 1327.87, + "stock": 224, + "status": "Active" + }, + { + "id": 1586, + "productName": "Portable Desk Lamp", + "category": "Office", + "sku": "OFFC-01586", + "price": 5680.37, + "stock": 208, + "status": "Active" + }, + { + "id": 1587, + "productName": "Classic Desk Lamp", + "category": "Office", + "sku": "OFFC-01587", + "price": 4876.12, + "stock": 314, + "status": "Active" + }, + { + "id": 1588, + "productName": "Eco Yoga Mat", + "category": "Sports", + "sku": "SPRT-01588", + "price": 653.26, + "stock": 419, + "status": "Active" + }, + { + "id": 1589, + "productName": "Classic Yoga Mat", + "category": "Sports", + "sku": "SPRT-01589", + "price": 18667.42, + "stock": 224, + "status": "Active" + }, + { + "id": 1590, + "productName": "Smart Shirt", + "category": "Clothing", + "sku": "CLOT-01590", + "price": 4447.19, + "stock": 270, + "status": "Active" + }, + { + "id": 1591, + "productName": "Smart Honey", + "category": "Grocery", + "sku": "GROC-01591", + "price": 1934.94, + "stock": 440, + "status": "Active" + }, + { + "id": 1592, + "productName": "Eco Knife Set", + "category": "Home & Kitchen", + "sku": "HOME-01592", + "price": 29235.91, + "stock": 247, + "status": "Active" + }, + { + "id": 1593, + "productName": "Ergonomic Basmati Rice", + "category": "Grocery", + "sku": "GROC-01593", + "price": 1575.38, + "stock": 317, + "status": "Active" + }, + { + "id": 1594, + "productName": "Eco Cookware Set", + "category": "Home & Kitchen", + "sku": "HOME-01594", + "price": 21608.07, + "stock": 204, + "status": "Active" + }, + { + "id": 1595, + "productName": "Wireless Board Game", + "category": "Toys", + "sku": "TOYS-01595", + "price": 3146.16, + "stock": 190, + "status": "Active" + }, + { + "id": 1596, + "productName": "Premium Cricket Bat", + "category": "Sports", + "sku": "SPRT-01596", + "price": 19560.37, + "stock": 288, + "status": "Active" + }, + { + "id": 1597, + "productName": "Smart Olive Oil", + "category": "Grocery", + "sku": "GROC-01597", + "price": 1507.41, + "stock": 174, + "status": "Active" + }, + { + "id": 1598, + "productName": "Wireless Almonds", + "category": "Grocery", + "sku": "GROC-01598", + "price": 178.31, + "stock": 129, + "status": "Active" + }, + { + "id": 1599, + "productName": "Ergonomic Almonds", + "category": "Grocery", + "sku": "GROC-01599", + "price": 112.27, + "stock": 401, + "status": "Active" + }, + { + "id": 1600, + "productName": "Ultra Pen Set", + "category": "Office", + "sku": "OFFC-01600", + "price": 1180.63, + "stock": 391, + "status": "Active" + }, + { + "id": 1601, + "productName": "Wireless Perfume", + "category": "Beauty", + "sku": "BEAU-01601", + "price": 9020.24, + "stock": 325, + "status": "Active" + }, + { + "id": 1602, + "productName": "Wireless Monitor", + "category": "Electronics", + "sku": "ELEC-01602", + "price": 145723.63, + "stock": 497, + "status": "Active" + }, + { + "id": 1603, + "productName": "Wireless Dress", + "category": "Clothing", + "sku": "CLOT-01603", + "price": 972.53, + "stock": 423, + "status": "Active" + }, + { + "id": 1604, + "productName": "Classic Dark Chocolate", + "category": "Grocery", + "sku": "GROC-01604", + "price": 155.38, + "stock": 17, + "status": "Active" + }, + { + "id": 1605, + "productName": "Eco Kurta", + "category": "Clothing", + "sku": "CLOT-01605", + "price": 5089.23, + "stock": 124, + "status": "Active" + }, + { + "id": 1606, + "productName": "Premium Cookbook", + "category": "Books", + "sku": "BOOK-01606", + "price": 459.68, + "stock": 468, + "status": "Active" + }, + { + "id": 1607, + "productName": "Durable Basmati Rice", + "category": "Grocery", + "sku": "GROC-01607", + "price": 61.76, + "stock": 138, + "status": "Active" + }, + { + "id": 1608, + "productName": "Portable Building Blocks", + "category": "Toys", + "sku": "TOYS-01608", + "price": 3599.19, + "stock": 188, + "status": "Active" + }, + { + "id": 1609, + "productName": "Ergonomic Knife Set", + "category": "Home & Kitchen", + "sku": "HOME-01609", + "price": 10767.5, + "stock": 233, + "status": "Active" + }, + { + "id": 1610, + "productName": "Eco Football", + "category": "Sports", + "sku": "SPRT-01610", + "price": 26392.59, + "stock": 379, + "status": "Active" + }, + { + "id": 1611, + "productName": "Compact Textbook", + "category": "Books", + "sku": "BOOK-01611", + "price": 1862.24, + "stock": 399, + "status": "Active" + }, + { + "id": 1612, + "productName": "Portable Notebook", + "category": "Office", + "sku": "OFFC-01612", + "price": 7204.45, + "stock": 242, + "status": "Active" + }, + { + "id": 1613, + "productName": "Premium Building Blocks", + "category": "Toys", + "sku": "TOYS-01613", + "price": 5849.0, + "stock": 256, + "status": "Active" + }, + { + "id": 1614, + "productName": "Durable Anthology", + "category": "Books", + "sku": "BOOK-01614", + "price": 385.42, + "stock": 436, + "status": "Active" + }, + { + "id": 1615, + "productName": "Ultra Puzzle", + "category": "Toys", + "sku": "TOYS-01615", + "price": 9616.54, + "stock": 99, + "status": "Active" + }, + { + "id": 1616, + "productName": "Ultra Conditioner", + "category": "Beauty", + "sku": "BEAU-01616", + "price": 9756.69, + "stock": 303, + "status": "Active" + }, + { + "id": 1617, + "productName": "Smart Stuffed Toy", + "category": "Toys", + "sku": "TOYS-01617", + "price": 3273.77, + "stock": 129, + "status": "Active" + }, + { + "id": 1618, + "productName": "Ergonomic Serum", + "category": "Beauty", + "sku": "BEAU-01618", + "price": 5154.64, + "stock": 157, + "status": "Active" + }, + { + "id": 1619, + "productName": "Classic Camera", + "category": "Electronics", + "sku": "ELEC-01619", + "price": 30192.51, + "stock": 405, + "status": "Active" + }, + { + "id": 1620, + "productName": "Premium Serum", + "category": "Beauty", + "sku": "BEAU-01620", + "price": 7518.61, + "stock": 338, + "status": "Active" + }, + { + "id": 1621, + "productName": "Durable Perfume", + "category": "Beauty", + "sku": "BEAU-01621", + "price": 6696.08, + "stock": 214, + "status": "Active" + }, + { + "id": 1622, + "productName": "Wireless Anthology", + "category": "Books", + "sku": "BOOK-01622", + "price": 929.28, + "stock": 204, + "status": "Active" + }, + { + "id": 1623, + "productName": "Premium Textbook", + "category": "Books", + "sku": "BOOK-01623", + "price": 1626.01, + "stock": 309, + "status": "Active" + }, + { + "id": 1624, + "productName": "Smart Dark Chocolate", + "category": "Grocery", + "sku": "GROC-01624", + "price": 1774.15, + "stock": 364, + "status": "Active" + }, + { + "id": 1625, + "productName": "Premium Cookware Set", + "category": "Home & Kitchen", + "sku": "HOME-01625", + "price": 29484.72, + "stock": 486, + "status": "Active" + }, + { + "id": 1626, + "productName": "Classic Jacket", + "category": "Clothing", + "sku": "CLOT-01626", + "price": 7027.42, + "stock": 215, + "status": "Active" + }, + { + "id": 1627, + "productName": "Ergonomic Olive Oil", + "category": "Grocery", + "sku": "GROC-01627", + "price": 1444.07, + "stock": 420, + "status": "Active" + }, + { + "id": 1628, + "productName": "Compact Olive Oil", + "category": "Grocery", + "sku": "GROC-01628", + "price": 1484.19, + "stock": 375, + "status": "Active" + }, + { + "id": 1629, + "productName": "Compact Olive Oil", + "category": "Grocery", + "sku": "GROC-01629", + "price": 1786.72, + "stock": 74, + "status": "Active" + }, + { + "id": 1630, + "productName": "Wireless Perfume", + "category": "Beauty", + "sku": "BEAU-01630", + "price": 3036.11, + "stock": 453, + "status": "Active" + }, + { + "id": 1631, + "productName": "Ultra Honey", + "category": "Grocery", + "sku": "GROC-01631", + "price": 424.2, + "stock": 400, + "status": "Active" + }, + { + "id": 1632, + "productName": "Ultra Headphones", + "category": "Electronics", + "sku": "ELEC-01632", + "price": 108741.77, + "stock": 135, + "status": "Active" + }, + { + "id": 1633, + "productName": "Durable Jacket", + "category": "Clothing", + "sku": "CLOT-01633", + "price": 6799.71, + "stock": 491, + "status": "Active" + }, + { + "id": 1634, + "productName": "Wireless Almonds", + "category": "Grocery", + "sku": "GROC-01634", + "price": 1858.76, + "stock": 359, + "status": "Active" + }, + { + "id": 1635, + "productName": "Compact Filing Tray", + "category": "Office", + "sku": "OFFC-01635", + "price": 9716.8, + "stock": 303, + "status": "Active" + }, + { + "id": 1636, + "productName": "Eco Water Bottle", + "category": "Home & Kitchen", + "sku": "HOME-01636", + "price": 7090.73, + "stock": 296, + "status": "Active" + }, + { + "id": 1637, + "productName": "Durable Smartwatch", + "category": "Electronics", + "sku": "ELEC-01637", + "price": 14861.7, + "stock": 252, + "status": "Active" + }, + { + "id": 1638, + "productName": "Compact Bluetooth Speaker", + "category": "Electronics", + "sku": "ELEC-01638", + "price": 44915.99, + "stock": 1, + "status": "Active" + }, + { + "id": 1639, + "productName": "Classic Textbook", + "category": "Books", + "sku": "BOOK-01639", + "price": 1254.55, + "stock": 159, + "status": "Active" + }, + { + "id": 1640, + "productName": "Smart Coffee Maker", + "category": "Home & Kitchen", + "sku": "HOME-01640", + "price": 14193.19, + "stock": 252, + "status": "Active" + }, + { + "id": 1641, + "productName": "Smart Toaster", + "category": "Home & Kitchen", + "sku": "HOME-01641", + "price": 1667.53, + "stock": 171, + "status": "Active" + }, + { + "id": 1642, + "productName": "Smart Perfume", + "category": "Beauty", + "sku": "BEAU-01642", + "price": 1602.14, + "stock": 394, + "status": "Active" + }, + { + "id": 1643, + "productName": "Wireless Football", + "category": "Sports", + "sku": "SPRT-01643", + "price": 3122.31, + "stock": 141, + "status": "Active" + }, + { + "id": 1644, + "productName": "Premium Biography", + "category": "Books", + "sku": "BOOK-01644", + "price": 785.45, + "stock": 378, + "status": "Active" + }, + { + "id": 1645, + "productName": "Ergonomic Cookbook", + "category": "Books", + "sku": "BOOK-01645", + "price": 872.34, + "stock": 4, + "status": "Active" + }, + { + "id": 1646, + "productName": "Ergonomic Almonds", + "category": "Grocery", + "sku": "GROC-01646", + "price": 296.62, + "stock": 343, + "status": "Active" + }, + { + "id": 1647, + "productName": "Classic Notebook", + "category": "Office", + "sku": "OFFC-01647", + "price": 3474.66, + "stock": 455, + "status": "Active" + }, + { + "id": 1648, + "productName": "Ergonomic Remote Car", + "category": "Toys", + "sku": "TOYS-01648", + "price": 8184.18, + "stock": 214, + "status": "Active" + }, + { + "id": 1649, + "productName": "Wireless Toaster", + "category": "Home & Kitchen", + "sku": "HOME-01649", + "price": 10995.47, + "stock": 88, + "status": "Active" + }, + { + "id": 1650, + "productName": "Premium Jacket", + "category": "Clothing", + "sku": "CLOT-01650", + "price": 271.43, + "stock": 360, + "status": "Active" + }, + { + "id": 1651, + "productName": "Durable Textbook", + "category": "Books", + "sku": "BOOK-01651", + "price": 738.63, + "stock": 108, + "status": "Active" + }, + { + "id": 1652, + "productName": "Wireless Desk Lamp", + "category": "Office", + "sku": "OFFC-01652", + "price": 9938.08, + "stock": 246, + "status": "Active" + }, + { + "id": 1653, + "productName": "Eco Smartwatch", + "category": "Electronics", + "sku": "ELEC-01653", + "price": 59630.44, + "stock": 306, + "status": "Active" + }, + { + "id": 1654, + "productName": "Premium Water Bottle", + "category": "Home & Kitchen", + "sku": "HOME-01654", + "price": 6652.84, + "stock": 267, + "status": "Active" + }, + { + "id": 1655, + "productName": "Ultra Coffee Maker", + "category": "Home & Kitchen", + "sku": "HOME-01655", + "price": 27786.91, + "stock": 391, + "status": "Active" + }, + { + "id": 1656, + "productName": "Classic Notebook", + "category": "Office", + "sku": "OFFC-01656", + "price": 6098.84, + "stock": 251, + "status": "Active" + }, + { + "id": 1657, + "productName": "Durable Olive Oil", + "category": "Grocery", + "sku": "GROC-01657", + "price": 305.82, + "stock": 104, + "status": "Active" + }, + { + "id": 1658, + "productName": "Durable Serum", + "category": "Beauty", + "sku": "BEAU-01658", + "price": 8338.04, + "stock": 210, + "status": "Active" + }, + { + "id": 1659, + "productName": "Smart Air Fryer", + "category": "Home & Kitchen", + "sku": "HOME-01659", + "price": 8516.99, + "stock": 474, + "status": "Active" + }, + { + "id": 1660, + "productName": "Smart Cookware Set", + "category": "Home & Kitchen", + "sku": "HOME-01660", + "price": 27724.86, + "stock": 116, + "status": "Active" + }, + { + "id": 1661, + "productName": "Durable Filing Tray", + "category": "Office", + "sku": "OFFC-01661", + "price": 2257.31, + "stock": 249, + "status": "Active" + }, + { + "id": 1662, + "productName": "Durable Headphones", + "category": "Electronics", + "sku": "ELEC-01662", + "price": 128167.42, + "stock": 159, + "status": "Active" + }, + { + "id": 1663, + "productName": "Wireless Football", + "category": "Sports", + "sku": "SPRT-01663", + "price": 18261.53, + "stock": 260, + "status": "Active" + }, + { + "id": 1664, + "productName": "Compact Basmati Rice", + "category": "Grocery", + "sku": "GROC-01664", + "price": 1027.88, + "stock": 316, + "status": "Active" + }, + { + "id": 1665, + "productName": "Premium Dark Chocolate", + "category": "Grocery", + "sku": "GROC-01665", + "price": 1462.63, + "stock": 87, + "status": "Active" + }, + { + "id": 1666, + "productName": "Eco Mixer", + "category": "Home & Kitchen", + "sku": "HOME-01666", + "price": 23537.12, + "stock": 9, + "status": "Active" + }, + { + "id": 1667, + "productName": "Ultra Honey", + "category": "Grocery", + "sku": "GROC-01667", + "price": 1820.79, + "stock": 27, + "status": "Active" + }, + { + "id": 1668, + "productName": "Smart Stuffed Toy", + "category": "Toys", + "sku": "TOYS-01668", + "price": 6715.13, + "stock": 164, + "status": "Active" + }, + { + "id": 1669, + "productName": "Premium Conditioner", + "category": "Beauty", + "sku": "BEAU-01669", + "price": 2767.05, + "stock": 285, + "status": "Active" + }, + { + "id": 1670, + "productName": "Smart Basmati Rice", + "category": "Grocery", + "sku": "GROC-01670", + "price": 295.46, + "stock": 259, + "status": "Active" + }, + { + "id": 1671, + "productName": "Smart Notebook", + "category": "Office", + "sku": "OFFC-01671", + "price": 6466.86, + "stock": 446, + "status": "Active" + }, + { + "id": 1672, + "productName": "Wireless Serum", + "category": "Beauty", + "sku": "BEAU-01672", + "price": 5822.68, + "stock": 367, + "status": "Active" + }, + { + "id": 1673, + "productName": "Classic Power Bank", + "category": "Electronics", + "sku": "ELEC-01673", + "price": 29314.2, + "stock": 37, + "status": "Active" + }, + { + "id": 1674, + "productName": "Premium Desk Lamp", + "category": "Office", + "sku": "OFFC-01674", + "price": 2148.97, + "stock": 86, + "status": "Active" + }, + { + "id": 1675, + "productName": "Wireless Coffee Maker", + "category": "Home & Kitchen", + "sku": "HOME-01675", + "price": 19032.68, + "stock": 282, + "status": "Active" + }, + { + "id": 1676, + "productName": "Portable Dumbbells", + "category": "Sports", + "sku": "SPRT-01676", + "price": 16010.27, + "stock": 244, + "status": "Active" + }, + { + "id": 1677, + "productName": "Wireless Keyboard", + "category": "Electronics", + "sku": "ELEC-01677", + "price": 3549.38, + "stock": 215, + "status": "Active" + }, + { + "id": 1678, + "productName": "Classic Puzzle", + "category": "Toys", + "sku": "TOYS-01678", + "price": 848.85, + "stock": 284, + "status": "Active" + }, + { + "id": 1679, + "productName": "Durable Biography", + "category": "Books", + "sku": "BOOK-01679", + "price": 1967.87, + "stock": 185, + "status": "Active" + }, + { + "id": 1680, + "productName": "Classic Remote Car", + "category": "Toys", + "sku": "TOYS-01680", + "price": 8626.01, + "stock": 96, + "status": "Active" + }, + { + "id": 1681, + "productName": "Premium Cookbook", + "category": "Books", + "sku": "BOOK-01681", + "price": 589.76, + "stock": 16, + "status": "Active" + }, + { + "id": 1682, + "productName": "Wireless Planner", + "category": "Office", + "sku": "OFFC-01682", + "price": 2376.23, + "stock": 283, + "status": "Active" + }, + { + "id": 1683, + "productName": "Eco Cookbook", + "category": "Books", + "sku": "BOOK-01683", + "price": 1756.88, + "stock": 154, + "status": "Active" + }, + { + "id": 1684, + "productName": "Premium Guide", + "category": "Books", + "sku": "BOOK-01684", + "price": 996.93, + "stock": 153, + "status": "Active" + }, + { + "id": 1685, + "productName": "Durable T-Shirt", + "category": "Clothing", + "sku": "CLOT-01685", + "price": 972.96, + "stock": 277, + "status": "Active" + }, + { + "id": 1686, + "productName": "Classic Jacket", + "category": "Clothing", + "sku": "CLOT-01686", + "price": 2320.35, + "stock": 465, + "status": "Active" + }, + { + "id": 1687, + "productName": "Portable Shirt", + "category": "Clothing", + "sku": "CLOT-01687", + "price": 1872.99, + "stock": 191, + "status": "Active" + }, + { + "id": 1688, + "productName": "Premium Dress", + "category": "Clothing", + "sku": "CLOT-01688", + "price": 6124.7, + "stock": 340, + "status": "Active" + }, + { + "id": 1689, + "productName": "Compact Dumbbells", + "category": "Sports", + "sku": "SPRT-01689", + "price": 13419.51, + "stock": 269, + "status": "Active" + }, + { + "id": 1690, + "productName": "Ergonomic Notebook", + "category": "Office", + "sku": "OFFC-01690", + "price": 7212.64, + "stock": 413, + "status": "Active" + }, + { + "id": 1691, + "productName": "Premium Novel", + "category": "Books", + "sku": "BOOK-01691", + "price": 175.35, + "stock": 340, + "status": "Active" + }, + { + "id": 1692, + "productName": "Ergonomic Power Bank", + "category": "Electronics", + "sku": "ELEC-01692", + "price": 47919.35, + "stock": 470, + "status": "Active" + }, + { + "id": 1693, + "productName": "Durable Mixer", + "category": "Home & Kitchen", + "sku": "HOME-01693", + "price": 17350.13, + "stock": 149, + "status": "Active" + }, + { + "id": 1694, + "productName": "Ergonomic Filing Tray", + "category": "Office", + "sku": "OFFC-01694", + "price": 3445.44, + "stock": 154, + "status": "Active" + }, + { + "id": 1695, + "productName": "Premium Shampoo", + "category": "Beauty", + "sku": "BEAU-01695", + "price": 8259.7, + "stock": 293, + "status": "Active" + }, + { + "id": 1696, + "productName": "Eco Perfume", + "category": "Beauty", + "sku": "BEAU-01696", + "price": 7536.64, + "stock": 146, + "status": "Active" + }, + { + "id": 1697, + "productName": "Smart Guide", + "category": "Books", + "sku": "BOOK-01697", + "price": 742.1, + "stock": 345, + "status": "Active" + }, + { + "id": 1698, + "productName": "Eco Yoga Mat", + "category": "Sports", + "sku": "SPRT-01698", + "price": 3905.6, + "stock": 183, + "status": "Active" + }, + { + "id": 1699, + "productName": "Portable Yoga Mat", + "category": "Sports", + "sku": "SPRT-01699", + "price": 25352.31, + "stock": 242, + "status": "Active" + }, + { + "id": 1700, + "productName": "Ultra Shirt", + "category": "Clothing", + "sku": "CLOT-01700", + "price": 768.46, + "stock": 8, + "status": "Active" + }, + { + "id": 1701, + "productName": "Classic Smartwatch", + "category": "Electronics", + "sku": "ELEC-01701", + "price": 144823.69, + "stock": 312, + "status": "Active" + }, + { + "id": 1702, + "productName": "Smart Novel", + "category": "Books", + "sku": "BOOK-01702", + "price": 1589.99, + "stock": 435, + "status": "Active" + }, + { + "id": 1703, + "productName": "Eco Sneakers", + "category": "Clothing", + "sku": "CLOT-01703", + "price": 4721.69, + "stock": 340, + "status": "Active" + }, + { + "id": 1704, + "productName": "Eco Pen Set", + "category": "Office", + "sku": "OFFC-01704", + "price": 3124.9, + "stock": 297, + "status": "Active" + }, + { + "id": 1705, + "productName": "Eco Dumbbells", + "category": "Sports", + "sku": "SPRT-01705", + "price": 15792.8, + "stock": 202, + "status": "Active" + }, + { + "id": 1706, + "productName": "Portable Laptop", + "category": "Electronics", + "sku": "ELEC-01706", + "price": 110950.95, + "stock": 324, + "status": "Active" + }, + { + "id": 1707, + "productName": "Smart Puzzle", + "category": "Toys", + "sku": "TOYS-01707", + "price": 4977.37, + "stock": 260, + "status": "Active" + }, + { + "id": 1708, + "productName": "Smart Jeans", + "category": "Clothing", + "sku": "CLOT-01708", + "price": 5313.39, + "stock": 219, + "status": "Active" + }, + { + "id": 1709, + "productName": "Ultra Desk Lamp", + "category": "Office", + "sku": "OFFC-01709", + "price": 6499.72, + "stock": 299, + "status": "Active" + }, + { + "id": 1710, + "productName": "Premium Coffee Maker", + "category": "Home & Kitchen", + "sku": "HOME-01710", + "price": 1178.25, + "stock": 378, + "status": "Active" + }, + { + "id": 1711, + "productName": "Compact Board Game", + "category": "Toys", + "sku": "TOYS-01711", + "price": 5153.8, + "stock": 247, + "status": "Active" + }, + { + "id": 1712, + "productName": "Wireless Coffee Maker", + "category": "Home & Kitchen", + "sku": "HOME-01712", + "price": 4364.29, + "stock": 29, + "status": "Active" + }, + { + "id": 1713, + "productName": "Eco Conditioner", + "category": "Beauty", + "sku": "BEAU-01713", + "price": 5309.97, + "stock": 345, + "status": "Active" + }, + { + "id": 1714, + "productName": "Eco Mixer", + "category": "Home & Kitchen", + "sku": "HOME-01714", + "price": 15875.4, + "stock": 240, + "status": "Active" + }, + { + "id": 1715, + "productName": "Portable Cycling Helmet", + "category": "Sports", + "sku": "SPRT-01715", + "price": 25189.14, + "stock": 15, + "status": "Active" + }, + { + "id": 1716, + "productName": "Smart Cookware Set", + "category": "Home & Kitchen", + "sku": "HOME-01716", + "price": 21531.03, + "stock": 440, + "status": "Active" + }, + { + "id": 1717, + "productName": "Portable Cricket Bat", + "category": "Sports", + "sku": "SPRT-01717", + "price": 14709.99, + "stock": 75, + "status": "Active" + }, + { + "id": 1718, + "productName": "Eco Almonds", + "category": "Grocery", + "sku": "GROC-01718", + "price": 161.39, + "stock": 462, + "status": "Active" + }, + { + "id": 1719, + "productName": "Classic Basmati Rice", + "category": "Grocery", + "sku": "GROC-01719", + "price": 474.34, + "stock": 0, + "status": "Backorder" + }, + { + "id": 1720, + "productName": "Durable Building Blocks", + "category": "Toys", + "sku": "TOYS-01720", + "price": 3879.71, + "stock": 409, + "status": "Active" + }, + { + "id": 1721, + "productName": "Ultra Conditioner", + "category": "Beauty", + "sku": "BEAU-01721", + "price": 8538.33, + "stock": 256, + "status": "Active" + }, + { + "id": 1722, + "productName": "Eco Perfume", + "category": "Beauty", + "sku": "BEAU-01722", + "price": 7697.32, + "stock": 299, + "status": "Active" + }, + { + "id": 1723, + "productName": "Ergonomic Biography", + "category": "Books", + "sku": "BOOK-01723", + "price": 1393.35, + "stock": 116, + "status": "Active" + }, + { + "id": 1724, + "productName": "Classic Novel", + "category": "Books", + "sku": "BOOK-01724", + "price": 1405.25, + "stock": 471, + "status": "Active" + }, + { + "id": 1725, + "productName": "Smart Planner", + "category": "Office", + "sku": "OFFC-01725", + "price": 9145.75, + "stock": 72, + "status": "Active" + }, + { + "id": 1726, + "productName": "Smart Smartwatch", + "category": "Electronics", + "sku": "ELEC-01726", + "price": 24881.15, + "stock": 423, + "status": "Active" + }, + { + "id": 1727, + "productName": "Ultra Headphones", + "category": "Electronics", + "sku": "ELEC-01727", + "price": 77769.3, + "stock": 58, + "status": "Active" + }, + { + "id": 1728, + "productName": "Ergonomic Desk Lamp", + "category": "Office", + "sku": "OFFC-01728", + "price": 670.02, + "stock": 226, + "status": "Active" + }, + { + "id": 1729, + "productName": "Eco Mixer", + "category": "Home & Kitchen", + "sku": "HOME-01729", + "price": 21224.75, + "stock": 467, + "status": "Active" + }, + { + "id": 1730, + "productName": "Premium Stuffed Toy", + "category": "Toys", + "sku": "TOYS-01730", + "price": 7350.19, + "stock": 462, + "status": "Active" + }, + { + "id": 1731, + "productName": "Compact Jeans", + "category": "Clothing", + "sku": "CLOT-01731", + "price": 1350.91, + "stock": 241, + "status": "Active" + }, + { + "id": 1732, + "productName": "Compact Perfume", + "category": "Beauty", + "sku": "BEAU-01732", + "price": 1982.27, + "stock": 208, + "status": "Active" + }, + { + "id": 1733, + "productName": "Eco Olive Oil", + "category": "Grocery", + "sku": "GROC-01733", + "price": 866.79, + "stock": 238, + "status": "Active" + }, + { + "id": 1734, + "productName": "Ultra Desk Lamp", + "category": "Office", + "sku": "OFFC-01734", + "price": 4412.3, + "stock": 129, + "status": "Active" + }, + { + "id": 1735, + "productName": "Ergonomic Football", + "category": "Sports", + "sku": "SPRT-01735", + "price": 3981.48, + "stock": 173, + "status": "Active" + }, + { + "id": 1736, + "productName": "Durable Face Cream", + "category": "Beauty", + "sku": "BEAU-01736", + "price": 3052.82, + "stock": 292, + "status": "Active" + }, + { + "id": 1737, + "productName": "Classic Monitor", + "category": "Electronics", + "sku": "ELEC-01737", + "price": 101270.34, + "stock": 322, + "status": "Active" + }, + { + "id": 1738, + "productName": "Smart Basmati Rice", + "category": "Grocery", + "sku": "GROC-01738", + "price": 1359.46, + "stock": 18, + "status": "Active" + }, + { + "id": 1739, + "productName": "Ultra Textbook", + "category": "Books", + "sku": "BOOK-01739", + "price": 305.25, + "stock": 446, + "status": "Active" + }, + { + "id": 1740, + "productName": "Ergonomic Notebook", + "category": "Office", + "sku": "OFFC-01740", + "price": 3594.01, + "stock": 459, + "status": "Active" + }, + { + "id": 1741, + "productName": "Wireless Cookware Set", + "category": "Home & Kitchen", + "sku": "HOME-01741", + "price": 16408.45, + "stock": 264, + "status": "Active" + }, + { + "id": 1742, + "productName": "Ultra Stuffed Toy", + "category": "Toys", + "sku": "TOYS-01742", + "price": 3805.24, + "stock": 378, + "status": "Active" + }, + { + "id": 1743, + "productName": "Ergonomic Mouse", + "category": "Electronics", + "sku": "ELEC-01743", + "price": 45844.4, + "stock": 2, + "status": "Active" + }, + { + "id": 1744, + "productName": "Ultra Remote Car", + "category": "Toys", + "sku": "TOYS-01744", + "price": 6586.21, + "stock": 61, + "status": "Active" + }, + { + "id": 1745, + "productName": "Portable Planner", + "category": "Office", + "sku": "OFFC-01745", + "price": 8839.64, + "stock": 257, + "status": "Active" + }, + { + "id": 1746, + "productName": "Classic Notebook", + "category": "Office", + "sku": "OFFC-01746", + "price": 5864.09, + "stock": 357, + "status": "Active" + }, + { + "id": 1747, + "productName": "Classic Tennis Racket", + "category": "Sports", + "sku": "SPRT-01747", + "price": 11975.52, + "stock": 194, + "status": "Active" + }, + { + "id": 1748, + "productName": "Compact Novel", + "category": "Books", + "sku": "BOOK-01748", + "price": 1845.85, + "stock": 276, + "status": "Active" + }, + { + "id": 1749, + "productName": "Wireless Bluetooth Speaker", + "category": "Electronics", + "sku": "ELEC-01749", + "price": 39091.57, + "stock": 233, + "status": "Active" + }, + { + "id": 1750, + "productName": "Premium Perfume", + "category": "Beauty", + "sku": "BEAU-01750", + "price": 865.91, + "stock": 3, + "status": "Active" + }, + { + "id": 1751, + "productName": "Classic Jacket", + "category": "Clothing", + "sku": "CLOT-01751", + "price": 5090.11, + "stock": 15, + "status": "Active" + }, + { + "id": 1752, + "productName": "Premium Vacuum Cleaner", + "category": "Home & Kitchen", + "sku": "HOME-01752", + "price": 27990.69, + "stock": 110, + "status": "Active" + }, + { + "id": 1753, + "productName": "Smart Filing Tray", + "category": "Office", + "sku": "OFFC-01753", + "price": 980.51, + "stock": 150, + "status": "Active" + }, + { + "id": 1754, + "productName": "Premium Laptop", + "category": "Electronics", + "sku": "ELEC-01754", + "price": 51216.44, + "stock": 129, + "status": "Active" + }, + { + "id": 1755, + "productName": "Wireless Perfume", + "category": "Beauty", + "sku": "BEAU-01755", + "price": 3144.51, + "stock": 86, + "status": "Active" + }, + { + "id": 1756, + "productName": "Portable Planner", + "category": "Office", + "sku": "OFFC-01756", + "price": 8794.08, + "stock": 236, + "status": "Active" + }, + { + "id": 1757, + "productName": "Classic Perfume", + "category": "Beauty", + "sku": "BEAU-01757", + "price": 8626.36, + "stock": 215, + "status": "Active" + }, + { + "id": 1758, + "productName": "Smart Laptop", + "category": "Electronics", + "sku": "ELEC-01758", + "price": 122527.61, + "stock": 258, + "status": "Active" + }, + { + "id": 1759, + "productName": "Ergonomic Basmati Rice", + "category": "Grocery", + "sku": "GROC-01759", + "price": 505.18, + "stock": 305, + "status": "Active" + }, + { + "id": 1760, + "productName": "Premium Dumbbells", + "category": "Sports", + "sku": "SPRT-01760", + "price": 4238.2, + "stock": 159, + "status": "Active" + }, + { + "id": 1761, + "productName": "Compact Perfume", + "category": "Beauty", + "sku": "BEAU-01761", + "price": 3897.12, + "stock": 240, + "status": "Active" + }, + { + "id": 1762, + "productName": "Classic Biography", + "category": "Books", + "sku": "BOOK-01762", + "price": 930.16, + "stock": 393, + "status": "Active" + }, + { + "id": 1763, + "productName": "Portable Pen Set", + "category": "Office", + "sku": "OFFC-01763", + "price": 6889.3, + "stock": 439, + "status": "Active" + }, + { + "id": 1764, + "productName": "Premium Serum", + "category": "Beauty", + "sku": "BEAU-01764", + "price": 8481.46, + "stock": 257, + "status": "Active" + }, + { + "id": 1765, + "productName": "Ultra Anthology", + "category": "Books", + "sku": "BOOK-01765", + "price": 1733.42, + "stock": 307, + "status": "Active" + }, + { + "id": 1766, + "productName": "Wireless Tennis Racket", + "category": "Sports", + "sku": "SPRT-01766", + "price": 18243.46, + "stock": 453, + "status": "Active" + }, + { + "id": 1767, + "productName": "Ergonomic Football", + "category": "Sports", + "sku": "SPRT-01767", + "price": 20739.37, + "stock": 339, + "status": "Active" + }, + { + "id": 1768, + "productName": "Portable Shirt", + "category": "Clothing", + "sku": "CLOT-01768", + "price": 4436.29, + "stock": 305, + "status": "Active" + }, + { + "id": 1769, + "productName": "Classic T-Shirt", + "category": "Clothing", + "sku": "CLOT-01769", + "price": 7039.03, + "stock": 170, + "status": "Active" + }, + { + "id": 1770, + "productName": "Portable Desk Lamp", + "category": "Office", + "sku": "OFFC-01770", + "price": 9328.85, + "stock": 380, + "status": "Active" + }, + { + "id": 1771, + "productName": "Durable Power Bank", + "category": "Electronics", + "sku": "ELEC-01771", + "price": 34941.94, + "stock": 329, + "status": "Active" + }, + { + "id": 1772, + "productName": "Ergonomic Olive Oil", + "category": "Grocery", + "sku": "GROC-01772", + "price": 1868.7, + "stock": 97, + "status": "Active" + }, + { + "id": 1773, + "productName": "Compact Dumbbells", + "category": "Sports", + "sku": "SPRT-01773", + "price": 4770.24, + "stock": 494, + "status": "Active" + }, + { + "id": 1774, + "productName": "Ergonomic Face Cream", + "category": "Beauty", + "sku": "BEAU-01774", + "price": 2232.14, + "stock": 79, + "status": "Active" + }, + { + "id": 1775, + "productName": "Compact Vacuum Cleaner", + "category": "Home & Kitchen", + "sku": "HOME-01775", + "price": 9227.29, + "stock": 282, + "status": "Active" + }, + { + "id": 1776, + "productName": "Wireless Knife Set", + "category": "Home & Kitchen", + "sku": "HOME-01776", + "price": 24612.73, + "stock": 310, + "status": "Active" + }, + { + "id": 1777, + "productName": "Smart Shampoo", + "category": "Beauty", + "sku": "BEAU-01777", + "price": 5361.56, + "stock": 171, + "status": "Active" + }, + { + "id": 1778, + "productName": "Wireless Board Game", + "category": "Toys", + "sku": "TOYS-01778", + "price": 3945.28, + "stock": 74, + "status": "Active" + }, + { + "id": 1779, + "productName": "Wireless Filing Tray", + "category": "Office", + "sku": "OFFC-01779", + "price": 5327.29, + "stock": 350, + "status": "Active" + }, + { + "id": 1780, + "productName": "Portable Pen Set", + "category": "Office", + "sku": "OFFC-01780", + "price": 8971.18, + "stock": 54, + "status": "Active" + }, + { + "id": 1781, + "productName": "Durable Kurta", + "category": "Clothing", + "sku": "CLOT-01781", + "price": 4684.57, + "stock": 448, + "status": "Active" + }, + { + "id": 1782, + "productName": "Premium Shampoo", + "category": "Beauty", + "sku": "BEAU-01782", + "price": 8531.16, + "stock": 182, + "status": "Active" + }, + { + "id": 1783, + "productName": "Ergonomic Knife Set", + "category": "Home & Kitchen", + "sku": "HOME-01783", + "price": 17477.62, + "stock": 70, + "status": "Active" + }, + { + "id": 1784, + "productName": "Durable Jacket", + "category": "Clothing", + "sku": "CLOT-01784", + "price": 4915.42, + "stock": 172, + "status": "Active" + }, + { + "id": 1785, + "productName": "Premium Dress", + "category": "Clothing", + "sku": "CLOT-01785", + "price": 3442.39, + "stock": 112, + "status": "Active" + }, + { + "id": 1786, + "productName": "Premium Yoga Mat", + "category": "Sports", + "sku": "SPRT-01786", + "price": 15522.08, + "stock": 46, + "status": "Active" + }, + { + "id": 1787, + "productName": "Ergonomic Conditioner", + "category": "Beauty", + "sku": "BEAU-01787", + "price": 9757.55, + "stock": 219, + "status": "Active" + }, + { + "id": 1788, + "productName": "Premium Puzzle", + "category": "Toys", + "sku": "TOYS-01788", + "price": 8591.07, + "stock": 63, + "status": "Active" + }, + { + "id": 1789, + "productName": "Compact Notebook", + "category": "Office", + "sku": "OFFC-01789", + "price": 9461.26, + "stock": 158, + "status": "Active" + }, + { + "id": 1790, + "productName": "Ergonomic Football", + "category": "Sports", + "sku": "SPRT-01790", + "price": 21698.86, + "stock": 303, + "status": "Active" + }, + { + "id": 1791, + "productName": "Portable Toaster", + "category": "Home & Kitchen", + "sku": "HOME-01791", + "price": 9733.8, + "stock": 346, + "status": "Active" + }, + { + "id": 1792, + "productName": "Premium Perfume", + "category": "Beauty", + "sku": "BEAU-01792", + "price": 4938.1, + "stock": 69, + "status": "Active" + }, + { + "id": 1793, + "productName": "Compact Anthology", + "category": "Books", + "sku": "BOOK-01793", + "price": 273.45, + "stock": 175, + "status": "Active" + }, + { + "id": 1794, + "productName": "Ergonomic Laptop", + "category": "Electronics", + "sku": "ELEC-01794", + "price": 100380.17, + "stock": 1, + "status": "Active" + }, + { + "id": 1795, + "productName": "Smart Cookbook", + "category": "Books", + "sku": "BOOK-01795", + "price": 633.26, + "stock": 313, + "status": "Active" + }, + { + "id": 1796, + "productName": "Portable Tennis Racket", + "category": "Sports", + "sku": "SPRT-01796", + "price": 3555.5, + "stock": 482, + "status": "Active" + }, + { + "id": 1797, + "productName": "Eco Stuffed Toy", + "category": "Toys", + "sku": "TOYS-01797", + "price": 8433.33, + "stock": 116, + "status": "Active" + }, + { + "id": 1798, + "productName": "Ultra Stuffed Toy", + "category": "Toys", + "sku": "TOYS-01798", + "price": 3554.39, + "stock": 362, + "status": "Active" + }, + { + "id": 1799, + "productName": "Classic Biography", + "category": "Books", + "sku": "BOOK-01799", + "price": 786.05, + "stock": 264, + "status": "Active" + }, + { + "id": 1800, + "productName": "Ergonomic Puzzle", + "category": "Toys", + "sku": "TOYS-01800", + "price": 3828.07, + "stock": 222, + "status": "Active" + }, + { + "id": 1801, + "productName": "Durable Smartwatch", + "category": "Electronics", + "sku": "ELEC-01801", + "price": 39498.8, + "stock": 169, + "status": "Active" + }, + { + "id": 1802, + "productName": "Durable Shirt", + "category": "Clothing", + "sku": "CLOT-01802", + "price": 1436.13, + "stock": 59, + "status": "Active" + }, + { + "id": 1803, + "productName": "Durable Desk Lamp", + "category": "Office", + "sku": "OFFC-01803", + "price": 8420.52, + "stock": 241, + "status": "Active" + }, + { + "id": 1804, + "productName": "Smart Board Game", + "category": "Toys", + "sku": "TOYS-01804", + "price": 2866.08, + "stock": 176, + "status": "Active" + }, + { + "id": 1805, + "productName": "Wireless Pen Set", + "category": "Office", + "sku": "OFFC-01805", + "price": 1851.58, + "stock": 397, + "status": "Active" + }, + { + "id": 1806, + "productName": "Classic Anthology", + "category": "Books", + "sku": "BOOK-01806", + "price": 647.84, + "stock": 412, + "status": "Active" + }, + { + "id": 1807, + "productName": "Ultra Coffee Maker", + "category": "Home & Kitchen", + "sku": "HOME-01807", + "price": 21867.04, + "stock": 45, + "status": "Active" + }, + { + "id": 1808, + "productName": "Smart Cookbook", + "category": "Books", + "sku": "BOOK-01808", + "price": 534.81, + "stock": 293, + "status": "Active" + }, + { + "id": 1809, + "productName": "Ergonomic Filing Tray", + "category": "Office", + "sku": "OFFC-01809", + "price": 8148.07, + "stock": 216, + "status": "Active" + }, + { + "id": 1810, + "productName": "Portable Olive Oil", + "category": "Grocery", + "sku": "GROC-01810", + "price": 1836.24, + "stock": 474, + "status": "Active" + }, + { + "id": 1811, + "productName": "Eco Olive Oil", + "category": "Grocery", + "sku": "GROC-01811", + "price": 581.05, + "stock": 324, + "status": "Active" + }, + { + "id": 1812, + "productName": "Ultra Novel", + "category": "Books", + "sku": "BOOK-01812", + "price": 492.41, + "stock": 83, + "status": "Active" + }, + { + "id": 1813, + "productName": "Eco Air Fryer", + "category": "Home & Kitchen", + "sku": "HOME-01813", + "price": 8442.96, + "stock": 485, + "status": "Active" + }, + { + "id": 1814, + "productName": "Portable Air Fryer", + "category": "Home & Kitchen", + "sku": "HOME-01814", + "price": 2575.36, + "stock": 440, + "status": "Active" + }, + { + "id": 1815, + "productName": "Compact Guide", + "category": "Books", + "sku": "BOOK-01815", + "price": 1751.3, + "stock": 65, + "status": "Active" + }, + { + "id": 1816, + "productName": "Premium Tennis Racket", + "category": "Sports", + "sku": "SPRT-01816", + "price": 8310.49, + "stock": 425, + "status": "Active" + }, + { + "id": 1817, + "productName": "Classic Notebook", + "category": "Office", + "sku": "OFFC-01817", + "price": 3825.57, + "stock": 315, + "status": "Active" + }, + { + "id": 1818, + "productName": "Durable Planner", + "category": "Office", + "sku": "OFFC-01818", + "price": 8157.02, + "stock": 7, + "status": "Active" + }, + { + "id": 1819, + "productName": "Durable Novel", + "category": "Books", + "sku": "BOOK-01819", + "price": 1377.71, + "stock": 282, + "status": "Active" + }, + { + "id": 1820, + "productName": "Eco Almonds", + "category": "Grocery", + "sku": "GROC-01820", + "price": 461.72, + "stock": 255, + "status": "Active" + }, + { + "id": 1821, + "productName": "Classic Notebook", + "category": "Office", + "sku": "OFFC-01821", + "price": 3957.85, + "stock": 144, + "status": "Active" + }, + { + "id": 1822, + "productName": "Durable T-Shirt", + "category": "Clothing", + "sku": "CLOT-01822", + "price": 7045.11, + "stock": 24, + "status": "Active" + }, + { + "id": 1823, + "productName": "Ergonomic Novel", + "category": "Books", + "sku": "BOOK-01823", + "price": 124.23, + "stock": 297, + "status": "Active" + }, + { + "id": 1824, + "productName": "Smart Board Game", + "category": "Toys", + "sku": "TOYS-01824", + "price": 7705.78, + "stock": 29, + "status": "Active" + }, + { + "id": 1825, + "productName": "Wireless Shampoo", + "category": "Beauty", + "sku": "BEAU-01825", + "price": 4072.87, + "stock": 308, + "status": "Active" + }, + { + "id": 1826, + "productName": "Ergonomic Stuffed Toy", + "category": "Toys", + "sku": "TOYS-01826", + "price": 9238.6, + "stock": 19, + "status": "Active" + }, + { + "id": 1827, + "productName": "Wireless Football", + "category": "Sports", + "sku": "SPRT-01827", + "price": 5789.3, + "stock": 312, + "status": "Active" + }, + { + "id": 1828, + "productName": "Premium Perfume", + "category": "Beauty", + "sku": "BEAU-01828", + "price": 9960.45, + "stock": 353, + "status": "Active" + }, + { + "id": 1829, + "productName": "Ultra Knife Set", + "category": "Home & Kitchen", + "sku": "HOME-01829", + "price": 10439.6, + "stock": 354, + "status": "Active" + }, + { + "id": 1830, + "productName": "Compact Kurta", + "category": "Clothing", + "sku": "CLOT-01830", + "price": 1087.38, + "stock": 229, + "status": "Active" + }, + { + "id": 1831, + "productName": "Premium Laptop", + "category": "Electronics", + "sku": "ELEC-01831", + "price": 1819.73, + "stock": 172, + "status": "Active" + }, + { + "id": 1832, + "productName": "Ultra Board Game", + "category": "Toys", + "sku": "TOYS-01832", + "price": 2849.78, + "stock": 319, + "status": "Active" + }, + { + "id": 1833, + "productName": "Portable Toaster", + "category": "Home & Kitchen", + "sku": "HOME-01833", + "price": 6394.1, + "stock": 289, + "status": "Active" + }, + { + "id": 1834, + "productName": "Classic Board Game", + "category": "Toys", + "sku": "TOYS-01834", + "price": 7705.23, + "stock": 448, + "status": "Active" + }, + { + "id": 1835, + "productName": "Portable Football", + "category": "Sports", + "sku": "SPRT-01835", + "price": 28023.38, + "stock": 249, + "status": "Active" + }, + { + "id": 1836, + "productName": "Classic Building Blocks", + "category": "Toys", + "sku": "TOYS-01836", + "price": 6475.4, + "stock": 463, + "status": "Active" + }, + { + "id": 1837, + "productName": "Smart Coffee Maker", + "category": "Home & Kitchen", + "sku": "HOME-01837", + "price": 15160.79, + "stock": 90, + "status": "Active" + }, + { + "id": 1838, + "productName": "Ultra Olive Oil", + "category": "Grocery", + "sku": "GROC-01838", + "price": 1305.37, + "stock": 428, + "status": "Active" + }, + { + "id": 1839, + "productName": "Eco Bluetooth Speaker", + "category": "Electronics", + "sku": "ELEC-01839", + "price": 143132.58, + "stock": 193, + "status": "Active" + }, + { + "id": 1840, + "productName": "Compact Anthology", + "category": "Books", + "sku": "BOOK-01840", + "price": 1964.19, + "stock": 100, + "status": "Active" + }, + { + "id": 1841, + "productName": "Premium Keyboard", + "category": "Electronics", + "sku": "ELEC-01841", + "price": 98896.57, + "stock": 462, + "status": "Active" + }, + { + "id": 1842, + "productName": "Ultra Dark Chocolate", + "category": "Grocery", + "sku": "GROC-01842", + "price": 1812.06, + "stock": 241, + "status": "Active" + }, + { + "id": 1843, + "productName": "Ultra Basmati Rice", + "category": "Grocery", + "sku": "GROC-01843", + "price": 1532.11, + "stock": 25, + "status": "Active" + }, + { + "id": 1844, + "productName": "Ergonomic Dress", + "category": "Clothing", + "sku": "CLOT-01844", + "price": 4394.02, + "stock": 274, + "status": "Active" + }, + { + "id": 1845, + "productName": "Classic Camera", + "category": "Electronics", + "sku": "ELEC-01845", + "price": 107185.9, + "stock": 234, + "status": "Active" + }, + { + "id": 1846, + "productName": "Compact Almonds", + "category": "Grocery", + "sku": "GROC-01846", + "price": 1146.72, + "stock": 260, + "status": "Active" + }, + { + "id": 1847, + "productName": "Smart Stuffed Toy", + "category": "Toys", + "sku": "TOYS-01847", + "price": 4477.12, + "stock": 251, + "status": "Active" + }, + { + "id": 1848, + "productName": "Premium Cricket Bat", + "category": "Sports", + "sku": "SPRT-01848", + "price": 19735.15, + "stock": 31, + "status": "Active" + }, + { + "id": 1849, + "productName": "Premium Face Cream", + "category": "Beauty", + "sku": "BEAU-01849", + "price": 1844.89, + "stock": 163, + "status": "Active" + }, + { + "id": 1850, + "productName": "Wireless Kurta", + "category": "Clothing", + "sku": "CLOT-01850", + "price": 625.98, + "stock": 193, + "status": "Active" + }, + { + "id": 1851, + "productName": "Wireless Planner", + "category": "Office", + "sku": "OFFC-01851", + "price": 5933.47, + "stock": 191, + "status": "Active" + }, + { + "id": 1852, + "productName": "Smart Headphones", + "category": "Electronics", + "sku": "ELEC-01852", + "price": 68739.69, + "stock": 392, + "status": "Active" + }, + { + "id": 1853, + "productName": "Durable Football", + "category": "Sports", + "sku": "SPRT-01853", + "price": 16933.62, + "stock": 58, + "status": "Active" + }, + { + "id": 1854, + "productName": "Wireless Mixer", + "category": "Home & Kitchen", + "sku": "HOME-01854", + "price": 8923.84, + "stock": 385, + "status": "Active" + }, + { + "id": 1855, + "productName": "Premium Serum", + "category": "Beauty", + "sku": "BEAU-01855", + "price": 4781.87, + "stock": 230, + "status": "Active" + }, + { + "id": 1856, + "productName": "Smart Jeans", + "category": "Clothing", + "sku": "CLOT-01856", + "price": 1726.28, + "stock": 62, + "status": "Active" + }, + { + "id": 1857, + "productName": "Portable Honey", + "category": "Grocery", + "sku": "GROC-01857", + "price": 330.96, + "stock": 479, + "status": "Active" + }, + { + "id": 1858, + "productName": "Eco Toaster", + "category": "Home & Kitchen", + "sku": "HOME-01858", + "price": 17360.04, + "stock": 437, + "status": "Active" + }, + { + "id": 1859, + "productName": "Portable Knife Set", + "category": "Home & Kitchen", + "sku": "HOME-01859", + "price": 16826.42, + "stock": 269, + "status": "Active" + }, + { + "id": 1860, + "productName": "Premium Desk Lamp", + "category": "Office", + "sku": "OFFC-01860", + "price": 5143.33, + "stock": 473, + "status": "Active" + }, + { + "id": 1861, + "productName": "Ergonomic Guide", + "category": "Books", + "sku": "BOOK-01861", + "price": 372.57, + "stock": 468, + "status": "Active" + }, + { + "id": 1862, + "productName": "Portable Dress", + "category": "Clothing", + "sku": "CLOT-01862", + "price": 2177.35, + "stock": 434, + "status": "Active" + }, + { + "id": 1863, + "productName": "Smart Serum", + "category": "Beauty", + "sku": "BEAU-01863", + "price": 7892.24, + "stock": 406, + "status": "Active" + }, + { + "id": 1864, + "productName": "Eco Cycling Helmet", + "category": "Sports", + "sku": "SPRT-01864", + "price": 23077.83, + "stock": 174, + "status": "Active" + }, + { + "id": 1865, + "productName": "Wireless Water Bottle", + "category": "Home & Kitchen", + "sku": "HOME-01865", + "price": 22326.74, + "stock": 240, + "status": "Active" + }, + { + "id": 1866, + "productName": "Portable Puzzle", + "category": "Toys", + "sku": "TOYS-01866", + "price": 4664.09, + "stock": 162, + "status": "Active" + }, + { + "id": 1867, + "productName": "Eco Shirt", + "category": "Clothing", + "sku": "CLOT-01867", + "price": 1558.63, + "stock": 42, + "status": "Active" + }, + { + "id": 1868, + "productName": "Wireless Jeans", + "category": "Clothing", + "sku": "CLOT-01868", + "price": 5523.08, + "stock": 184, + "status": "Active" + }, + { + "id": 1869, + "productName": "Eco Charger", + "category": "Electronics", + "sku": "ELEC-01869", + "price": 51773.41, + "stock": 27, + "status": "Active" + }, + { + "id": 1870, + "productName": "Premium Remote Car", + "category": "Toys", + "sku": "TOYS-01870", + "price": 2014.18, + "stock": 319, + "status": "Active" + }, + { + "id": 1871, + "productName": "Eco Shampoo", + "category": "Beauty", + "sku": "BEAU-01871", + "price": 8177.9, + "stock": 82, + "status": "Active" + }, + { + "id": 1872, + "productName": "Premium Toaster", + "category": "Home & Kitchen", + "sku": "HOME-01872", + "price": 16860.56, + "stock": 256, + "status": "Active" + }, + { + "id": 1873, + "productName": "Classic Novel", + "category": "Books", + "sku": "BOOK-01873", + "price": 1673.65, + "stock": 396, + "status": "Active" + }, + { + "id": 1874, + "productName": "Portable Keyboard", + "category": "Electronics", + "sku": "ELEC-01874", + "price": 12586.07, + "stock": 346, + "status": "Active" + }, + { + "id": 1875, + "productName": "Portable Cookbook", + "category": "Books", + "sku": "BOOK-01875", + "price": 1913.57, + "stock": 59, + "status": "Active" + }, + { + "id": 1876, + "productName": "Compact Stuffed Toy", + "category": "Toys", + "sku": "TOYS-01876", + "price": 3437.56, + "stock": 480, + "status": "Active" + }, + { + "id": 1877, + "productName": "Premium Notebook", + "category": "Office", + "sku": "OFFC-01877", + "price": 4230.85, + "stock": 194, + "status": "Active" + }, + { + "id": 1878, + "productName": "Smart Textbook", + "category": "Books", + "sku": "BOOK-01878", + "price": 1520.29, + "stock": 211, + "status": "Active" + }, + { + "id": 1879, + "productName": "Ultra Board Game", + "category": "Toys", + "sku": "TOYS-01879", + "price": 5544.28, + "stock": 468, + "status": "Active" + }, + { + "id": 1880, + "productName": "Classic Jacket", + "category": "Clothing", + "sku": "CLOT-01880", + "price": 3878.77, + "stock": 446, + "status": "Active" + }, + { + "id": 1881, + "productName": "Ultra Planner", + "category": "Office", + "sku": "OFFC-01881", + "price": 7244.88, + "stock": 130, + "status": "Active" + }, + { + "id": 1882, + "productName": "Premium Basmati Rice", + "category": "Grocery", + "sku": "GROC-01882", + "price": 805.46, + "stock": 5, + "status": "Active" + }, + { + "id": 1883, + "productName": "Durable Camera", + "category": "Electronics", + "sku": "ELEC-01883", + "price": 21414.45, + "stock": 347, + "status": "Active" + }, + { + "id": 1884, + "productName": "Portable Olive Oil", + "category": "Grocery", + "sku": "GROC-01884", + "price": 796.09, + "stock": 191, + "status": "Active" + }, + { + "id": 1885, + "productName": "Smart Dark Chocolate", + "category": "Grocery", + "sku": "GROC-01885", + "price": 202.9, + "stock": 73, + "status": "Active" + }, + { + "id": 1886, + "productName": "Eco Biography", + "category": "Books", + "sku": "BOOK-01886", + "price": 1646.53, + "stock": 309, + "status": "Active" + }, + { + "id": 1887, + "productName": "Smart T-Shirt", + "category": "Clothing", + "sku": "CLOT-01887", + "price": 213.54, + "stock": 133, + "status": "Active" + }, + { + "id": 1888, + "productName": "Compact Jacket", + "category": "Clothing", + "sku": "CLOT-01888", + "price": 2815.99, + "stock": 241, + "status": "Active" + }, + { + "id": 1889, + "productName": "Wireless Shirt", + "category": "Clothing", + "sku": "CLOT-01889", + "price": 7158.22, + "stock": 175, + "status": "Active" + }, + { + "id": 1890, + "productName": "Smart Coffee Maker", + "category": "Home & Kitchen", + "sku": "HOME-01890", + "price": 22263.69, + "stock": 492, + "status": "Active" + }, + { + "id": 1891, + "productName": "Compact Novel", + "category": "Books", + "sku": "BOOK-01891", + "price": 635.9, + "stock": 112, + "status": "Active" + }, + { + "id": 1892, + "productName": "Premium Serum", + "category": "Beauty", + "sku": "BEAU-01892", + "price": 3390.56, + "stock": 450, + "status": "Active" + }, + { + "id": 1893, + "productName": "Classic Desk Lamp", + "category": "Office", + "sku": "OFFC-01893", + "price": 4288.49, + "stock": 459, + "status": "Active" + }, + { + "id": 1894, + "productName": "Ultra Kurta", + "category": "Clothing", + "sku": "CLOT-01894", + "price": 7323.42, + "stock": 226, + "status": "Active" + }, + { + "id": 1895, + "productName": "Durable Filing Tray", + "category": "Office", + "sku": "OFFC-01895", + "price": 6456.33, + "stock": 389, + "status": "Active" + }, + { + "id": 1896, + "productName": "Classic Honey", + "category": "Grocery", + "sku": "GROC-01896", + "price": 583.77, + "stock": 84, + "status": "Active" + }, + { + "id": 1897, + "productName": "Classic Textbook", + "category": "Books", + "sku": "BOOK-01897", + "price": 1622.79, + "stock": 298, + "status": "Active" + }, + { + "id": 1898, + "productName": "Ergonomic Dumbbells", + "category": "Sports", + "sku": "SPRT-01898", + "price": 20993.65, + "stock": 224, + "status": "Active" + }, + { + "id": 1899, + "productName": "Portable Shampoo", + "category": "Beauty", + "sku": "BEAU-01899", + "price": 3637.13, + "stock": 413, + "status": "Active" + }, + { + "id": 1900, + "productName": "Wireless Honey", + "category": "Grocery", + "sku": "GROC-01900", + "price": 1094.52, + "stock": 423, + "status": "Active" + }, + { + "id": 1901, + "productName": "Compact Textbook", + "category": "Books", + "sku": "BOOK-01901", + "price": 1872.97, + "stock": 231, + "status": "Active" + }, + { + "id": 1902, + "productName": "Portable T-Shirt", + "category": "Clothing", + "sku": "CLOT-01902", + "price": 1575.01, + "stock": 447, + "status": "Active" + }, + { + "id": 1903, + "productName": "Wireless Dumbbells", + "category": "Sports", + "sku": "SPRT-01903", + "price": 26620.69, + "stock": 442, + "status": "Active" + }, + { + "id": 1904, + "productName": "Compact Board Game", + "category": "Toys", + "sku": "TOYS-01904", + "price": 7731.98, + "stock": 152, + "status": "Active" + }, + { + "id": 1905, + "productName": "Ultra Laptop", + "category": "Electronics", + "sku": "ELEC-01905", + "price": 43053.83, + "stock": 428, + "status": "Active" + }, + { + "id": 1906, + "productName": "Classic Dress", + "category": "Clothing", + "sku": "CLOT-01906", + "price": 666.13, + "stock": 123, + "status": "Active" + }, + { + "id": 1907, + "productName": "Eco Honey", + "category": "Grocery", + "sku": "GROC-01907", + "price": 1486.09, + "stock": 150, + "status": "Active" + }, + { + "id": 1908, + "productName": "Eco Yoga Mat", + "category": "Sports", + "sku": "SPRT-01908", + "price": 22994.14, + "stock": 235, + "status": "Active" + }, + { + "id": 1909, + "productName": "Ergonomic Water Bottle", + "category": "Home & Kitchen", + "sku": "HOME-01909", + "price": 29295.47, + "stock": 258, + "status": "Active" + }, + { + "id": 1910, + "productName": "Ultra Jeans", + "category": "Clothing", + "sku": "CLOT-01910", + "price": 4398.88, + "stock": 346, + "status": "Active" + }, + { + "id": 1911, + "productName": "Eco Textbook", + "category": "Books", + "sku": "BOOK-01911", + "price": 1521.48, + "stock": 117, + "status": "Active" + }, + { + "id": 1912, + "productName": "Portable Olive Oil", + "category": "Grocery", + "sku": "GROC-01912", + "price": 1411.16, + "stock": 323, + "status": "Active" + }, + { + "id": 1913, + "productName": "Classic Shirt", + "category": "Clothing", + "sku": "CLOT-01913", + "price": 5786.04, + "stock": 429, + "status": "Active" + }, + { + "id": 1914, + "productName": "Premium Dress", + "category": "Clothing", + "sku": "CLOT-01914", + "price": 6378.52, + "stock": 232, + "status": "Active" + }, + { + "id": 1915, + "productName": "Smart Novel", + "category": "Books", + "sku": "BOOK-01915", + "price": 1839.36, + "stock": 419, + "status": "Active" + }, + { + "id": 1916, + "productName": "Ultra Laptop", + "category": "Electronics", + "sku": "ELEC-01916", + "price": 85760.29, + "stock": 341, + "status": "Active" + }, + { + "id": 1917, + "productName": "Eco Conditioner", + "category": "Beauty", + "sku": "BEAU-01917", + "price": 3668.77, + "stock": 256, + "status": "Active" + }, + { + "id": 1918, + "productName": "Compact Pen Set", + "category": "Office", + "sku": "OFFC-01918", + "price": 7656.71, + "stock": 493, + "status": "Active" + }, + { + "id": 1919, + "productName": "Portable Vacuum Cleaner", + "category": "Home & Kitchen", + "sku": "HOME-01919", + "price": 14294.0, + "stock": 465, + "status": "Active" + }, + { + "id": 1920, + "productName": "Durable Yoga Mat", + "category": "Sports", + "sku": "SPRT-01920", + "price": 8526.71, + "stock": 341, + "status": "Active" + }, + { + "id": 1921, + "productName": "Smart Guide", + "category": "Books", + "sku": "BOOK-01921", + "price": 103.64, + "stock": 200, + "status": "Active" + }, + { + "id": 1922, + "productName": "Ergonomic Almonds", + "category": "Grocery", + "sku": "GROC-01922", + "price": 972.62, + "stock": 200, + "status": "Active" + }, + { + "id": 1923, + "productName": "Wireless T-Shirt", + "category": "Clothing", + "sku": "CLOT-01923", + "price": 984.14, + "stock": 314, + "status": "Active" + }, + { + "id": 1924, + "productName": "Portable Stuffed Toy", + "category": "Toys", + "sku": "TOYS-01924", + "price": 2098.36, + "stock": 68, + "status": "Active" + }, + { + "id": 1925, + "productName": "Ultra Monitor", + "category": "Electronics", + "sku": "ELEC-01925", + "price": 72373.16, + "stock": 278, + "status": "Active" + }, + { + "id": 1926, + "productName": "Eco Olive Oil", + "category": "Grocery", + "sku": "GROC-01926", + "price": 1595.74, + "stock": 142, + "status": "Active" + }, + { + "id": 1927, + "productName": "Compact Cycling Helmet", + "category": "Sports", + "sku": "SPRT-01927", + "price": 22180.49, + "stock": 345, + "status": "Active" + }, + { + "id": 1928, + "productName": "Ergonomic Board Game", + "category": "Toys", + "sku": "TOYS-01928", + "price": 9736.17, + "stock": 367, + "status": "Active" + }, + { + "id": 1929, + "productName": "Premium Sneakers", + "category": "Clothing", + "sku": "CLOT-01929", + "price": 212.5, + "stock": 60, + "status": "Active" + }, + { + "id": 1930, + "productName": "Durable Tennis Racket", + "category": "Sports", + "sku": "SPRT-01930", + "price": 12676.75, + "stock": 85, + "status": "Active" + }, + { + "id": 1931, + "productName": "Classic Honey", + "category": "Grocery", + "sku": "GROC-01931", + "price": 699.78, + "stock": 430, + "status": "Active" + }, + { + "id": 1932, + "productName": "Classic Planner", + "category": "Office", + "sku": "OFFC-01932", + "price": 9696.05, + "stock": 152, + "status": "Active" + }, + { + "id": 1933, + "productName": "Durable Building Blocks", + "category": "Toys", + "sku": "TOYS-01933", + "price": 2881.64, + "stock": 313, + "status": "Active" + }, + { + "id": 1934, + "productName": "Wireless Air Fryer", + "category": "Home & Kitchen", + "sku": "HOME-01934", + "price": 25902.66, + "stock": 450, + "status": "Active" + }, + { + "id": 1935, + "productName": "Smart Stuffed Toy", + "category": "Toys", + "sku": "TOYS-01935", + "price": 8624.55, + "stock": 188, + "status": "Active" + }, + { + "id": 1936, + "productName": "Wireless Cricket Bat", + "category": "Sports", + "sku": "SPRT-01936", + "price": 14677.11, + "stock": 370, + "status": "Active" + }, + { + "id": 1937, + "productName": "Eco Olive Oil", + "category": "Beauty", + "sku": "GROC-01937", + "price": 838.23, + "stock": 245, + "status": "Active" + }, + { + "id": 1938, + "productName": "Durable Sneakers", + "category": "Clothing", + "sku": "CLOT-01938", + "price": 5532.61, + "stock": 453, + "status": "Active" + }, + { + "id": 1939, + "productName": "Portable Anthology", + "category": "Books", + "sku": "BOOK-01939", + "price": 1026.37, + "stock": 347, + "status": "Active" + }, + { + "id": 1940, + "productName": "Eco Water Bottle", + "category": "Home & Kitchen", + "sku": "HOME-01940", + "price": 24456.84, + "stock": 212, + "status": "Active" + }, + { + "id": 1941, + "productName": "Durable Knife Set", + "category": "Books", + "sku": "HOME-01941", + "price": 29534.33, + "stock": 31, + "status": "Active" + }, + { + "id": 1942, + "productName": "Ergonomic Tennis Racket", + "category": "Sports", + "sku": "SPRT-01942", + "price": 3961.41, + "stock": 419, + "status": "Active" + }, + { + "id": 1943, + "productName": "Ergonomic Tennis Racket", + "category": "Sports", + "sku": "SPRT-01943", + "price": 3712.44, + "stock": 224, + "status": "Active" + }, + { + "id": 1944, + "productName": "Smart Air Fryer", + "category": "Home & Kitchen", + "sku": "HOME-01944", + "price": 18345.24, + "stock": 133, + "status": "Active" + }, + { + "id": 1945, + "productName": "Wireless Biography", + "category": "Books", + "sku": "BOOK-01945", + "price": 316.06, + "stock": 282, + "status": "Active" + }, + { + "id": 1946, + "productName": "Compact Shampoo", + "category": "Beauty", + "sku": "BEAU-01946", + "price": 2008.93, + "stock": 173, + "status": "Active" + }, + { + "id": 1947, + "productName": "Durable Face Cream", + "category": "Beauty", + "sku": "BEAU-01947", + "price": 7466.32, + "stock": 157, + "status": "Active" + }, + { + "id": 1948, + "productName": "Durable Jacket", + "category": "Clothing", + "sku": "CLOT-01948", + "price": 675.52, + "stock": 210, + "status": "Active" + }, + { + "id": 1949, + "productName": "Durable Air Fryer", + "category": "Home & Kitchen", + "sku": "HOME-01949", + "price": 718.83, + "stock": 68, + "status": "Active" + }, + { + "id": 1950, + "productName": "Compact Textbook", + "category": "Books", + "sku": "BOOK-01950", + "price": 1584.27, + "stock": 351, + "status": "Active" + }, + { + "id": 1951, + "productName": "Wireless Pen Set", + "category": "Office", + "sku": "OFFC-01951", + "price": 7425.14, + "stock": 17, + "status": "Active" + }, + { + "id": 1952, + "productName": "Portable Football", + "category": "Sports", + "sku": "SPRT-01952", + "price": 17327.39, + "stock": 81, + "status": "Active" + }, + { + "id": 1953, + "productName": "Smart Honey", + "category": "Grocery", + "sku": "GROC-01953", + "price": 1025.14, + "stock": 32, + "status": "Active" + }, + { + "id": 1954, + "productName": "Premium Conditioner", + "category": "Beauty", + "sku": "BEAU-01954", + "price": 951.14, + "stock": 195, + "status": "Active" + }, + { + "id": 1955, + "productName": "Smart Jacket", + "category": "Clothing", + "sku": "CLOT-01955", + "price": 5888.39, + "stock": 200, + "status": "Active" + }, + { + "id": 1956, + "productName": "Compact Desk Lamp", + "category": "Office", + "sku": "OFFC-01956", + "price": 2797.59, + "stock": 368, + "status": "Active" + }, + { + "id": 1957, + "productName": "Eco Board Game", + "category": "Toys", + "sku": "TOYS-01957", + "price": 9911.77, + "stock": 110, + "status": "Active" + }, + { + "id": 1958, + "productName": "Classic Shirt", + "category": "Clothing", + "sku": "CLOT-01958", + "price": 6753.6, + "stock": 186, + "status": "Active" + }, + { + "id": 1959, + "productName": "Portable Keyboard", + "category": "Electronics", + "sku": "ELEC-01959", + "price": 101575.99, + "stock": 265, + "status": "Active" + }, + { + "id": 1960, + "productName": "Compact Cycling Helmet", + "category": "Sports", + "sku": "SPRT-01960", + "price": 29617.24, + "stock": 359, + "status": "Active" + }, + { + "id": 1961, + "productName": "Portable Anthology", + "category": "Books", + "sku": "BOOK-01961", + "price": 809.61, + "stock": 332, + "status": "Active" + }, + { + "id": 1962, + "productName": "Ergonomic Olive Oil", + "category": "Grocery", + "sku": "GROC-01962", + "price": 1629.89, + "stock": 26, + "status": "Active" + }, + { + "id": 1963, + "productName": "Premium Biography", + "category": "Books", + "sku": "BOOK-01963", + "price": 342.21, + "stock": 249, + "status": "Active" + }, + { + "id": 1964, + "productName": "Premium Kurta", + "category": "Clothing", + "sku": "CLOT-01964", + "price": 1402.58, + "stock": 51, + "status": "Active" + }, + { + "id": 1965, + "productName": "Smart Jeans", + "category": "Clothing", + "sku": "CLOT-01965", + "price": 2241.8, + "stock": 364, + "status": "Active" + }, + { + "id": 1966, + "productName": "Smart Textbook", + "category": "Books", + "sku": "BOOK-01966", + "price": 1311.08, + "stock": 0, + "status": "Backorder" + }, + { + "id": 1967, + "productName": "Compact Knife Set", + "category": "Home & Kitchen", + "sku": "HOME-01967", + "price": 18506.79, + "stock": 160, + "status": "Active" + }, + { + "id": 1968, + "productName": "Eco Perfume", + "category": "Beauty", + "sku": "BEAU-01968", + "price": 1266.96, + "stock": 5, + "status": "Active" + }, + { + "id": 1969, + "productName": "Ergonomic Serum", + "category": "Beauty", + "sku": "BEAU-01969", + "price": 4456.61, + "stock": 422, + "status": "Active" + }, + { + "id": 1970, + "productName": "Eco Knife Set", + "category": "Home & Kitchen", + "sku": "HOME-01970", + "price": 26894.59, + "stock": 229, + "status": "Active" + }, + { + "id": 1971, + "productName": "Wireless Guide", + "category": "Books", + "sku": "BOOK-01971", + "price": 767.15, + "stock": 95, + "status": "Active" + }, + { + "id": 1972, + "productName": "Compact Honey", + "category": "Grocery", + "sku": "GROC-01972", + "price": 1977.48, + "stock": 250, + "status": "Active" + }, + { + "id": 1973, + "productName": "Ergonomic Charger", + "category": "Electronics", + "sku": "ELEC-01973", + "price": 39944.47, + "stock": 312, + "status": "Active" + }, + { + "id": 1974, + "productName": "Ergonomic Keyboard", + "category": "Electronics", + "sku": "ELEC-01974", + "price": 119871.8, + "stock": 486, + "status": "Active" + }, + { + "id": 1975, + "productName": "Smart Basmati Rice", + "category": "Grocery", + "sku": "GROC-01975", + "price": 642.27, + "stock": 89, + "status": "Active" + }, + { + "id": 1976, + "productName": "Wireless Pen Set", + "category": "Office", + "sku": "OFFC-01976", + "price": 4443.75, + "stock": 432, + "status": "Active" + }, + { + "id": 1977, + "productName": "Compact Puzzle", + "category": "Toys", + "sku": "TOYS-01977", + "price": 5463.3, + "stock": 298, + "status": "Active" + }, + { + "id": 1978, + "productName": "Durable Mouse", + "category": "Electronics", + "sku": "ELEC-01978", + "price": 103259.8, + "stock": 50, + "status": "Active" + }, + { + "id": 1979, + "productName": "Portable Filing Tray", + "category": "Office", + "sku": "OFFC-01979", + "price": 3089.76, + "stock": 108, + "status": "Active" + }, + { + "id": 1980, + "productName": "Wireless Guide", + "category": "Books", + "sku": "BOOK-01980", + "price": 642.51, + "stock": 305, + "status": "Active" + }, + { + "id": 1981, + "productName": "Ultra Jeans", + "category": "Clothing", + "sku": "CLOT-01981", + "price": 4737.05, + "stock": 380, + "status": "Active" + }, + { + "id": 1982, + "productName": "Premium Olive Oil", + "category": "Grocery", + "sku": "GROC-01982", + "price": 867.08, + "stock": 297, + "status": "Active" + }, + { + "id": 1983, + "productName": "Durable Olive Oil", + "category": "Grocery", + "sku": "GROC-01983", + "price": 119.38, + "stock": 184, + "status": "Active" + }, + { + "id": 1984, + "productName": "Eco Novel", + "category": "Books", + "sku": "BOOK-01984", + "price": 1302.84, + "stock": 409, + "status": "Active" + }, + { + "id": 1985, + "productName": "Ergonomic Shampoo", + "category": "Beauty", + "sku": "BEAU-01985", + "price": 1101.31, + "stock": 493, + "status": "Active" + }, + { + "id": 1986, + "productName": "Wireless Smartwatch", + "category": "Electronics", + "sku": "ELEC-01986", + "price": 60301.22, + "stock": 26, + "status": "Active" + }, + { + "id": 1987, + "productName": "Wireless Face Cream", + "category": "Beauty", + "sku": "BEAU-01987", + "price": 1597.24, + "stock": 401, + "status": "Active" + }, + { + "id": 1988, + "productName": "Classic Perfume", + "category": "Beauty", + "sku": "BEAU-01988", + "price": 1010.92, + "stock": 417, + "status": "Active" + }, + { + "id": 1989, + "productName": "Wireless Sneakers", + "category": "Clothing", + "sku": "CLOT-01989", + "price": 4061.49, + "stock": 287, + "status": "Active" + }, + { + "id": 1990, + "productName": "Smart Stuffed Toy", + "category": "Toys", + "sku": "TOYS-01990", + "price": 4690.19, + "stock": 150, + "status": "Active" + }, + { + "id": 1991, + "productName": "Ultra Almonds", + "category": "Grocery", + "sku": "GROC-01991", + "price": 1814.82, + "stock": 386, + "status": "Active" + }, + { + "id": 1992, + "productName": "Classic Board Game", + "category": "Toys", + "sku": "TOYS-01992", + "price": 6001.01, + "stock": 426, + "status": "Active" + }, + { + "id": 1993, + "productName": "Smart Building Blocks", + "category": "Toys", + "sku": "TOYS-01993", + "price": 1174.14, + "stock": 333, + "status": "Active" + }, + { + "id": 1994, + "productName": "Classic Almonds", + "category": "Grocery", + "sku": "GROC-01994", + "price": 1358.74, + "stock": 163, + "status": "Active" + }, + { + "id": 1995, + "productName": "Ultra Pen Set", + "category": "Office", + "sku": "OFFC-01995", + "price": 4390.25, + "stock": 48, + "status": "Active" + }, + { + "id": 1996, + "productName": "Wireless Tennis Racket", + "category": "Sports", + "sku": "SPRT-01996", + "price": 16456.59, + "stock": 207, + "status": "Active" + }, + { + "id": 1997, + "productName": "Ergonomic Laptop", + "category": "Electronics", + "sku": "ELEC-01997", + "price": 84522.59, + "stock": 368, + "status": "Active" + }, + { + "id": 1998, + "productName": "Ergonomic Coffee Maker", + "category": "Home & Kitchen", + "sku": "HOME-01998", + "price": 10793.82, + "stock": 320, + "status": "Active" + }, + { + "id": 1999, + "productName": "Ultra Mouse", + "category": "Electronics", + "sku": "ELEC-01999", + "price": 128226.41, + "stock": 84, + "status": "Active" + }, + { + "id": 2000, + "productName": "Smart Coffee Maker", + "category": "Home & Kitchen", + "sku": "HOME-02000", + "price": 22973.26, + "stock": 227, + "status": "Active" + } +] \ No newline at end of file diff --git a/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/server/requirements.txt b/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/server/requirements.txt new file mode 100644 index 0000000..364e2ee --- /dev/null +++ b/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/server/requirements.txt @@ -0,0 +1,2 @@ +fastapi +uvicorn[standard] diff --git a/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/server/routers/products.py b/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/server/routers/products.py new file mode 100644 index 0000000..647796a --- /dev/null +++ b/connecting-to-backends/syncfusion-angular-grid-custom-binding-with-fastapi-server/server/routers/products.py @@ -0,0 +1,264 @@ +from fastapi import APIRouter, HTTPException +from typing import List, Dict, Any, Optional +from pathlib import Path +import json + +router = APIRouter() + +# Data file path +DATA_FILE = Path(__file__).parent.parent / 'products_data.json' + +# In-memory data store +products: List[Dict[str, Any]] = [] + + +def load_products() -> None: + """Load products from JSON file.""" + global products + if DATA_FILE.exists(): + with open(DATA_FILE, 'r', encoding='utf-8') as file: + products = json.load(file) + + +def save_products() -> None: + """Save products to JSON file.""" + with open(DATA_FILE, 'w', encoding='utf-8') as file: + json.dump(products, file, indent=2) + + +# Load data on startup +load_products() + + +def evaluate_condition(item: Dict, condition: Any) -> bool: + """ + Recursively evaluate filter conditions. + Handles both simple and complex (nested) filter structures from Syncfusion Grid. + """ + if not condition: + return True + + # Handle list of conditions + if isinstance(condition, list): + if not condition: + return True + + # If list has only one item, evaluate it + if len(condition) == 1: + return evaluate_condition(item, condition[0]) + + # Multiple conditions in list - default to AND logic + return all(evaluate_condition(item, cond) for cond in condition) + + # Handle dictionary condition + if isinstance(condition, dict): + is_complex = condition.get('isComplex', False) + + # Complex condition with predicates (nested conditions) + if is_complex: + predicates = condition.get('predicates', []) + condition_operator = condition.get('condition', 'and').lower() + + if not predicates: + return True + + # Evaluate all predicates + results = [evaluate_condition(item, pred) for pred in predicates] + + # Apply the condition operator (and/or) + if condition_operator == 'or': + return any(results) + else: # 'and' + return all(results) + + # Simple condition - evaluate field operator value + else: + field = condition.get('field') + operator = condition.get('operator', 'equal') + value = condition.get('value') + ignore_case = condition.get('ignoreCase', True) + + if field not in item: + return False + + item_value = item[field] + + # Handle case sensitivity for string comparisons + if ignore_case and isinstance(item_value, str) and isinstance(value, str): + item_value = item_value.lower() + value = value.lower() + + # Apply operator + if operator == 'equal': + return item_value == value + elif operator == 'notequal': + return item_value != value + elif operator == 'greaterthan': + return item_value > value + elif operator == 'lessthan': + return item_value < value + elif operator == 'greaterthanorequal': + return item_value >= value + elif operator == 'lessthanorequal': + return item_value <= value + elif operator == 'contains': + item_str = str(item_value).lower() if ignore_case else str(item_value) + val_str = str(value).lower() if ignore_case else str(value) + return val_str in item_str + elif operator == 'startswith': + item_str = str(item_value).lower() if ignore_case else str(item_value) + val_str = str(value).lower() if ignore_case else str(value) + return item_str.startswith(val_str) + elif operator == 'endswith': + item_str = str(item_value).lower() if ignore_case else str(item_value) + val_str = str(value).lower() if ignore_case else str(value) + return item_str.endswith(val_str) + else: + # Unknown operator - default to true + return True + + return True + + +def apply_filter(items: List[Dict], where_clause: Optional[List]) -> List[Dict]: + """Apply filtering based on Syncfusion where clause.""" + if not where_clause: + return items + + filtered_items = [] + for item in items: + if evaluate_condition(item, where_clause): + filtered_items.append(item) + + return filtered_items + + +def apply_search(items: List[Dict], search_fields: Optional[Any]) -> List[Dict]: + """Apply search across specified fields.""" + if not search_fields or not items: + return items + + # Extract search key from search_fields + search_key = search_fields[0] if isinstance(search_fields, list) else search_fields + if isinstance(search_key, dict): + search_key = search_key.get('key', '') + + if not search_key: + return items + + search_key_lower = str(search_key).lower() + all_fields = list(items[0].keys()) if items else [] + filtered_items = [] + + for item in items: + for field in all_fields: + if field in item and search_key_lower in str(item[field]).lower(): + filtered_items.append(item) + break + + return filtered_items + + +def apply_sort(items: List[Dict], sorted_columns: Optional[List]) -> List[Dict]: + """Apply sorting based on column specifications.""" + if not sorted_columns: + return items + + sorted_items = items.copy() + + # Sort in reverse order of columns (last column first) for stable multi-column sort + for sort_spec in reversed(sorted_columns): + field = sort_spec.get('name') + direction = sort_spec.get('direction', 'ascending') + + sorted_items = sorted( + sorted_items, + key=lambda x: x.get(field, ''), + reverse=(direction.lower() == 'descending') + ) + + return sorted_items + + +def apply_pagination(items: List[Dict], skip: int, take: int) -> List[Dict]: + """Apply pagination to items.""" + return items[skip:skip + take] + + +@router.get('') +def get_products(gridState: Optional[str] = None): + """ + Get products with optional grid state for filtering, sorting, and pagination. + """ + if not gridState: + return {'result': products, 'count': len(products)} + + try: + state = json.loads(gridState) + except json.JSONDecodeError: + raise HTTPException(status_code=400, detail='Invalid gridState JSON') + + # Extract grid state parameters + skip = state.get('skip', 0) + take = state.get('take', 12) + where_clause = state.get('where') + sorted_columns = state.get('sorted') + search_fields = state.get('search') + + # Process data + product_list = products.copy() + + # Apply search + product_list = apply_search(product_list, search_fields) + + # Apply filters + product_list = apply_filter(product_list, where_clause) + + # Get total count after filtering + total_count = len(product_list) + + # Apply sorting + product_list = apply_sort(product_list, sorted_columns) + + # Apply pagination + paginated_products = apply_pagination(product_list, skip, take) + + return {'result': paginated_products, 'count': total_count} + + +@router.post('') +def create_product(product: Dict[str, Any]): + """Create a new product.""" + # Generate new ID + new_id = max([p.get('id', 0) for p in products], default=0) + 1 + product['id'] = new_id + + products.append(product) + save_products() + + return product + + +@router.put('/{product_id}') +def update_product(product_id: int, product: Dict[str, Any]): + """Update an existing product.""" + for index, existing_product in enumerate(products): + if existing_product.get('id') == product_id: + product['id'] = product_id + products[index] = product + save_products() + return product + + raise HTTPException(status_code=404, detail='Product not found') + + +@router.delete('/{product_id}') +def delete_product(product_id: int): + """Delete a product.""" + for index, product in enumerate(products): + if product.get('id') == product_id: + deleted_product = products.pop(index) + save_products() + return deleted_product + + raise HTTPException(status_code=404, detail='Product not found')