Introduction

An Ecommerce API Best Suited To Business-To-Consumer (B2C) Needs. Happy Consumption!

This documentation aims to provide all the information you need to work with our API.

Authenticating requests

This API is not authenticated.

Admins

Update an Admin's Details.

POST
https://mp-api.michpro.store
/api/admin/v1/users/admin/edit/{user_id}
requires authentication

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json

URL Parameters

user_id
string
required

The ID of the user.

Example:
9d547312-b4cd-4837-9e07-8233359f4d0e

Body Parameters

Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/admin/v1/users/admin/edit/9d547312-b4cd-4837-9e07-8233359f4d0e"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "firstname": "soluta",
    "lastname": "neque",
    "email": "ruthie68@example.org",
    "password": "i-3\\^Xq!\/Z)g`4"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Authentication

Register User

POST
https://mp-api.michpro.store
/api/v1/register

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json

Body Parameters

Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/register"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "firstname": "cupiditate",
    "lastname": "dolore",
    "email": "trenton.deckow@example.com",
    "password": "Nqc1E+6GUk~4%bDh"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Become a distributor

POST
https://mp-api.michpro.store
/api/v1/distributor

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json

Body Parameters

Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/distributor"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "full_name": "sed",
    "company_name": "aut",
    "email": "hahn.rosemarie@example.net",
    "phone_number": "qui",
    "description": "Est sed sunt earum temporibus laboriosam consequatur vel temporibus."
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Login User

POST
https://mp-api.michpro.store
/api/v1/login

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json

Body Parameters

Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/login"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "email": "roberts.eleanora@example.com",
    "password": "x5KjSu-1|&[s5Ye"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Verify User Email

POST
https://mp-api.michpro.store
/api/v1/verify-user

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json

Body Parameters

Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/verify-user"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "email": "johnpaul.graham@example.net",
    "token": "sint"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Login User With Google ID

POST
https://mp-api.michpro.store
/api/v1/login-with-google

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json

Body Parameters

Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/login-with-google"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "id": "magnam",
    "email": "fglover@example.net",
    "name": "earum",
    "familyName": "impedit",
    "givenName": "veniam"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Send User Token To Mail

POST
https://mp-api.michpro.store
/api/v1/send-otp

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json

Body Parameters

Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/send-otp"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "email": "schmitt.giovani@example.org"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Verify A User's Token

POST
https://mp-api.michpro.store
/api/v1/verify-otp

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json

Body Parameters

Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/verify-otp"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "email": "buddy78@example.com",
    "token": "minus"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Change User Password After Token Verification

PUT
https://mp-api.michpro.store
/api/v1/change-password

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json

Body Parameters

Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/change-password"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "email": "raphael79@example.com",
    "old_password": "quasi",
    "password": "a$F@|NfA]9&%2"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Log User Out

GET
https://mp-api.michpro.store
/api/v1/logout
requires authentication

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json
Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/logout"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
Example response:
Headers
                                                            cache-control
                                                            : no-cache, private
                                                                                                                    content-type
                                                            : application/json
                                                                                                                    access-control-allow-origin
                                                            : *
                                                         
{
    "message": "Unauthenticated."
}

Banners

Get Banner Listing.

GET
https://mp-api.michpro.store
/api/v1/banners

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json
Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/banners"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
Example response:
Headers
                                                            cache-control
                                                            : no-cache, private
                                                                                                                    content-type
                                                            : application/json
                                                                                                                    access-control-allow-origin
                                                            : *
                                                         
{
    "code": 200,
    "message": "Banners Fetched Successfully",
    "data": {
        "current_page": 1,
        "data": [
            {
                "id": "9e7645ae-0ef0-41bf-99c7-03b79aad7e27",
                "images": {
                    "desktop": "https://mp-api.michpro.store/banners/cNZyGMFAE1GO1U8s1Cv0xHmh70FugNWSCB4aHFkx.jpg",
                    "mobile": "https://mp-api.michpro.store/banners/COHg4khcXB25Nt1ZOQw5t8ejMW0mieG1piUpDdwg.jpg"
                },
                "url": "#",
                "type": "AD_BANNER_1",
                "created_at": "2025-03-18T14:28:43.000000Z",
                "updated_at": "2025-03-18T14:28:43.000000Z"
            },
            {
                "id": "9e7647c9-24c7-4873-bd6e-55f1a1da587b",
                "images": {
                    "desktop": "https://mp-api.michpro.store/banners/uk6Qjh5SBb0M03k9seiOcdWI5ksuir4hNCld06ru.jpg",
                    "mobile": "https://mp-api.michpro.store/banners/ABdWePdhdK7sjtbmkYxuUva5Insor8Rl4WLw38Ar.jpg"
                },
                "url": "#",
                "type": "HERO_BANNER",
                "created_at": "2025-03-18T14:34:36.000000Z",
                "updated_at": "2025-03-18T14:43:15.000000Z"
            },
            {
                "id": "9e764967-2c63-40f6-9419-55079f8c213b",
                "images": {
                    "desktop": "https://mp-api.michpro.store/banners/vmODqLzCOZXJlTnkI2fHGz7KForEBHXqScsQsppR.jpg",
                    "mobile": "https://mp-api.michpro.store/banners/PLbOq0ZrPfyDVWBtCCRqdSb3vmF2nzLGkfwpf9nk.jpg"
                },
                "url": "#",
                "type": "HERO_BANNER",
                "created_at": "2025-03-18T14:39:08.000000Z",
                "updated_at": "2025-03-18T14:39:08.000000Z"
            },
            {
                "id": "9e764a7b-7a6f-4028-aa61-9104a0c3ba7d",
                "images": {
                    "desktop": "https://mp-api.michpro.store/banners/6vxHMCSrlmCvtE43KixksHPZaf5ql8wYCwrbtEz3.jpg",
                    "mobile": "https://mp-api.michpro.store/banners/lG2JHZOdqTBdybgw8b0aaDfnohcCO1znrppfJQyH.jpg"
                },
                "url": "#",
                "type": "HERO_BANNER",
                "created_at": "2025-03-18T14:42:09.000000Z",
                "updated_at": "2025-03-18T14:42:09.000000Z"
            },
            {
                "id": "9e764b56-592f-48d1-98bd-3e2c977c3c4d",
                "images": {
                    "desktop": "https://mp-api.michpro.store/banners/bTuIlhYzrS7ARCaCc4RGsa9JZpiU1NK65jw0Ekm4.jpg",
                    "mobile": "https://mp-api.michpro.store/banners/hVrrdPxS11ALEynHfCXAWppysSrHK9jMOWEU4BY1.jpg"
                },
                "url": "#",
                "type": "AD_BANNER_2",
                "created_at": "2025-03-18T14:44:32.000000Z",
                "updated_at": "2025-03-18T14:44:32.000000Z"
            },
            {
                "id": "9e764ca9-8bdd-4917-a02a-27ee3e893bd8",
                "images": {
                    "desktop": "https://mp-api.michpro.store/banners/ifUZycrZoZd9oSLZM1NeOPuL8Vh0QqpqIUT6Ll3v.jpg",
                    "mobile": "https://mp-api.michpro.store/banners/f9SONK17o2Zo83qSm6PVfjXMBzCuWZyGbc2wtST1.jpg"
                },
                "url": "https://michpro.store/main/view/mich-pro-bl-49gt",
                "type": "HERO_BANNER",
                "created_at": "2025-03-18T14:48:15.000000Z",
                "updated_at": "2025-03-18T14:48:15.000000Z"
            },
            {
                "id": "9e764dbe-34c0-4513-b6f9-e6306f20f2b5",
                "images": {
                    "desktop": "https://mp-api.michpro.store/banners/7MDlVBov1YgJc86wBFx9HYdk1oSvacK4dHtBngwF.jpg",
                    "mobile": "https://mp-api.michpro.store/banners/az4LK6Wd8FSgR4RuYw22j7CjaJ5YshKQdPmOJ35H.jpg"
                },
                "url": "https://michpro.store/main/view/michpro-10000mah-powerbank-black",
                "type": "HERO_BANNER",
                "created_at": "2025-03-18T14:51:16.000000Z",
                "updated_at": "2025-03-18T14:51:16.000000Z"
            },
            {
                "id": "9e764ea2-3d19-4c60-a4f8-f74ee48c425b",
                "images": {
                    "desktop": "https://mp-api.michpro.store/banners/yV4Psk4okGEvChKr0iF7K14C48aP51CWWhzg0NQs.jpg",
                    "mobile": "https://mp-api.michpro.store/banners/LNUtArRiAPVPBXPf4ckjNyYzHLZpn06zkX5z7VAE.jpg"
                },
                "url": "#",
                "type": "HERO_BANNER",
                "created_at": "2025-03-18T14:53:45.000000Z",
                "updated_at": "2025-03-18T14:53:45.000000Z"
            },
            {
                "id": "9e764f3e-cd3e-4645-b012-7ac03ef57eaf",
                "images": {
                    "desktop": "https://mp-api.michpro.store/banners/p6xbMa4eYvPpLFz7vptdZ1jlYrQSV56ra8lcmt59.jpg",
                    "mobile": "https://mp-api.michpro.store/banners/dolEQydEGNQWAZicFMTJ9DgD0ZHhxpnFCfschwV0.jpg"
                },
                "url": "#",
                "type": "HERO_BANNER",
                "created_at": "2025-03-18T14:55:28.000000Z",
                "updated_at": "2025-03-18T14:55:28.000000Z"
            },
            {
                "id": "9e764fe6-57d5-410d-905f-3e89cb07fb91",
                "images": {
                    "desktop": "https://mp-api.michpro.store/banners/lPUvyAcvPqoAaXdPqP4EcAKUJa2bv52QmpoFQb1a.jpg",
                    "mobile": "https://mp-api.michpro.store/banners/qRfOkFJeZO2m02ZR6pR6O4x39Xe91VrwALfK9RJk.jpg"
                },
                "url": "#",
                "type": "HERO_BANNER",
                "created_at": "2025-03-18T14:57:18.000000Z",
                "updated_at": "2025-03-18T14:57:18.000000Z"
            },
            {
                "id": "9e765144-9829-449b-8d7a-a26952008b00",
                "images": {
                    "desktop": "https://mp-api.michpro.store/banners/viBx23rC64smJUnaWJgxQMmPBRjdN2dvZ55WoFVd.jpg",
                    "mobile": "https://mp-api.michpro.store/banners/9HlIdAGzNPVb78PdKiDd9bBt0MLS6N7RXoRbX0Sn.jpg"
                },
                "url": "#",
                "type": "HERO_BANNER",
                "created_at": "2025-03-18T15:01:07.000000Z",
                "updated_at": "2025-03-18T15:01:07.000000Z"
            }
        ],
        "first_page_url": "https://mp-api.michpro.store/api/v1/banners?page=1",
        "from": 1,
        "last_page": 1,
        "last_page_url": "https://mp-api.michpro.store/api/v1/banners?page=1",
        "links": [
            {
                "url": null,
                "label": "« Previous",
                "active": false
            },
            {
                "url": "https://mp-api.michpro.store/api/v1/banners?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next »",
                "active": false
            }
        ],
        "next_page_url": null,
        "path": "https://mp-api.michpro.store/api/v1/banners",
        "per_page": 50,
        "prev_page_url": null,
        "to": 11,
        "total": 11
    }
}

View A Banner's Details.

GET
https://mp-api.michpro.store
/api/v1/banners/{banner_id}

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json

URL Parameters

banner_id
string
required

The ID of the banner.

Example:
9e7645ae-0ef0-41bf-99c7-03b79aad7e27
Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/banners/9e7645ae-0ef0-41bf-99c7-03b79aad7e27"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
Example response:
Headers
                                                            cache-control
                                                            : no-cache, private
                                                                                                                    content-type
                                                            : application/json
                                                                                                                    access-control-allow-origin
                                                            : *
                                                         
{
    "code": 200,
    "message": "Banner Detail Fetched Successfully",
    "data": {
        "id": "9e7645ae-0ef0-41bf-99c7-03b79aad7e27",
        "images": {
            "desktop": "https://mp-api.michpro.store/banners/cNZyGMFAE1GO1U8s1Cv0xHmh70FugNWSCB4aHFkx.jpg",
            "mobile": "https://mp-api.michpro.store/banners/COHg4khcXB25Nt1ZOQw5t8ejMW0mieG1piUpDdwg.jpg"
        },
        "url": "#",
        "type": "AD_BANNER_1",
        "created_at": "2025-03-18T14:28:43.000000Z",
        "updated_at": "2025-03-18T14:28:43.000000Z"
    }
}

Filter Banners.

GET
https://mp-api.michpro.store
/api/v1/banners/item/filter

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json
Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/banners/item/filter"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
Example response:
Headers
                                                            cache-control
                                                            : no-cache, private
                                                                                                                    content-type
                                                            : application/json
                                                                                                                    access-control-allow-origin
                                                            : *
                                                         
{
    "code": 200,
    "message": "Banners Fetched Successfully",
    "data": []
}

Create New Banner.

POST
https://mp-api.michpro.store
/api/admin/v1/banners
requires authentication

Headers

Content-Type
Example:
multipart/form-data
Accept
Example:
application/json

Body Parameters

Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/admin/v1/banners"
);

const headers = {
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
};

const body = new FormData();
body.append('url', 'http://schmidt.com/');
body.append('type', 'AD_BANNER_2');
body.append('desktop', document.querySelector('input[name="desktop"]').files[0]);
body.append('mobile', document.querySelector('input[name="mobile"]').files[0]);

fetch(url, {
    method: "POST",
    headers,
    body,
}).then(response => response.json());

Update A Banner's Details.

POST
https://mp-api.michpro.store
/api/admin/v1/banners/edit/{banner_id}
requires authentication

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json

URL Parameters

banner_id
string
required

The ID of the banner.

Example:
9e7645ae-0ef0-41bf-99c7-03b79aad7e27
Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/admin/v1/banners/edit/9e7645ae-0ef0-41bf-99c7-03b79aad7e27"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Delete A Banner.

DELETE
https://mp-api.michpro.store
/api/admin/v1/banners/{banner_id}
requires authentication

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json

URL Parameters

banner_id
string
required

The ID of the banner.

Example:
9e7645ae-0ef0-41bf-99c7-03b79aad7e27
Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/admin/v1/banners/9e7645ae-0ef0-41bf-99c7-03b79aad7e27"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Categories

Get Category Listing.

GET
https://mp-api.michpro.store
/api/v1/categories

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json
Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/categories"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
Example response:
Headers
                                                            cache-control
                                                            : no-cache, private
                                                                                                                    content-type
                                                            : application/json
                                                                                                                    access-control-allow-origin
                                                            : *
                                                         
{
    "code": 200,
    "message": "Categories Fetched Successfully",
    "data": {
        "current_page": 1,
        "data": [
            {
                "id": 10,
                "name": "External Phone Battery",
                "image": "https://mp-api.michpro.store/categories/13yW2LcOeH5hHB7Qw3HYfEbl6T2lzOlPn0zQGsUr.jpg",
                "description": "High-end external mobile phone battery, high capacity, long standby.",
                "slug": "batteries",
                "created_at": "2024-09-02T09:20:53.000000Z",
                "updated_at": "2024-11-21T06:15:29.000000Z"
            },
            {
                "id": 13,
                "name": "Built-in Phone Battery",
                "image": "https://mp-api.michpro.store/categories/NifRfsL3egxfmE7FF0RTpghP4SKAaIOhlyQuZzXR.jpg",
                "description": "Ultra-high capacity series, give you the longest time to enjoy standby, MichPro exclusive patented technology, longer battery life, temperature control.",
                "slug": "built-in-phone-battery",
                "created_at": "2024-11-21T06:19:46.000000Z",
                "updated_at": "2024-11-21T06:19:46.000000Z"
            },
            {
                "id": 14,
                "name": "Power Bank",
                "image": "https://mp-api.michpro.store/categories/ENBhPQai6zo44STu7OtRICltbF4IGPsM1I0RucB3.jpg",
                "description": "High-end mobile power bank",
                "slug": "power-bank",
                "created_at": "2024-11-21T07:41:20.000000Z",
                "updated_at": "2024-12-14T16:57:22.000000Z"
            },
            {
                "id": 15,
                "name": "Charger & Cable",
                "image": "https://mp-api.michpro.store/categories/fW0fuznPGkFKHDSqea8aBbiURtSn3jzKZ4O1iuu7.jpg",
                "description": "Fast charging",
                "slug": "charger-cable",
                "created_at": "2024-11-24T16:21:24.000000Z",
                "updated_at": "2025-03-19T15:58:20.000000Z"
            },
            {
                "id": 16,
                "name": "Earpords",
                "image": "https://mp-api.michpro.store/categories/LpvSz5lmLb8UqEYMTQ7khYYqzlLb2hcpJ1BEE1ou.jpg",
                "description": "Afo-beat",
                "slug": "earpords",
                "created_at": "2025-04-19T16:18:02.000000Z",
                "updated_at": "2025-04-19T16:18:02.000000Z"
            }
        ],
        "first_page_url": "https://mp-api.michpro.store/api/v1/categories?page=1",
        "from": 1,
        "last_page": 1,
        "last_page_url": "https://mp-api.michpro.store/api/v1/categories?page=1",
        "links": [
            {
                "url": null,
                "label": "« Previous",
                "active": false
            },
            {
                "url": "https://mp-api.michpro.store/api/v1/categories?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next »",
                "active": false
            }
        ],
        "next_page_url": null,
        "path": "https://mp-api.michpro.store/api/v1/categories",
        "per_page": 50,
        "prev_page_url": null,
        "to": 5,
        "total": 5
    }
}
GET
https://mp-api.michpro.store
/api/v1/categories/search

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json
Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/categories/search"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
Example response:

Get Category Details.

GET
https://mp-api.michpro.store
/api/v1/categories/{category_slug}

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json

URL Parameters

category_slug
string
required

The slug of the category.

Example:
batteries
Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/categories/batteries"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
Example response:
Headers
                                                            cache-control
                                                            : no-cache, private
                                                                                                                    content-type
                                                            : application/json
                                                                                                                    access-control-allow-origin
                                                            : *
                                                         
{
    "code": 200,
    "message": "Category Detail Fetched Successfully",
    "data": {
        "id": 10,
        "name": "External Phone Battery",
        "image": "https://mp-api.michpro.store/categories/13yW2LcOeH5hHB7Qw3HYfEbl6T2lzOlPn0zQGsUr.jpg",
        "description": "High-end external mobile phone battery, high capacity, long standby.",
        "slug": "batteries",
        "created_at": "2024-09-02T09:20:53.000000Z",
        "updated_at": "2024-11-21T06:15:29.000000Z"
    }
}

Create A New Category.

POST
https://mp-api.michpro.store
/api/admin/v1/categories
requires authentication

Headers

Content-Type
Example:
multipart/form-data
Accept
Example:
application/json

Body Parameters

Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/admin/v1/categories"
);

const headers = {
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
};

const body = new FormData();
body.append('name', 'aliquid');
body.append('description', 'Molestiae accusantium possimus eos iure ut laboriosam.');
body.append('image', document.querySelector('input[name="image"]').files[0]);

fetch(url, {
    method: "POST",
    headers,
    body,
}).then(response => response.json());

Update A Category's Details.

POST
https://mp-api.michpro.store
/api/admin/v1/categories/edit/{category_slug}
requires authentication

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json

URL Parameters

category_slug
string
required

The slug of the category.

Example:
batteries
Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/admin/v1/categories/edit/batteries"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Delete a Category.

DELETE
https://mp-api.michpro.store
/api/admin/v1/categories/{category_slug}
requires authentication

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json

URL Parameters

category_slug
string
required

The slug of the category.

Example:
batteries
Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/admin/v1/categories/batteries"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Customers

Update a Customer's Details.

POST
https://mp-api.michpro.store
/api/v1/users/edit/{user_id}
requires authentication

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json

URL Parameters

user_id
string
required

The ID of the user.

Example:
9d547312-b4cd-4837-9e07-8233359f4d0e

Body Parameters

Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/users/edit/9d547312-b4cd-4837-9e07-8233359f4d0e"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "firstname": "reprehenderit",
    "lastname": "ab",
    "email": "lubowitz.jamel@example.net",
    "password": ":^X4u@M0n-m}g>ey\"A"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Orders

Get Orders Listing [User].

GET
https://mp-api.michpro.store
/api/v1/orders
requires authentication

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json
Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/orders"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
Example response:
Headers
                                                            cache-control
                                                            : no-cache, private
                                                                                                                    content-type
                                                            : application/json
                                                                                                                    access-control-allow-origin
                                                            : *
                                                         
{
    "message": "Unauthenticated."
}

Get A Single Order.

GET
https://mp-api.michpro.store
/api/v1/orders/{order_id}
requires authentication

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json

URL Parameters

order_id
string
required

The ID of the order.

Example:
laborum
Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/orders/laborum"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
Example response:
Headers
                                                            cache-control
                                                            : no-cache, private
                                                                                                                    content-type
                                                            : application/json
                                                                                                                    access-control-allow-origin
                                                            : *
                                                         
{
    "message": "Unauthenticated."
}

Create New Order.

POST
https://mp-api.michpro.store
/api/v1/orders
requires authentication

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json

Body Parameters

Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/orders"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "order_items": [
        {
            "product_id": "laudantium",
            "quantity": 20868997.8717000000178813934326171875
        }
    ],
    "gateway": "est"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Update Existing Order [User].

PUT
https://mp-api.michpro.store
/api/v1/orders/{order_id}
requires authentication

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json

URL Parameters

order_id
string
required

The ID of the order.

Example:
qui

Body Parameters

Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/orders/qui"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "gateway": "flutterwave",
    "status": "awaiting_payment",
    "tracking_number": "voluptas",
    "tracking_method": "facere",
    "transaction_status": "pending",
    "order_items": [
        {
            "quantity": 4
        }
    ]
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Filter Orders By Status.

GET
https://mp-api.michpro.store
/api/v1/orders/filter/status/{status}
requires authentication

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json

URL Parameters

status
string
required

The status.

Example:
et
Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/orders/filter/status/et"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
Example response:
Headers
                                                            cache-control
                                                            : no-cache, private
                                                                                                                    content-type
                                                            : application/json
                                                                                                                    access-control-allow-origin
                                                            : *
                                                         
{
    "message": "Unauthenticated."
}
GET
https://mp-api.michpro.store
/api/v1/orders/filter/search
requires authentication

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json

Body Parameters

Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/orders/filter/search"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "search": "woolsxqoqzpnoxbla",
    "status": "awaiting_payment",
    "gateway": "opay",
    "start_date": "2025-05-01T11:40:58",
    "end_date": "2027-10-20",
    "payment_status": "pending",
    "min_amount": 62,
    "max_amount": 555.39499999999998181010596454143524169921875,
    "reference": "lq",
    "per_page": 16,
    "sort_by": "total_amount",
    "sort_direction": "desc"
};

fetch(url, {
    method: "GET",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
Example response:

Get Orders Listing [Admin].

GET
https://mp-api.michpro.store
/api/admin/v1/orders
requires authentication

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json
Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/admin/v1/orders"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
Example response:
Headers
                                                            cache-control
                                                            : no-cache, private
                                                                                                                    content-type
                                                            : application/json
                                                                                                                    access-control-allow-origin
                                                            : *
                                                         
{
    "message": "Unauthenticated."
}

Products

Get Product Listing.

GET
https://mp-api.michpro.store
/api/v1/products

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json
Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/products"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
Example response:
Headers
                                                            cache-control
                                                            : no-cache, private
                                                                                                                    content-type
                                                            : application/json
                                                                                                                    access-control-allow-origin
                                                            : *
                                                         
{
    "code": 200,
    "message": "Products Fetched Successfully",
    "data": {
        "current_page": 1,
        "data": [
            {
                "id": 134,
                "category_id": 10,
                "name": "Mi Battery BM-45",
                "slug": "mi-battery-bm-45",
                "images": [
                    "https://mp-api.michpro.store/products/5963b8094f679551004cd7d10f1de0f0_1745502974.png",
                    "https://mp-api.michpro.store/products/600b9200e1f8a8683c332558024bdcef_1745502974.png"
                ],
                "description": "<p>Mi Battery BM-45</p>",
                "specifications": "{\"Model\":\"BM-45 Mi\"}",
                "colors": null,
                "price": "3500.00",
                "featured": 0,
                "top_seller": 0,
                "rating": "0.0",
                "discount": "50.00",
                "shipping_fee": "1000.00",
                "quantity": 1000,
                "created_at": "2025-04-24T13:56:14.000000Z",
                "updated_at": "2025-04-24T13:56:14.000000Z",
                "category": {
                    "id": 10,
                    "name": "External Phone Battery",
                    "image": "https://mp-api.michpro.store/categories/13yW2LcOeH5hHB7Qw3HYfEbl6T2lzOlPn0zQGsUr.jpg",
                    "description": "High-end external mobile phone battery, high capacity, long standby.",
                    "slug": "batteries",
                    "created_at": "2024-09-02T09:20:53.000000Z",
                    "updated_at": "2024-11-21T06:15:29.000000Z"
                }
            },
            {
                "id": 133,
                "category_id": 15,
                "name": "Mp 201V Charger: True Power, Dual Fast Charging",
                "slug": "mp-201v-charger-true-power-dual-fast-charging",
                "images": [
                    "https://mp-api.michpro.store/products/bf44e139c4889a6f6337e947296c3243_1745133554.jpg",
                    "https://mp-api.michpro.store/products/ecc35cc4b7ed6afeb570ba54086c69d7_1745133554.jpg",
                    "https://mp-api.michpro.store/products/c6705cef4875a30fdea7ef848812b750_1745133554.jpg",
                    "https://mp-api.michpro.store/products/0169e29f10769c00fefe67a4857a6822_1745133554.jpg"
                ],
                "description": "<p class=\"p\"><strong><u>True Power, A Trustworthy Choice</u></strong></p>\r\n<p class=\"p\">In the current market, many chargers have false power markings. The power stated on the packaging is far from the actual one. However, MICHPRO has always adhered to integrity. The power marked on the Mp 201V charger is the real power. What you see is what you get. You can buy it with complete peace of mind.</p>\r\n<p class=\"p\"><strong><u>2.4A Dual USB Ports, Double Fast Charging</u></strong></p>\r\n<p class=\"p\">The Mp 201V is equipped with two USB charging ports, both supporting 2.4A fast charging. Whether you want to charge your phone and tablet simultaneously or power up other devices, it can achieve fast charging efficiently, meeting your multi device charging needs.</p>\r\n<p class=\"p\"><strong><u>Built in Night Light, Technological and Practical</u></strong></p>\r\n<p class=\"p\">This charger is uniquely equipped with a night light, showing a sense of technology. At night when charging, it can serve as a night light, providing dim lighting for your night activities, preventing you from bumping in the dark and adding convenience to your life.</p>\r\n<p class=\"p\"><strong><u>Charge Two Devices Simultaneously without Losing Speed</u></strong></p>\r\n<p class=\"p\">Even when connecting two different devices for charging at the same time, the Mp 201V can intelligently distribute the current to ensure that each device is charged at a speed of 2.4A. The charging efficiency remains unaffected, allowing your devices to quickly return to a full charged state.</p>\r\n<p class=\"p\"><strong><u>High end Chip, 6 Fold Protection</u></strong></p>\r\n<p class=\"p\">It uses a high end customized chip with 6 fold protection functions. It can intelligently recognize the device's needs and achieve precise charging. When the device is fully charged, it will automatically cut off the power to prevent over charging from damaging the battery, providing all round protection for your device.</p>\r\n<p class=\"p\"><strong><u>High quality Materials, British Design</u></strong></p>\r\n<p class=\"p\">Made of high quality materials, it ensures the charger's durability and stability. It is carefully designed by a British designer, with a fashionable and unique appearance. It is not only a practical charging tool but also a home item that enhances the style.</p>\r\n<p class=\"p\"><strong><u>&nbsp;</u></strong></p>\r\n<p class=\"p\"><strong><u>&nbsp;</u></strong></p>\r\n<p class=\"p\"><strong><u>Product Parameters</u></strong></p>\r\n<p class=\"p\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->Brand: MICHPRO</p>\r\n<p class=\"p\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->Model: Mp 201V</p>\r\n<p class=\"p\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->Power: 2.4A Dual USB&nbsp;Ports</p>\r\n<p class=\"p\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->Number of Charging Ports: 2</p>\r\n<p class=\"p\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->Cable: Usb to Micro</p>\r\n<p class=\"p\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->Features: True power, 2.4A fast charging on dual ports, built in night light, no speed reduction when charging two devices simultaneously, 6 fold protection with high end customized chip, high quality materials and British design</p>\r\n<p class=\"p\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->Standards: US, EU, UK standards</p>\r\n<p class=\"p\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->Origin: Hong Kong</p>\r\n<p class=\"p\">&nbsp;</p>\r\n<p class=\"p\"><strong>Product Package Contents</strong></p>\r\n<p class=\"p\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->Charger x1</p>\r\n<p class=\"p\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->Instruction Manual x1</p>\r\n<p class=\"p\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->Fast Charging U<span style=\"font-family: Calibri;\">sb</span> to Micro Cable x1</p>\r\n<p class=\"p\">&nbsp;</p>\r\n<p class=\"p\"><strong>&nbsp;Warranty</strong></p>\r\n<p class=\"p\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->One year warranty for MichPro product</p>\r\n<p class=\"p\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->Customer comes first.</p>\r\n<p class=\"p\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->Our confidence in product quality.</p>\r\n<p class=\"p\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->Your peace of mind in using.</p>\r\n<p class=\"p\">&nbsp;</p>\r\n<p class=\"MsoNormal\">&nbsp;</p>",
                "specifications": "{\"Model\":\"Mp-201v\",\"Port\":\"Daul-A port\",\"Cable\":\"U-Micro\"}",
                "colors": null,
                "price": "10000.00",
                "featured": 0,
                "top_seller": 0,
                "rating": "0.0",
                "discount": "8000.00",
                "shipping_fee": "150.00",
                "quantity": 100,
                "created_at": "2025-04-20T07:19:14.000000Z",
                "updated_at": "2025-04-20T07:19:14.000000Z",
                "category": {
                    "id": 15,
                    "name": "Charger & Cable",
                    "image": "https://mp-api.michpro.store/categories/fW0fuznPGkFKHDSqea8aBbiURtSn3jzKZ4O1iuu7.jpg",
                    "description": "Fast charging",
                    "slug": "charger-cable",
                    "created_at": "2024-11-24T16:21:24.000000Z",
                    "updated_at": "2025-03-19T15:58:20.000000Z"
                }
            },
            {
                "id": 132,
                "category_id": 15,
                "name": "MichPro MP810L Super Fast Charger to the Rescue!",
                "slug": "michpro-mp810l-super-fast-charger-to-the-rescue",
                "images": [
                    "https://mp-api.michpro.store/products/18845ea7021de54a3870d23aa2556683_1745126808.jpg",
                    "https://mp-api.michpro.store/products/5f33f866e5a957b75bb2d718bea08f7c_1745126808.jpg",
                    "https://mp-api.michpro.store/products/e638496d5e08fada57a15dc9190567e7_1745126808.jpg",
                    "https://mp-api.michpro.store/products/ef9c43386b1100911ee25338b0c54ff8_1745126808.jpg",
                    "https://mp-api.michpro.store/products/0ef24f71432a3713a74dc19a3184707c_1745126808.jpg",
                    "https://mp-api.michpro.store/products/c4398c52c63c4310a12dc8d6c4efe238_1745126808.jpg",
                    "https://mp-api.michpro.store/products/a8ef5687ba0539873dc09910011d4642_1745126808.jpg",
                    "https://mp-api.michpro.store/products/65e47604d5157c052b651843250d49f5_1745126808.jpg"
                ],
                "description": "<div data-version=\"3.0.0\" data-hash=\"0350659703df4174443b96e4f08e5478\">&nbsp;</div>\r\n<div class=\"document\">\r\n<div class=\"section\">\r\n<p class=\"paragraph text-align-type-left\"><strong><span data-font-family=\"default\">Tired of Slow Charging? MichPro MP810L Super Fast Charger to the Rescue!</span></strong></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">In this 5G era, speed and efficiency are everything. How can your phone's charging speed be left behind? MichPro proudly presents the MP810L Super Fast Charger, ready to power up your devices and turn the long - wait charging into a thing of the past!</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"text-decoration: underline;\"><strong><span data-font-family=\"default\">40W Real Power, No False Claims</span></strong></span></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">Many chargers in the market love to boast about their power but fail to deliver in reality. However, the MichPro MP810L is different! It packs a real 40W high - power punch. From the packaging to actual use, the power remains consistent. We adhere to the principle of integrity and never make false advertisements. Every cent you spend is worth it!</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left\"><strong><span style=\"text-decoration: underline;\"><span data-font-family=\"default\">Dual Ports, Meeting All Your Needs</span></span></strong></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">One USB port supporting 25W charging and one super fast - charging port supporting 40W. These two ports are like your two reliable assistants. Whether you want to quickly recharge your phone or top up your tablet, it can handle it with ease. Truly a \"multi - purpose charger\" that meets the charging needs of different devices for the whole family.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"text-decoration: underline;\"><strong><span data-font-family=\"default\">65% Charge in 30 Minutes, 6 Times Faster</span></strong></span></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">Traditional chargers are as slow as snails, while the MP810L is as fast as lightning! In just 30 minutes, it can charge your phone to 65% of its battery capacity. Its charging speed is 6 times that of ordinary chargers. While you're having breakfast or scrolling through short videos, your phone's battery will be quickly replenished, keeping you connected at all times and ensuring you never miss any important information.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"text-decoration: underline;\"><strong><span data-font-family=\"default\">Advanced Protocols, Wide Compatibility</span></strong></span></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">Supporting PD4.0 and QC3.0 fast - charging protocols means it can seamlessly connect with many devices in the market that support fast - charging. Whether you're using an Apple, Android, or other brand of phone or tablet, the MP810L can be your all - in - one charging buddy, providing fast and stable power support for your devices.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left\"><strong><span style=\"text-decoration: underline;\"><span data-font-family=\"default\">Exclusive iFast Chip, Safe and Smart</span></span></strong></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">MichPro's exclusive iFast chip technology is like giving the charger a \"smart brain\". It enables the charger to achieve full - fledged fast charging without overheating, effectively protecting the device's battery and extending its service life. What's more, when the device is fully charged, it will automatically cut off the power, avoiding potential safety hazards caused by overcharging and safeguarding your devices and safety.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"text-decoration: underline;\"><strong><span data-font-family=\"default\">Novel Accessories, Convenient on the Go</span></strong></span></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">The product comes with a stylish Apple PD data cable, which is both fashionable and practical. Moreover, the charger is compact and lightweight, making it easy to carry. Whether you're on a business trip, traveling, or just going out daily, you can simply toss it into your bag and recharge your devices anytime, anywhere. Say goodbye to \"battery anxiety\" during your journey!</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"text-decoration: underline;\"><strong><span data-font-family=\"default\">High - End Design, Irresistible Charm</span></strong></span></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">Made of high - end materials and featuring a unique design crafted by a British designer, the MP810L is not just a charger but also a technological masterpiece. Placed on the table, it instantly elevates the style, making your charging process full of texture. Among the numerous ordinary chargers, it is definitely the most eye - catching one!</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"text-decoration: underline;\"><strong><span data-font-family=\"default\">Package Contents</span></strong></span></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">- Charger x1</span></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">- Instruction Manual x1</span></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">- Fast - Charging Data Cable (Type-C to Iphone) x1</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left\"><strong><span style=\"text-decoration: underline;\"><span data-font-family=\"default\">Product Parameters and Features</span></span></strong></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">- **Model**: MP810L</span></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">- **Brand**: MichPro</span></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">- **Power**: 40W</span></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">- **Charging Ports**: Dual (25W USB, 40W Type-C Fast Charge)</span></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">- **Fast - Charging Protocols**: PD4.0, QC3.0</span></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">- **Chip Technology**: Exclusive iFast</span></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">- **Safety Feature**: Automatic Power - Off</span></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">- **Design Highlights**: High - End Material, Unique Design</span></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">- **Convenience**: Easy to Carry </span></p>\r\n</div>\r\n</div>",
                "specifications": "{\"Model\":\"Mp-810 Iphone\",\"Power\":\"40W\",\"Port\":\"Daul\"}",
                "colors": null,
                "price": "17000.00",
                "featured": 0,
                "top_seller": 0,
                "rating": "0.0",
                "discount": "7000.00",
                "shipping_fee": "1500.00",
                "quantity": 100,
                "created_at": "2025-04-20T05:26:48.000000Z",
                "updated_at": "2025-04-20T05:27:36.000000Z",
                "category": {
                    "id": 15,
                    "name": "Charger & Cable",
                    "image": "https://mp-api.michpro.store/categories/fW0fuznPGkFKHDSqea8aBbiURtSn3jzKZ4O1iuu7.jpg",
                    "description": "Fast charging",
                    "slug": "charger-cable",
                    "created_at": "2024-11-24T16:21:24.000000Z",
                    "updated_at": "2025-03-19T15:58:20.000000Z"
                }
            },
            {
                "id": 131,
                "category_id": 15,
                "name": "Type-C 33W Super Fast Charging, Instantly Revive Your Phone!",
                "slug": "type-c-33w-super-fast-charging-instantly-revive-your-phone",
                "images": [
                    "https://mp-api.michpro.store/products/868b8f7f09e72073f5a92116e9a24c9e_1745084893.jpg",
                    "https://mp-api.michpro.store/products/47977aa8ebf14146415270bd06c4b494_1745084893.jpg",
                    "https://mp-api.michpro.store/products/a3cea1dddac362811955f47c99cfe836_1745084893.jpg",
                    "https://mp-api.michpro.store/products/7f170099fc2f64972544d8a958b97841_1745084893.jpg",
                    "https://mp-api.michpro.store/products/b5c9c24e2b0603e4f2cec7623952912e_1745084893.jpg",
                    "https://mp-api.michpro.store/products/74842a3bc895116e8fe7219c65652236_1745084893.jpg",
                    "https://mp-api.michpro.store/products/f8949be43dfa8cc0d17f11bea0c267e6_1745084893.jpg",
                    "https://mp-api.michpro.store/products/d943db131be6be5554275668606ac15e_1745084893.jpg"
                ],
                "description": "<p class=\"MsoNormal\">In this era where every second counts, a dying phone battery can be a real headache. Fear not, for the MichPro MP420C Super Fast Charger is here to deliver a lightning - fast charging experience for your devices, allowing you to bid farewell to long waiting times!</p>\r\n<p class=\"MsoNormal\">&nbsp;</p>\r\n<p class=\"MsoNormal\"><strong>33W Real Power, No False Claims</strong></p>\r\n<p class=\"MsoNormal\">Many chargers boast large power ratings on their packaging but fail to deliver in reality. However, the MichPro MP420L is different. It packs a genuine 33W high - power output. We've always adhered to the principle of integrity and never engage in false advertising. Every charge will let you feel the strong power output, giving you a full sense of security.</p>\r\n<p class=\"MsoNormal\">&nbsp;</p>\r\n<p class=\"MsoNormal\"><strong>Charge Up to 65% in 30 Minutes, Astonishing Speed</strong></p>\r\n<p class=\"MsoNormal\">Time is precious and can't be wasted. The MichPro MP420C Super Fast Charger understands this well. In just 30 minutes, it can charge your phone up to 65% of its battery capacity. Whether you're in a hurry to leave in the morning or taking a short break during work, the rapid charging gets you back in action quickly, so you won't miss any important moments.</p>\r\n<p class=\"MsoNormal\">&nbsp;</p>\r\n<p class=\"MsoNormal\"><strong>Exclusive iFast Chip, Safe and Smart</strong></p>\r\n<p class=\"MsoNormal\">The self - developed exclusive iFast chip technology by MichPro is the core highlight of this charger. It enables the charging process to maintain full speed while effectively controlling the temperature, preventing the charger from overheating. Moreover, once your device is fully charged, the charger will automatically cut off the power to avoid over - charging and protect your device's battery. It offers all - around safety for your device.</p>\r\n<p class=\"MsoNormal\">&nbsp;</p>\r\n<p class=\"MsoNormal\"><strong>Novel Data Cable, More Stable Charging</strong></p>\r\n<p class=\"MsoNormal\">The package comes with Type - C to Type-C fast cable. It not only has a novel and stylish design but also ensures a stable current transmission, making the charging process smoother. With it, you don't have to worry about poor contact or slow charging.</p>\r\n<p class=\"MsoNormal\">&nbsp;</p>\r\n<p class=\"MsoNormal\"><strong>Compact and Portable, Charge Anytime, Anywhere</strong></p>\r\n<p class=\"MsoNormal\">It's small in size and light in weight, making it easy for you to carry it anywhere. Whether you're on a business trip, commuting to work, or out for a trip, just pop it into your bag or pocket, and you can recharge your device at any time, keeping you connected all the time.</p>\r\n<p class=\"MsoNormal\">&nbsp;</p>\r\n<p class=\"MsoNormal\"><strong>Package Contents</strong></p>\r\n<p class=\"MsoNormal\">1. 1 x Super Fast Charger</p>\r\n<p class=\"MsoNormal\">2. 1 x User Manual</p>\r\n<p class=\"MsoNormal\">3. 1 x Type - C to Type-C Fast Charging Cable</p>\r\n<p class=\"MsoNormal\">&nbsp;</p>\r\n<p class=\"MsoNormal\"><strong>Product Details</strong></p>\r\n<p class=\"MsoNormal\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->- **Brand**: MichPro</p>\r\n<p class=\"MsoNormal\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->- **Model**: MP420C</p>\r\n<p class=\"MsoNormal\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->- **Power**: 33W</p>\r\n<p class=\"MsoNormal\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->- **Chip Technology**: Exclusive iFast Chip</p>\r\n<p class=\"MsoNormal\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->- **Charging Speed**: Charge up to 65% in 30 minutes</p>\r\n<p class=\"MsoNormal\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->- **Safety Protection**: Auto - cut - off, Anti - overcharging</p>\r\n<p class=\"MsoNormal\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->- **Heat Dissipation Performance**: No overheating during charging</p>\r\n<p class=\"MsoNormal\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->- **Portability**: Compact and lightweight, easy to carry</p>\r\n<p class=\"MsoNormal\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->- **Data Cable**:Type - C to Type-C, novel design</p>\r\n<p class=\"MsoNormal\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->- **Standards**: US, EU, UK standards</p>\r\n<p class=\"MsoNormal\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->- **Origin**: Hong Kong</p>\r\n<p class=\"MsoNormal\">&nbsp;</p>\r\n<p class=\"MsoNormal\"><strong>Don't hesitate any longer! Get the MichPro MP420L Super Fast Charger now and keep your device fully charged at all times! </strong></p>",
                "specifications": "{\"Model:\":\"Mp-420C\",\"Power:\":\"33W\",\"Cable\":\"C-C\"}",
                "colors": null,
                "price": "15000.00",
                "featured": 0,
                "top_seller": 1,
                "rating": "0.0",
                "discount": "4000.00",
                "shipping_fee": "1500.00",
                "quantity": 100,
                "created_at": "2025-04-19T17:48:13.000000Z",
                "updated_at": "2025-05-01T10:09:30.000000Z",
                "category": {
                    "id": 15,
                    "name": "Charger & Cable",
                    "image": "https://mp-api.michpro.store/categories/fW0fuznPGkFKHDSqea8aBbiURtSn3jzKZ4O1iuu7.jpg",
                    "description": "Fast charging",
                    "slug": "charger-cable",
                    "created_at": "2024-11-24T16:21:24.000000Z",
                    "updated_at": "2025-03-19T15:58:20.000000Z"
                }
            },
            {
                "id": 130,
                "category_id": 15,
                "name": "Wow! 33W Super Fast Charging, Instantly Revive Your Phone!",
                "slug": "wow-33w-super-fast-charging-instantly-revive-your-phone",
                "images": [
                    "https://mp-api.michpro.store/products/0c5a582af94de9cfc49452fd552386be_1745083665.jpg",
                    "https://mp-api.michpro.store/products/5666f0c570e84e8e28688c178e8ac302_1745083665.jpg",
                    "https://mp-api.michpro.store/products/8fa5026e5e4173590e3103b087198853_1745083665.jpg",
                    "https://mp-api.michpro.store/products/8c4101a8cb555b0670a8ded4b5ba4a7b_1745083665.jpg",
                    "https://mp-api.michpro.store/products/c105fa3df4365f23573e7f03566abdc1_1745083665.jpg",
                    "https://mp-api.michpro.store/products/dfd3fc2ed531e774475adf97be7162ea_1745083665.jpg",
                    "https://mp-api.michpro.store/products/7757e2692c5dd500d928b6d6875e1138_1745083665.jpg",
                    "https://mp-api.michpro.store/products/450821902bc1100c05203a6d230b52c2_1745083665.jpg"
                ],
                "description": "<p class=\"MsoNormal\"><strong>Wow! 33W Super Fast Charging, Instantly Revive Your Phone!</strong></p>\r\n<p class=\"MsoNormal\">In this era where every second counts, a dying phone battery can be a real headache. Fear not, for the MichPro MP420L Super Fast Charger is here to deliver a lightning - fast charging experience for your devices, allowing you to bid farewell to long waiting times!</p>\r\n<p class=\"MsoNormal\">&nbsp;</p>\r\n<p class=\"MsoNormal\"><span style=\"text-decoration: underline;\"><strong>33W Real Power, No False Claims</strong></span></p>\r\n<p class=\"MsoNormal\">Many chargers boast large power ratings on their packaging but fail to deliver in reality. However, the MichPro MP420L is different. It packs a genuine 33W high - power output. We've always adhered to the principle of integrity and never engage in false advertising. Every charge will let you feel the strong power output, giving you a full sense of security.</p>\r\n<p class=\"MsoNormal\">&nbsp;</p>\r\n<p class=\"MsoNormal\"><span style=\"text-decoration: underline;\"><strong>Charge Up to 65% in 30 Minutes, Astonishing Speed</strong></span></p>\r\n<p class=\"MsoNormal\">Time is precious and can't be wasted. The MichPro MP420L Super Fast Charger understands this well. In just 30 minutes, it can charge your phone up to 65% of its battery capacity. Whether you're in a hurry to leave in the morning or taking a short break during work, the rapid charging gets you back in action quickly, so you won't miss any important moments.</p>\r\n<p class=\"MsoNormal\">&nbsp;</p>\r\n<p class=\"MsoNormal\"><span style=\"text-decoration: underline;\"><strong>Exclusive iFast Chip, Safe and Smart</strong></span></p>\r\n<p class=\"MsoNormal\">The self - developed exclusive iFast chip technology by MichPro is the core highlight of this charger. It enables the charging process to maintain full speed while effectively controlling the temperature, preventing the charger from overheating. Moreover, once your device is fully charged, the charger will automatically cut off the power to avoid over - charging and protect your device's battery. It offers all - around safety for your device.</p>\r\n<p class=\"MsoNormal\">&nbsp;</p>\r\n<p class=\"MsoNormal\"><span style=\"text-decoration: underline;\"><strong>Novel Data Cable, More Stable Charging</strong></span></p>\r\n<p class=\"MsoNormal\">The package comes with an Apple PD Type - C to iPhone data cable. It not only has a novel and stylish design but also ensures a stable current transmission, making the charging process smoother. With it, you don't have to worry about poor contact or slow charging.</p>\r\n<p class=\"MsoNormal\">&nbsp;</p>\r\n<p class=\"MsoNormal\"><span style=\"text-decoration: underline;\"><strong>Compact and Portable, Charge Anytime, Anywhere</strong></span></p>\r\n<p class=\"MsoNormal\">It's small in size and light in weight, making it easy for you to carry it anywhere. Whether you're on a business trip, commuting to work, or out for a trip, just pop it into your bag or pocket, and you can recharge your device at any time, keeping you connected all the time.</p>\r\n<p class=\"MsoNormal\">&nbsp;</p>\r\n<p class=\"MsoNormal\"><strong>Package Contents</strong></p>\r\n<p class=\"MsoNormal\">1. 1 x Super Fast Charger</p>\r\n<p class=\"MsoNormal\">2. 1 x User Manual</p>\r\n<p class=\"MsoNormal\">3. 1 x Apple PD Type - C to iPhone Fast Charging Cable</p>\r\n<p class=\"MsoNormal\">&nbsp;</p>\r\n<p class=\"MsoNormal\"><strong>Product Details</strong></p>\r\n<p class=\"MsoNormal\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->- **Brand**: MichPro</p>\r\n<p class=\"MsoNormal\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->- **Model**: MP420L</p>\r\n<p class=\"MsoNormal\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->- **Power**: 33W</p>\r\n<p class=\"MsoNormal\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->- **Chip Technology**: Exclusive iFast Chip</p>\r\n<p class=\"MsoNormal\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->- **Charging Speed**: Charge up to 65% in 30 minutes</p>\r\n<p class=\"MsoNormal\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->- **Safety Protection**: Auto - cut - off, Anti - overcharging</p>\r\n<p class=\"MsoNormal\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->- **Heat Dissipation Performance**: No overheating during charging</p>\r\n<p class=\"MsoNormal\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->- **Portability**: Compact and lightweight, easy to carry</p>\r\n<p class=\"MsoNormal\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->- **Data Cable**: Apple PD Type - C to iPhone, novel design</p>\r\n<p class=\"MsoNormal\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->- **Standards**: US, EU, UK standards</p>\r\n<p class=\"MsoNormal\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->- **Origin**: Hong Kong</p>\r\n<p class=\"MsoNormal\">&nbsp;</p>\r\n<p class=\"MsoNormal\"><strong>Don't hesitate any longer! Get the MichPro MP420L Super Fast Charger now and keep your device fully charged at all times! </strong></p>",
                "specifications": "{\"Model\":\"MP-420L\",\"Power\":\"33W\",\"Cable\":\"Iphone\"}",
                "colors": null,
                "price": "16000.00",
                "featured": 0,
                "top_seller": 0,
                "rating": "0.0",
                "discount": "1000.00",
                "shipping_fee": "1500.00",
                "quantity": 100,
                "created_at": "2025-04-19T17:27:45.000000Z",
                "updated_at": "2025-04-19T17:29:04.000000Z",
                "category": {
                    "id": 15,
                    "name": "Charger & Cable",
                    "image": "https://mp-api.michpro.store/categories/fW0fuznPGkFKHDSqea8aBbiURtSn3jzKZ4O1iuu7.jpg",
                    "description": "Fast charging",
                    "slug": "charger-cable",
                    "created_at": "2024-11-24T16:21:24.000000Z",
                    "updated_at": "2025-03-19T15:58:20.000000Z"
                }
            },
            {
                "id": 129,
                "category_id": 16,
                "name": "Unleash Your Audio Experience with MichPro Earbuds In - Ear",
                "slug": "unleash-your-audio-experience-with-michpro-earbuds-in-ear",
                "images": [
                    "https://mp-api.michpro.store/products/a0fda0fc753b0b3a9695cb4c001aaa03_1745080832.jpg",
                    "https://mp-api.michpro.store/products/b1515cee8e905f2efdadc731a90c8454_1745080832.jpg",
                    "https://mp-api.michpro.store/products/1fc3c811a362cad32f5ceb33a002d845_1745080832.jpg",
                    "https://mp-api.michpro.store/products/4201589388d2a56cbb0b6fabcdf5f996_1745080832.jpg",
                    "https://mp-api.michpro.store/products/a22874abc3e339102ea41f7ed3eba962_1745080832.jpg",
                    "https://mp-api.michpro.store/products/886221001d683c169680d0706977d1a7_1745080832.jpg",
                    "https://mp-api.michpro.store/products/d7b41e681101b5d4088618e80dc198c9_1745080832.jpg",
                    "https://mp-api.michpro.store/products/ac202222dc16fec518379964b3886eec_1745080832.jpg"
                ],
                "description": "<p class=\"MsoNormal\"><strong>Are you tired of being disturbed by surrounding noise when you're on a call or enjoying your favorite tunes? Look no further! The MichPro MP - 001 in - ear earbuds with a battery case are here to revolutionize your audio world.</strong></p>\r\n<p class=\"MsoNormal\"><strong><u>&nbsp;</u></strong></p>\r\n<ul>\r\n<li class=\"MsoNormal\"><strong><u>Immersive Noise Cancellation</u></strong></li>\r\n</ul>\r\n<p class=\"MsoNormal\">&nbsp;With multiple noise - cancellation modes, the deep - level noise cancellation feature ensures crystal - clear conversations even in the noisiest environments. Say goodbye to background distractions and focus on what matters most.</p>\r\n<ul>\r\n<li class=\"MsoNormal\">&nbsp;<!--[endif]--><strong><u>Comfortable and Secure Fit</u></strong></li>\r\n</ul>\r\n<p class=\"MsoNormal\">&nbsp;The in - ear design not only prevents the earbuds from falling out but also provides a comfortable wearing experience. You can wear them for hours without any discomfort.</p>\r\n<ul>\r\n<li class=\"MsoNormal\"><strong><u>Premium Sound Quality</u></strong></li>\r\n</ul>\r\n<p class=\"MsoNormal\">&nbsp;Equipped with speakers specially customized for afobeat music, these earbuds deliver outstanding melodies, rich bass, and Hi - Fi sound. It's like being right in the middle of a live concert.</p>\r\n<ul>\r\n<li class=\"MsoNormal\"><strong><u>Advanced Connectivity</u></strong></li>\r\n</ul>\r\n<p class=\"MsoNormal\">&nbsp;The Bluetooth 5.3 technology offers a stable and fast connection, allowing you to enjoy seamless audio streaming.</p>\r\n<ul>\r\n<li class=\"MsoNormal\"><strong><u>Water - Resistant Design</u></strong></li>\r\n</ul>\r\n<p class=\"MsoNormal\">&nbsp;With an IPX7 rating, these earbuds can withstand daily splashes and sweat, making them perfect for workouts and outdoor activities.</p>\r\n<ul>\r\n<li class=\"MsoNormal\"><strong><u>Rapid Charging</u></strong></li>\r\n</ul>\r\n<p class=\"MsoNormal\">Thanks to MichPro's exclusive iFast technology, you'll never have to worry about running out of power. Just charge them up quickly and get back to your audio enjoyment.</p>\r\n<ul>\r\n<li class=\"MsoNormal\"><strong>Stylish and Portable</strong></li>\r\n</ul>\r\n<p class=\"MsoNormal\">&nbsp;The sleek and modern design, full of a sense of technology, is not only visually appealing but also easy to carry around.</p>\r\n<p class=\"MsoNormal\">&nbsp;</p>\r\n<p class=\"MsoNormal\"><strong><u>Package includes:</u></strong></p>\r\n<ul>\r\n<li class=\"MsoNormal\">Earbuds x 1</li>\r\n<li class=\"MsoNormal\">User manual x 1</li>\r\n<li class=\"MsoNormal\">Type - C fast - charging cable x 1</li>\r\n<li class=\"MsoNormal\">Free small gift x 1</li>\r\n</ul>",
                "specifications": "{\"Model\":\"Mp-001\",\" Deep Noise Cancellation\":\"Comfort Fit\",\"IPX7 Waterproof\":\"Stylish Design\"}",
                "colors": null,
                "price": "31000.00",
                "featured": 1,
                "top_seller": 1,
                "rating": "0.0",
                "discount": "1000.00",
                "shipping_fee": "1500.00",
                "quantity": 50,
                "created_at": "2025-04-19T16:40:32.000000Z",
                "updated_at": "2025-04-19T16:40:32.000000Z",
                "category": {
                    "id": 16,
                    "name": "Earpords",
                    "image": "https://mp-api.michpro.store/categories/LpvSz5lmLb8UqEYMTQ7khYYqzlLb2hcpJ1BEE1ou.jpg",
                    "description": "Afo-beat",
                    "slug": "earpords",
                    "created_at": "2025-04-19T16:18:02.000000Z",
                    "updated_at": "2025-04-19T16:18:02.000000Z"
                }
            },
            {
                "id": 128,
                "category_id": 15,
                "name": "MP - 702 Charger: Empowered by Technology, Enjoy Rapid Charging",
                "slug": "mp-702-charger-empowered-by-technology-enjoy-rapid-charging",
                "images": [
                    "https://mp-api.michpro.store/products/6ec04ca5977509bb3f37c5a3419cea91_1744887907.jpg",
                    "https://mp-api.michpro.store/products/f938160efd47b5ddcb7982ede128be43_1744887907.jpg",
                    "https://mp-api.michpro.store/products/9f5a23ccd919671fcdd29b048b27be9f_1744887907.jpg",
                    "https://mp-api.michpro.store/products/d0f584633756210dcd84595ac772987a_1744887907.jpg",
                    "https://mp-api.michpro.store/products/c30cbbb1c3d37b002eccf383526636d3_1744887907.jpg",
                    "https://mp-api.michpro.store/products/b96516e31c6e79693bf8d52e2a1912ee_1744887907.jpg",
                    "https://mp-api.michpro.store/products/ff816c7be4d0ee3f103b49b872e33577_1744887907.jpg",
                    "https://mp-api.michpro.store/products/cc740903e1dc515d16d4f16f13d620c1_1744887907.jpg"
                ],
                "description": "<div data-version=\"3.0.0\" data-hash=\"29791d9b3a0832b14ea44a633a1cb9db\">&nbsp;</div>\r\n<div class=\"document\">\r\n<div class=\"section\">\r\n<p class=\"paragraph text-align-type-left\"><strong><span data-font-family=\"default\">MICH PRO MP - 702 Charger: Empowered by Technology, Enjoy Rapid Charging</span></strong></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">In Nigeria, a land full of vitality and opportunities, the fast - paced life has made people increasingly dependent on their mobile phones. However, low battery often becomes a hassle that hinders our progress. The MP - 702 charger from MICH PRO brand is like a timely bolt of lightning, injecting continuous power into your life.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left MsoNormal\"><strong>●&nbsp;<span data-font-family=\"default\">Real - Marked Power, a Choice of Integrity</span></strong></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">The MP - 702 charger boasts a powerful 35W output. In today's market where false capacity marking is all too common, MICH PRO always adheres to the bottom line of integrity. We promise that the marked 35W power is real and genuine without any exaggeration. You no longer have to worry about false power marking. Every time you charge, you can feel the real and efficient energy transfer and enjoy a stable fast - charging experience.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left MsoNormal\"><strong>●&nbsp;<span data-font-family=\"default\">High - Quality Data Cable, Efficient Compatibility</span></strong></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">The package comes with a high - quality data cable that is specially designed for 35W power transmission. It can easily handle the stable delivery of high - current. The unique design of the Type - C to iPhone Lighting interface is perfectly compatible with Apple devices. Whether it's the latest or older models of the iPhone series, it can be seamlessly connected. This means you no longer have to worry about finding a suitable data cable. You can charge your Apple phone quickly anytime, anywhere, keeping your device fully charged at all times.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left MsoNormal\"><strong>●&nbsp;<span data-font-family=\"default\">PD Super Fast Charging, Ultra - Fast Experience</span></strong></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">The PD super fast - charging port on the charger is like an energy accelerator. Paired with our exclusive data cable, the charging speed is amazing. It only takes 30 minutes to charge your phone to 35%. Compared with ordinary chargers on the market, the charging speed of the MP - 702 charger is three times faster! Imagine that in the time it takes you to enjoy a cup of coffee, your phone's battery has already increased significantly. You no longer have to worry about missing important calls, messages, and wonderful moments.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left MsoNormal\">●<strong>&nbsp;<span data-font-family=\"default\">Exclusive iFast Chip, Intelligent Protection</span></strong></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">The exclusive iFast chip technology independently developed by MichPro endows the MP - 702 charger with dual guarantees of intelligence and safety. During the charging process, the chip can monitor parameters such as current, voltage, and temperature in real - time to ensure a stable and safe charging process. It's like a considerate guardian, keeping the charger cool during operation. Even after long - term charging, it won't get hot, effectively avoiding damage to the phone and the charger caused by overheating. Moreover, when the phone is fully charged, the charger will automatically stop charging to prevent irreversible damage to the battery due to over - charging. In addition, the chip also has multiple protection mechanisms such as over - current protection and short - circuit protection, safeguarding the safety of your device in all aspects.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left MsoNormal\">●<strong>&nbsp;<span data-font-family=\"default\">Portable Design, Go Anywhere</span></strong></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">Considering the rich and varied travel life of people in Nigeria, the MP - 702 charger adopts a user - friendly portable design. Its three prongs can be easily folded. After folding, the charger is small in size and takes up little space. It can fit easily into a briefcase, backpack, or even a pocket. You can carry it with you wherever you go, whether on a business trip, a journey, an outdoor activity, or your daily commute. You can charge your phone anytime, anywhere, without being restricted by battery power.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left\"><strong><span data-font-family=\"default\">Package Contents</span></strong></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">1 x </span><span data-font-family=\"default\">MP - 702 charger</span></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">1 x </span><span data-font-family=\"default\">Type - C to iPhone Lighting data cable</span></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\"> 1 x User manual </span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left\"><strong><span data-font-family=\"default\">Parameters and Features</span></strong></p>\r\n<p class=\"paragraph text-align-type-left MsoNormal\">●&nbsp;<span data-font-family=\"default\">- </span><span data-font-family=\"default\"><strong>Power</strong>:</span><span data-font-family=\"default\"> 35W</span></p>\r\n<p class=\"paragraph text-align-type-left MsoNormal\">●&nbsp;<span data-font-family=\"default\">- </span><span data-font-family=\"default\"><strong>Interface Type</strong>:</span><span data-font-family=\"default\"> PD Super Fast Charging Port, Type - C to iPhone Lighting</span></p>\r\n<p class=\"paragraph text-align-type-left MsoNormal\">●&nbsp;<span data-font-family=\"default\">- </span><span data-font-family=\"default\"><strong>Chip Technology</strong>:</span><span data-font-family=\"default\"> Exclusive </span><span data-font-family=\"default\">iFast</span><span data-font-family=\"default\"> Chip</span></p>\r\n<p class=\"paragraph text-align-type-left MsoNormal\">●&nbsp;<span data-font-family=\"default\">- </span><span data-font-family=\"default\"><strong>Protection Mechanisms</strong>:</span><span data-font-family=\"default\"> Multiple Protections (Over - Temperature Protection, Over - Charging Protection, Over - Current Protection, Short - Circuit Protection)</span></p>\r\n<p class=\"paragraph text-align-type-left MsoNormal\">●&nbsp;<span data-font-family=\"default\">-<strong> </strong></span><span data-font-family=\"default\"><strong>Portable Design</strong>:</span><span data-font-family=\"default\"> Foldable Three Prongs</span></p>\r\n</div>\r\n</div>",
                "specifications": "{\"Model\":\"Mp-702(35w)\",\"Port\":\"Type-C\",\"Cable\":\"C-IPHONE\"}",
                "colors": null,
                "price": "12000.00",
                "featured": 0,
                "top_seller": 1,
                "rating": "0.0",
                "discount": "2000.00",
                "shipping_fee": "1500.00",
                "quantity": 1000,
                "created_at": "2025-04-17T11:05:07.000000Z",
                "updated_at": "2025-04-17T11:07:14.000000Z",
                "category": {
                    "id": 15,
                    "name": "Charger & Cable",
                    "image": "https://mp-api.michpro.store/categories/fW0fuznPGkFKHDSqea8aBbiURtSn3jzKZ4O1iuu7.jpg",
                    "description": "Fast charging",
                    "slug": "charger-cable",
                    "created_at": "2024-11-24T16:21:24.000000Z",
                    "updated_at": "2025-03-19T15:58:20.000000Z"
                }
            },
            {
                "id": 127,
                "category_id": 14,
                "name": "MichPro MP - 081W (POWER TANK) Power Bank!",
                "slug": "michpro-mp-081w-power-tank-power-bank",
                "images": [
                    "https://mp-api.michpro.store/products/443ab82376ad28d9bf0280804ad41282_1744881305.jpg",
                    "https://mp-api.michpro.store/products/6295b712e0fd5070f3c9d6bf244f3241_1744881305.jpg",
                    "https://mp-api.michpro.store/products/7fe568d9cb74af0d85aa881e4faf4c90_1744881305.jpg",
                    "https://mp-api.michpro.store/products/7e4d52f9ecddf437f18f0f05403bb41a_1744881305.jpg",
                    "https://mp-api.michpro.store/products/936dac2b6021b8ecbfdf9207ba247e95_1744881305.jpg",
                    "https://mp-api.michpro.store/products/e3a344384a52443fce24a8d3d2982d92_1744881305.jpg",
                    "https://mp-api.michpro.store/products/e55c5a6c24d75039f9a271fd397b695f_1744881305.jpg",
                    "https://mp-api.michpro.store/products/a616d4b9656b5106bb448fc56d8d3727_1744881305.jpg"
                ],
                "description": "<div data-version=\"3.0.0\" data-hash=\"075cbef89e90093a7b9e43d3a80dcda6\">&nbsp;</div>\r\n<div class=\"document\">\r\n<div class=\"section\">\r\n<p class=\"paragraph text-align-type-left\" style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><span data-font-family=\"default\">&nbsp;Unleash Unlimited Power with the MichPro MP - 081W (POWER TANK) Power Bank!</span></strong></span></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">In today's fast - paced life, electronic devices are our constant companions. From smartphones to headphones, tablets to various digital gadgets, they handle our socializing, entertainment, and work. However, running out of battery often fills us with anxiety. Fear not! The MichPro MP - 081W (POWER TANK) power bank brings you an unprecedented charging experience, keeping your devices fully energized at all times!</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"text-decoration: underline; font-size: 18pt;\"><strong><span data-font-family=\"default\">&nbsp;Massive Capacity, Long - lasting Power</span></strong></span></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">With an enormous capacity of 80000mAh, it's like a mobile energy fortress, providing continuous power for your devices. It can charge an iPhone X up to 16 times, easily meeting your multi - day usage needs and eliminating your worries about low battery.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"font-size: 18pt;\"><strong><span style=\"text-decoration: underline;\"><span data-font-family=\"default\">Six - device Simultaneous Fast Charging, Highly Efficient</span></span></strong></span></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">This amazing power bank can charge 6 devices simultaneously at high - speed. Whether it's your phone, headphones, tablet, or other digital products, they can all enjoy the convenience of fast charging at the same time, truly achieving a significant leap in charging efficiency.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"text-decoration: underline;\"><strong><span style=\"font-size: 18pt;\" data-font-family=\"default\">Super - fast Charging, Time - saving</span></strong></span></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">Equipped with QC22.5W and PD20W fast - charging technologies, it can reach 65% charge in just 30 minutes, three times faster than other chargers. In a short break, your devices can quickly regain full power, ensuring you never miss any important moments.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\"><span style=\"text-decoration: underline;\"><strong><span style=\"font-size: 18pt;\">Abundant Ports, Meeting Diverse Needs</span></strong></span></span></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">It comes with 3 charging ports for the power bank itself and 6 ports for digital products. This rich port design is compatible with various types of devices, so you'll never have to worry about not finding a suitable charging port.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"text-decoration: underline; font-size: 18pt;\"><strong><span data-font-family=\"default\">Digital Intelligent Display, Clear Power Indication</span></strong></span></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">It features a digital intelligent display that accurately tells you the remaining power of the power bank. Moreover, when your phone is in fast - charging mode, it's clearly shown on the display, giving you full control of the charging situation.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"text-decoration: underline;\"><strong><span style=\"font-size: 18pt;\" data-font-family=\"default\">Extended Fast - Charging Cable, More Charging Freedom</span></strong></span></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">A 500m extended fast - charging cable is included. When used in combination with the data cable provided by Michpro, they work together to make the charging faster and give you more freedom of movement during charging.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"text-decoration: underline; font-size: 18pt;\"><strong><span data-font-family=\"default\">&nbsp;LED Energy - saving Strong Light, Illuminating Life</span></strong></span></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">Not only is it a great charging device, but it also comes with an LED energy - saving strong light. When you're on your way home at night or there's a sudden power outage at home, turn on the LED light, and the bright light will instantly dispel the darkness, freeing you from the trouble of darkness.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"text-decoration: underline;\"><strong><span style=\"font-size: 18pt;\" data-font-family=\"default\">Exclusive Patented Circuit Board, Safe and Reliable</span></strong></span></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">Using the iFAST exclusive patented circuit board, it provides multiple protections for the power bank. It ensures fast charging without overheating, fully safeguarding your charging safety.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"text-decoration: underline;\"><strong><span style=\"font-size: 18pt;\" data-font-family=\"default\">Product Specifications and Features</span></strong></span></p>\r\n<ul>\r\n<li class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">Model: &nbsp; &nbsp; &nbsp; MP - 081W (POWER TANK)</span></li>\r\n<li class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">Capacity: &nbsp; 80000mAh</span></li>\r\n<li class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">Brand: &nbsp; &nbsp; &nbsp; &nbsp;MichPro</span></li>\r\n<li class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">Large Capacity: </span><span data-font-family=\"default\">80000mAh</span></li>\r\n<li class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">Multi - device Fast Charging: Charge 6 devices simultaneously</span></li>\r\n<li class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">Fast Charging Technology: QC22.5W and PD20W, 65% charged in 30 minutes, 3 times faster than ordinary chargers</span></li>\r\n<li class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">Multiple Ports: 3 charging ports for power bank, 6 ports for digital products, can charge iPhone X up to 16 times</span></li>\r\n<li class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">Digital Display: Accurately shows remaining power and fast - charging status</span></li>\r\n<li class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">Extended Fast - Charging Cable: 500m extended fast - charging cable</span></li>\r\n<li class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">LED Light: Energy - saving strong LED light</span></li>\r\n<li class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">Patented Circuit Board: iFAST exclusive patented circuit board for multiple protection</span></li>\r\n</ul>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"text-decoration: underline;\"><strong><span style=\"font-size: 18pt;\" data-font-family=\"default\">&nbsp;Package Contents</span></strong></span></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">- 1 x Power bank</span></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">- 1 x User manual</span></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">- 1 x Type - C fast - charging cable </span></p>\r\n</div>\r\n</div>",
                "specifications": "{\"Model\":\"081W\",\"Capacity\":\"80000mAh\",\" charge 6 devices \":\"22.5W\"}",
                "colors": null,
                "price": "90000.00",
                "featured": 0,
                "top_seller": 0,
                "rating": "0.0",
                "discount": "10000.00",
                "shipping_fee": "1500.00",
                "quantity": 100,
                "created_at": "2025-04-17T09:15:05.000000Z",
                "updated_at": "2025-04-17T09:15:05.000000Z",
                "category": {
                    "id": 14,
                    "name": "Power Bank",
                    "image": "https://mp-api.michpro.store/categories/ENBhPQai6zo44STu7OtRICltbF4IGPsM1I0RucB3.jpg",
                    "description": "High-end mobile power bank",
                    "slug": "power-bank",
                    "created_at": "2024-11-21T07:41:20.000000Z",
                    "updated_at": "2024-12-14T16:57:22.000000Z"
                }
            },
            {
                "id": 126,
                "category_id": 14,
                "name": "052W (POWER PACK) Power Bank: The King of Battery Capacity",
                "slug": "052w-power-pack-power-bank-the-king-of-battery-capacity",
                "images": [
                    "https://mp-api.michpro.store/products/b8a79277daab04554f5fb7d48a94b3b0_1744820256.jpg",
                    "https://mp-api.michpro.store/products/7df82f0c7d4d29e864f20f753fd29f6a_1744820256.jpg",
                    "https://mp-api.michpro.store/products/73bb3c0e8a5c254e7d1c412684eafbe9_1744820256.jpg",
                    "https://mp-api.michpro.store/products/fbfa003a9f5692fa2bae639de107acd8_1744820256.jpg",
                    "https://mp-api.michpro.store/products/b623fa7d6820520a1f84de89060791f7_1744820256.jpg",
                    "https://mp-api.michpro.store/products/aa3144fb5028cbe260347253b30818c7_1744820256.jpg",
                    "https://mp-api.michpro.store/products/691c07e3c4edfd3d9d52097d3ccc1576_1744820256.jpg",
                    "https://mp-api.michpro.store/products/4037454c9599b2a223e862d14a576a77_1744820256.jpg"
                ],
                "description": "<div data-version=\"3.0.0\" data-hash=\"a8e849c98b0a3d77863e8756b0503003\">&nbsp;</div>\r\n<div class=\"document\">\r\n<div class=\"section\">\r\n<div class=\"document\">\r\n<div class=\"section\">\r\n<p class=\"paragraph text-align-type-left\"><strong><em><span style=\"font-size: 18pt;\" data-font-family=\"default\">MichPro MP - 052W (POWER PACK) 50000mAh Power Bank: The King of Battery Capacity, A Must - Have for Your Journeys!</span></em></strong></p>\r\n</div>\r\n</div>\r\n<ul>\r\n<li style=\"font-size: 24pt;\"><span style=\"text-decoration: underline; font-size: 24pt;\"><strong><span data-font-family=\"default\">&nbsp;Trusted Brand, Reliable Quality</span></strong></span></li>\r\n</ul>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"font-size: 18pt;\" data-font-family=\"default\">MichPro, a well - known brand in the industry, has always been renowned for its excellent quality and innovative technology. The MP - 052W (POWER PACK) power bank is a perfect manifestation of the brand's strength, providing safe, stable, and efficient power support for your digital devices.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<ul>\r\n<li class=\"paragraph text-align-type-left\" style=\"font-size: 24pt; font-weight: bold;\"><span style=\"text-decoration: underline;\"><strong><span style=\"font-size: 24pt;\" data-font-family=\"default\">Massive Capacity, Long - lasting Power</span></strong></span></li>\r\n</ul>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"font-size: 18pt;\" data-font-family=\"default\">With an astonishing capacity of 50,000mAh, it's like a small power station that can supply power for you at any time. Whether you're on a long - term business trip, an outdoor adventure, or just commuting daily, it can provide sufficient power for your mobile phones, headphones, tablets, and other devices. Say goodbye to battery anxiety and fully enjoy the convenience brought by technology.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<ul>\r\n<li class=\"paragraph text-align-type-left\" style=\"font-size: 24pt; font-weight: bold;\"><span style=\"text-decoration: underline;\"><strong><span style=\"font-size: 24pt;\" data-font-family=\"default\">Fast Charging for Multiple Devices, Highly Efficient and Convenient</span></strong></span></li>\r\n</ul>\r\n<p><span style=\"font-size: 18pt;\" data-font-family=\"default\">This power bank is truly a \"superhero\" in the charging world! It has a powerful charging ability and can charge up to 5 devices simultaneously and quickly. Whether it's a smartphone, wireless earbuds, tablet, or other digital products, they can all replenish energy at the same time under its care. Imagine that you no longer have to frequently plug and unplug different devices for charging, saving you a great deal of time and energy.</span></p>\r\n<p>&nbsp;</p>\r\n<ul>\r\n<li style=\"font-size: 24pt;\"><span style=\"text-decoration: underline; font-size: 24pt;\"><strong><span data-font-family=\"default\">22.5W Fast Charging, Amazing Speed</span></strong></span></li>\r\n</ul>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"font-size: 18pt;\" data-font-family=\"default\">Equipped with advanced 22.5W fast - charging technology, it can charge your device to 50% in just 30 minutes. Compared with ordinary power bank, its charging speed is three times faster! While others are still waiting for their devices to be fully charged, you can quickly get back to work or entertainment. The efficient fast - charging ability makes your life rhythm smoother.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<ul>\r\n<li class=\"paragraph text-align-type-left\" style=\"font-weight: bold; font-size: 24pt;\"><span style=\"text-decoration: underline; font-size: 24pt;\"><strong><span data-font-family=\"default\">Abundant Ports, Meeting Diverse Needs</span></strong></span></li>\r\n</ul>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"font-size: 18pt;\" data-font-family=\"default\">The MP - 052W is equipped with three ports for charging the power bank itself and five ports for charging digital products. Among them, there are three 22.5W USB charging ports and two 22.5W PD charging ports. This rich port design fully considers the charging needs of different devices. No matter what type of digital device it is, it can find a suitable charging position here, enabling true simultaneous and fast charging of multiple devices.</span></p>\r\n<ul>\r\n<li class=\"paragraph text-align-type-left\" style=\"font-size: 24pt;\"><span style=\"font-size: 24pt;\" data-font-family=\"default\">&nbsp;<span style=\"text-decoration: underline;\"><strong>LED Intelligent Digital Display, Clear Battery Status</strong></span></span></li>\r\n</ul>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"font-size: 18pt;\" data-font-family=\"default\">The power bank is equipped with an LED intelligent digital display, just like a considerate butler that allows you to accurately know the power usage of the power bank. No matter where you are and at what time, you can clearly understand the remaining battery capacity and plan your charging in advance, avoiding the embarrassing situation of running out of power at a critical moment.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<ul>\r\n<li class=\"paragraph text-align-type-left\" style=\"font-size: 24pt; font-weight: bold;\"><span style=\"text-decoration: underline;\"><strong><span style=\"font-size: 24pt;\" data-font-family=\"default\">PD Super Fast - charging Cable, Enjoy the Extreme Speed</span></strong></span></li>\r\n</ul>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"font-size: 18pt;\" data-font-family=\"default\">A PD super fast - charging cable is included with the product. When you use the data cable provided by Michpro, the \"FAST\" fast - charging symbol will appear on the power bank screen, indicating that super fast - charging is in progress. Paired with the MP - 052W power bank, you'll enjoy an unprecedented and genuine super fast - charging experience, making charging more relaxed and enjoyable.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<ul>\r\n<li class=\"paragraph text-align-type-left\" style=\"font-size: 24pt;\"><span style=\"font-size: 24pt;\" data-font-family=\"default\">&nbsp;<span style=\"text-decoration: underline;\"><strong>LED Energy - saving Strong Light, Illuminating Your Life</strong></span></span></li>\r\n</ul>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"font-size: 18pt;\" data-font-family=\"default\">In addition to its powerful charging function, the MP - 052W also features an LED energy - saving strong light. On your way home at night, it's like a considerate little lantern, lighting up your path; when there's a sudden power outage at home, turn on its LED light, and the room will be instantly filled with light, so that darkness will no longer be a problem for you.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<ul>\r\n<li class=\"paragraph text-align-type-left\" style=\"font-size: 24pt;\"><span style=\"font-size: 24pt;\" data-font-family=\"default\">&nbsp;<span style=\"text-decoration: underline;\"><strong>iFAST Exclusive Patented Circuit Board, Safe and Worry - free</strong></span></span></li>\r\n</ul>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"font-size: 18pt;\" data-font-family=\"default\">Using the iFAST exclusive patented circuit board, it provides multiple protections for your power bank. It not only enables the power bank to charge quickly but also effectively avoids the problem of overheating during charging, <span style=\"font-size: 24pt;\">providing</span> all - round charging protection for your devices. You don't have to worry about safety hazards during use and can rest assured to enjoy the convenience brought by technology.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<ul>\r\n<li class=\"paragraph text-align-type-left\" style=\"font-size: 24pt; font-weight: bold;\"><span style=\"text-decoration: underline;\"><strong><span style=\"font-size: 24pt;\" data-font-family=\"default\">Lanyard Design, Easy to Carry</span></strong></span></li>\r\n</ul>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"font-size: 18pt;\" data-font-family=\"default\">The power bank comes with a lanyard. This thoughtful design makes it even more convenient to carry. You can hang it on your bag and take it away easily. Whether you're traveling or going to work, it can be your inseparable companion.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"font-size: 18pt;\" data-font-family=\"default\">If you're looking for a power bank with large capacity, high performance, and reliability, then the MichPro MP - 052W (POWER PACK) is definitely your best choice. Buy it now and let it become a powerful assistant in your digital life! </span></p>\r\n</div>\r\n</div>",
                "specifications": "{\"Model:\":\"052W\",\"Capacity:\":\"50000mAh\",\" 22.5W Fast Charging\":\"Abundant Ports\"}",
                "colors": null,
                "price": "62000.00",
                "featured": 0,
                "top_seller": 0,
                "rating": "0.0",
                "discount": "2000.00",
                "shipping_fee": "1500.00",
                "quantity": 100,
                "created_at": "2025-04-16T16:17:36.000000Z",
                "updated_at": "2025-04-21T17:42:50.000000Z",
                "category": {
                    "id": 14,
                    "name": "Power Bank",
                    "image": "https://mp-api.michpro.store/categories/ENBhPQai6zo44STu7OtRICltbF4IGPsM1I0RucB3.jpg",
                    "description": "High-end mobile power bank",
                    "slug": "power-bank",
                    "created_at": "2024-11-21T07:41:20.000000Z",
                    "updated_at": "2024-12-14T16:57:22.000000Z"
                }
            },
            {
                "id": 125,
                "category_id": 14,
                "name": "Mp - 032W(POWER MAJOR) Power Bank: The Powerhouse in Charging, a Must - Have for Your Journeys",
                "slug": "mp-032w-power-major-power-bank-the-powerhouse-in-charging-a-must-have-for-your-journeys",
                "images": [
                    "https://mp-api.michpro.store/products/fcdb8d1df207d6409b570ca9c865429f_1744818174.jpg",
                    "https://mp-api.michpro.store/products/7ad153d72026e06c868fbcddbe5ee460_1744818174.jpg",
                    "https://mp-api.michpro.store/products/12d82588634794eedf1b008e3f4645a1_1744818174.jpg",
                    "https://mp-api.michpro.store/products/4f479df345df86a500ec2f35e405efae_1744818174.jpg",
                    "https://mp-api.michpro.store/products/e4423ec7551193717467ce5891871d76_1744818174.jpg",
                    "https://mp-api.michpro.store/products/aec464bba271b80b63a27203ad951d83_1744818174.jpg",
                    "https://mp-api.michpro.store/products/3ccaecaac33f8fb848b896a97e2e4996_1744818174.jpg",
                    "https://mp-api.michpro.store/products/00b0ee095d50af8931c3d934af0353fd_1744818174.jpg"
                ],
                "description": "<ul>\r\n<li><strong><span style=\"font-size: 18pt;\">&nbsp;Product Basic Information</span></strong><br>- Brand: MichPro<br>- Model: Mp - 032W(POWER MAJOR)<br>- Capacity: 30000mAh<br>- Product Name: Power Bank</li>\r\n<li><strong><span style=\"font-size: 18pt;\">Product Feature Keywords</span></strong><br>&nbsp; &nbsp;Capacity and Battery Life<br>- Genuine 30000mAh Capacity<br>- Over 70 - hour Charging Time<br>- Long - lasting Power Supply</li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n<ul>\r\n<li><span style=\"font-size: 18pt;\"><strong>&nbsp;Charging Speed</strong></span><br>- 22.5W Fast - charging<br>- QC4.0 Technology<br>- Simultaneous 3 - device Charging</li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n<ul>\r\n<li><strong><span style=\"font-size: 18pt;\">Display Function</span></strong><br>- LED Intelligent Digital Display<br>- Real - time Power Info</li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n<ul>\r\n<li><strong><span style=\"font-size: 18pt;\">Multi - function Use</span></strong><br>- Emergency Lighting<br>- LED Energy - saving Strong Light<br>- Eye - friendly Light</li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n<ul>\r\n<li><strong><span style=\"font-size: 18pt;\">Accessories</span></strong><br>- Mp - 032W(Power Major) Power Bank <span style=\"font-size: 18pt;\">* 1</span><br>- &nbsp;60W Charging Cable (Type - C to Type - C)<span style=\"font-size: 18pt;\"> *1</span><br>- User Manual<span style=\"font-size: 18pt;\"> *1</span></li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n<ul>\r\n<li><strong><span style=\"font-size: 18pt;\">Safety</span></strong><br>- iFAST Exclusive Patented Circuit Board<br>- Multiple Protection Functions<br>- Safe from Overheating, Over - charging and Over - discharging</li>\r\n</ul>\r\n<div data-version=\"3.0.0\" data-hash=\"c535e58f7b2d70db71a95bb7f9484f12\">&nbsp;</div>\r\n<div class=\"document\">\r\n<div class=\"section\">\r\n<p class=\"paragraph text-align-type-left\"><strong><span style=\"font-size: 18pt;\" data-font-family=\"default\">MichPro Mp - 032W(POWER MAJOR) Power Bank: The Powerhouse in Charging, a Must - Have for Your Journeys</span></strong></p>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"font-size: 14pt;\" data-font-family=\"default\">In an era where electronic devices are our constant companions, an excellent power bank is like a reassuring pill, relieving us from the anxiety of running out of battery in our daily lives and work. The Mp - 032W(POWER MAJOR) power bank, meticulously crafted by the MichPro brand, stands out as a leader in the market with its outstanding performance and user - friendly design.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"text-decoration: underline;\"><strong><span style=\"font-size: 18pt;\" data-font-family=\"default\">True High Capacity, Endless Battery Life</span></strong></span></p>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"font-size: 14pt;\" data-font-family=\"default\">The Mp - 032W(POWER MAJOR) comes with a genuine 30000mAh high capacity, free from any false claims. This means it can offer a continuous and stable power supply to all your electronic devices. What's even more remarkable is that it provides a charging time of over 70 hours. Whether you're embarking on a spontaneous long - distance trip, engaged in a busy business journey, or enjoying an exciting outdoor adventure, you no longer have to worry about your devices running out of power. Mobile phones, tablets, and other digital products can stay fully charged under its strong protection, allowing you to enjoy using them without any concerns.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"text-decoration: underline;\"><strong><span style=\"font-size: 18pt;\" data-font-family=\"default\">Ultra - Fast Charging Technology, High - efficiency Charging Experience</span></strong></span></p>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"font-size: 14pt;\" data-font-family=\"default\">This power bank is equipped with 22.5W and QC4.0 fast - charging technologies, charging your devices at a breakneck speed. It has two ports dedicated to charging itself, enabling it to replenish its energy rapidly. There are also three ports for charging digital products: one 20 - watt USB port, one 18 - watt USB port, and one 22.5 - watt PD port. With these powerful ports, you can charge three devices simultaneously and quickly, saving you a great deal of precious time. Imagine that during a short break, it can bring your devices back to life in no time, allowing you to stay productive without long - term waiting.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"font-size: 14pt;\" data-font-family=\"default\">&nbsp;<span style=\"text-decoration: underline;\"><strong><span style=\"font-size: 18pt;\">Intelligent Power Display, Clear at a Glance</span></strong></span></span></p>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"font-size: 14pt;\" data-font-family=\"default\">The Mp - 032W(POWER MAJOR) is fitted with an LED intelligent digital display that can accurately show the power usage of the power bank. You can always keep track of the remaining power and plan your charging arrangements accordingly. Whether it's in broad daylight or the dim of night, the display can clearly present the power information, making you fully aware of the power bank's status. You'll never have to worry about the embarrassing situation of sudden power - off at critical moments, providing you with great convenience.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"text-decoration: underline;\"><strong><span style=\"font-size: 18pt;\" data-font-family=\"default\">Energy - saving Strong Light, Eye - friendly for Emergency Use</span></strong></span></p>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"font-size: 14pt;\" data-font-family=\"default\">It's not just an ordinary power bank; it's also a practical emergency lighting device. Its LED energy - saving strong light emits a soft and bright light that won't harm your eyes even at night. Even children won't feel uncomfortable when using it. When you encounter an unexpected dark environment outdoors or a power outage at home, just press the switch, and it will instantly light up your way forward, bringing you a strong sense of security and becoming your reliable partner in the dark.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"font-size: 14pt;\" data-font-family=\"default\">&nbsp;<span style=\"text-decoration: underline; font-size: 18pt;\"><strong>Super Fast - charging Data Cable, Longer and More Convenient</strong></span></span></p>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"font-size: 14pt;\" data-font-family=\"default\">We've carefully equipped the Mp - 032W(POWER MAJOR) with a super fast - charging data cable that supports a maximum of 60 watts. The length of this data cable is three times that of ordinary power bank data cables, but the price remains the same. With it, you can move your devices more freely during charging without worrying about the short cable affecting the charging process. Imagine that you can lie comfortably in bed, on the sofa, or move around freely in the office while your device is charging stably. When paired with the Mp - 032W(POWER MAJOR) power bank, you'll enjoy an unprecedented true super - fast charging experience, making charging easy and enjoyable.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"text-decoration: underline;\"><strong><span style=\"font-size: 18pt;\" data-font-family=\"default\">Exclusive Patented Circuit Board, Multiple Safety Guarantees</span></strong></span></p>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"font-size: 14pt;\" data-font-family=\"default\">The Mp - 032W(POWER MAJOR) uses the iFAST exclusive patented circuit board with multiple protection functions. During the charging process, it acts like a loyal guardian, ensuring that the power bank charges quickly without overheating and effectively protecting the power bank and the connected devices. You can use it with complete peace of mind, without worrying about safety issues such as overheating, over - charging, and over - discharging. Whether in daily use or in special environments, it can provide reliable safety guarantees for your charging process, leaving you free from any worries.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"font-size: 14pt;\" data-font-family=\"default\">Choosing the MichPro Mp - 032W(POWER MAJOR) power bank means choosing an efficient, safe, and convenient charging experience. It will become the best partner for your electronic devices, accompanying you through every wonderful moment and making your life and work run more smoothly. </span></p>\r\n</div>\r\n</div>",
                "specifications": "{\"Model:\":\"032W\",\"Capacity:\":\"30000mAh\",\"22.5W Fast - charging\":\" 60W Charging Cable\"}",
                "colors": null,
                "price": "50500.00",
                "featured": 0,
                "top_seller": 1,
                "rating": "0.0",
                "discount": "0.00",
                "shipping_fee": "1500.00",
                "quantity": 200,
                "created_at": "2025-04-16T15:42:54.000000Z",
                "updated_at": "2025-04-16T15:47:08.000000Z",
                "category": {
                    "id": 14,
                    "name": "Power Bank",
                    "image": "https://mp-api.michpro.store/categories/ENBhPQai6zo44STu7OtRICltbF4IGPsM1I0RucB3.jpg",
                    "description": "High-end mobile power bank",
                    "slug": "power-bank",
                    "created_at": "2024-11-21T07:41:20.000000Z",
                    "updated_at": "2024-12-14T16:57:22.000000Z"
                }
            },
            {
                "id": 124,
                "category_id": 14,
                "name": "MP-031W Power Bank: The Perfect Companion for Travel and Daily Life",
                "slug": "mp-031w-power-bank-the-perfect-companion-for-travel-and-daily-life",
                "images": [
                    "https://mp-api.michpro.store/products/f0c97831b44c83e82a4bd407e61a5974_1744813158.jpg",
                    "https://mp-api.michpro.store/products/e79b53a68647b848797bf10a2b7ba594_1744813158.jpg",
                    "https://mp-api.michpro.store/products/132c0dd9343a330ae197369f9ceaca44_1744813158.jpg",
                    "https://mp-api.michpro.store/products/0aa4dc57f68fa664c9f74f0594dff858_1744813158.jpg",
                    "https://mp-api.michpro.store/products/6dc7fcaabaaaba35f19990c9e24962fb_1744813158.jpg",
                    "https://mp-api.michpro.store/products/bda0329569855406e480a2ead8ae17b7_1744813158.jpg",
                    "https://mp-api.michpro.store/products/a4c701c0c498d97a44f74e34202aeb5d_1744813158.jpg",
                    "https://mp-api.michpro.store/products/64da852316821216c0e5fb621ee6aadc_1744813158.jpg"
                ],
                "description": "<div data-version=\"3.0.0\" data-hash=\"15c5f1d7dafe0032d46dc61455a5f83b\">&nbsp;</div>\r\n<div class=\"document\">\r\n<div class=\"section\">\r\n<p class=\"paragraph text-align-type-left\"><span style=\"font-size: 14pt;\" data-font-family=\"default\">&nbsp; &nbsp; In today's fast - paced era, electronic devices have become an indispensable part of our lives. The MP - 031W power bank launched by the MichPro brand is carefully designed to meet your need to charge your devices anytime, anywhere.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<ul>\r\n<li class=\"paragraph text-align-type-left\" style=\"font-weight: bold; font-size: 14pt;\"><span style=\"font-size: 14pt;\"><strong><span style=\"text-decoration: underline;\"><span data-font-family=\"default\">True and Ample Capacity</span></span></strong></span></li>\r\n</ul>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">&nbsp; &nbsp; &nbsp;The MP - 031W boasts a full 30000mAh capacity without any false markings. This means you don't have to &nbsp; &nbsp; &nbsp;worry about running out of power, as it can provide long - lasting and stable power support for your devices. Whether it's your phone, tablet, or other digital gadgets, they can all get sufficient power supply.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<ul>\r\n<li class=\"paragraph text-align-type-left\" style=\"font-weight: bold; font-size: 14pt;\"><span style=\"text-decoration: underline; font-size: 14pt;\"><strong><span data-font-family=\"default\">&nbsp;Ultra - Fast Charging, Efficient and Convenient</span></strong></span></li>\r\n</ul>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">&nbsp; &nbsp; &nbsp;This power bank has a total fast - charging capacity of 60.5 watts, significantly increasing the charging speed. It is equipped with two ports for charging the power bank itself, ensuring higher charging efficiency. Moreover, it has three ports for charging digital products: one 20 - watt USB charging port, one 18 - watt USB charging port, and one 22.5 - watt PD charging port. This allows you to charge three devices simultaneously and quickly, saving you a great deal of time.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<ul>\r\n<li class=\"paragraph text-align-type-left\" style=\"font-weight: bold; font-size: 14pt;\"><span style=\"text-decoration: underline; font-size: 14pt;\"><strong><span data-font-family=\"default\">&nbsp;Intelligent Display, Clear at a Glance &nbsp;</span></strong></span></li>\r\n</ul>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">&nbsp; &nbsp;The power bank comes with an LED intelligent digital display that can accurately show the power usage. You can always know the remaining power of the power bank and arrange your charging plan reasonably, avoiding the embarrassment of running out of power at critical moments.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<ul>\r\n<li class=\"paragraph text-align-type-left\" style=\"font-weight: bold;\"><strong><span style=\"text-decoration: underline;\"><span data-font-family=\"default\"><span style=\"font-size: 14pt;\">Emergency Lighting, Practical and Thoughtful</span></span></span></strong></li>\r\n</ul>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">&nbsp; &nbsp; In addition to being a power bank, the MP - 031W also features an LED energy - saving strong light function. In a dark environment, it can transform into an emergency lighting device, providing you with the necessary illumination. Whether you're camping outdoors, dealing with a power outage, or traveling at night, it will bring you great convenience.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<ul>\r\n<li class=\"paragraph text-align-type-left\" style=\"font-size: 14pt;\"><span style=\"text-decoration: underline; font-size: 14pt;\"><strong><span data-font-family=\"default\">Portable Design, Easy to Carry</span></strong></span></li>\r\n</ul>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">&nbsp; &nbsp;The power bank is equipped with a leather hanging cord, making it easy for you to hold and carry. It is compact in size and can be easily put into your pocket or bag without adding any burden to your travel. Moreover, it meets aviation safety standards and can be taken on the plane, making it an ideal companion for your business trips and daily life.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<ul>\r\n<li class=\"paragraph text-align-type-left\" style=\"font-weight: bold; font-size: 14pt;\"><span style=\"text-decoration: underline; font-size: 14pt;\"><strong><span data-font-family=\"default\">&nbsp;Safety Assurance, Reliable Quality</span></strong></span></li>\r\n</ul>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">&nbsp; &nbsp; The MichPro MP - 031W uses a patented circuit board and Japanese - made battery cells, and has eight - fold protection <span style=\"font-size: 14pt;\">functions.</span> This not only ensures that the power bank doesn't overheat during the charging process but also effectively protects the safety of your devices and the power bank itself. You can use it with confidence without worrying about safety issues.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<ul>\r\n<li class=\"paragraph text-align-type-left\" style=\"font-weight: bold;\"><span style=\"text-decoration: underline;\"><strong><span data-font-family=\"default\">Long - Lasting Battery Life, Multiple Charges</span></strong></span></li>\r\n</ul>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">&nbsp; &nbsp; This power bank can be used for up to 78 hours at maximum and can charge an iPhone 8 approximately 11 times. Such a long - lasting battery life allows your devices to stay fully charged even during long - term outings.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<ul>\r\n<li class=\"paragraph text-align-type-left\"><span style=\"text-decoration: underline;\"><strong><span style=\"font-size: 14pt;\" data-font-family=\"default\">High - Quality Accessories, Hassle - Free Charging</span></strong></span></li>\r\n</ul>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">&nbsp; &nbsp; We have equipped the MP - 031W with a high - quality charging cable, which is longer than those of other power banks on the market. This makes your charging process more convenient, eliminating the worry of a short cable affecting your charging.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"font-size: 14pt;\" data-font-family=\"default\">Choosing the MichPro MP - 031W power bank means choosing reliable power support and a convenient lifestyle. Act now and let it become your right - hand assistant in life! </span></p>\r\n</div>\r\n</div>",
                "specifications": "{\"Model:\":\"031W\",\"Capacity:\":\"30000mAh\",\"LED Display\":\"60.5W \"}",
                "colors": null,
                "price": "49000.00",
                "featured": 0,
                "top_seller": 0,
                "rating": "0.0",
                "discount": "0.00",
                "shipping_fee": "1500.00",
                "quantity": 1000,
                "created_at": "2025-04-16T14:19:18.000000Z",
                "updated_at": "2025-04-16T14:19:18.000000Z",
                "category": {
                    "id": 14,
                    "name": "Power Bank",
                    "image": "https://mp-api.michpro.store/categories/ENBhPQai6zo44STu7OtRICltbF4IGPsM1I0RucB3.jpg",
                    "description": "High-end mobile power bank",
                    "slug": "power-bank",
                    "created_at": "2024-11-21T07:41:20.000000Z",
                    "updated_at": "2024-12-14T16:57:22.000000Z"
                }
            },
            {
                "id": 123,
                "category_id": 14,
                "name": "MP - 022W (POWER MATE): 20000mAh Power Bank with Lightning - fast and Stable Charging, Your Travel Essential!",
                "slug": "mp-022w-power-mate-20000mah-power-bank-with-lightning-fast-and-stable-charging-your-travel-essential",
                "images": [
                    "https://mp-api.michpro.store/products/8493d893e88e82663b6a4bfecb8c46a2_1744793068.jpg",
                    "https://mp-api.michpro.store/products/6612f29d4f7d3b520b8dfb8d9bb70590_1744793068.jpg",
                    "https://mp-api.michpro.store/products/b93c74d1b35b24ac623f5ad351dd4f64_1744793068.jpg",
                    "https://mp-api.michpro.store/products/e912006742799af7609a08cc08966c4b_1744793068.jpg",
                    "https://mp-api.michpro.store/products/b82f37a35ffbda61d1b2fb8b90739610_1744793068.jpg",
                    "https://mp-api.michpro.store/products/b424d4e8b6da8f7d38c85eefaefcb4c0_1744793068.jpg",
                    "https://mp-api.michpro.store/products/4398d84cdb27886fe29b2480bf48d41c_1744793068.jpg",
                    "https://mp-api.michpro.store/products/f46dc8371ec70e3323988a527c5613dc_1744793068.jpg",
                    "https://mp-api.michpro.store/products/acb7cd393783d7d55a6b6fc7a947cd68_1744793068.jpg"
                ],
                "description": "<p>Have you ever been extremely anxious when your phone battery was running out during an outing? Or have you ever been troubled by not finding a suitable charging device when multiple devices needed to be charged? Stop worrying! The MP - 022W (POWER MATE) power bank, meticulously crafted by the MichPro brand, is the perfect solution to your charging problems!</p>\r\n<p>This power bank features an enormous capacity of 20000mAh, acting like a small power station that can provide a continuous power supply for your devices such as mobile phones, earphones, and tablets. With it, you can travel with peace of mind.</p>\r\n<p><strong><span style=\"font-size: 14pt;\">Here are its outstanding features:</span></strong><br><strong><span style=\"font-size: 14pt;\">&nbsp;</span></strong></p>\r\n<ul>\r\n<li style=\"font-weight: bold; font-size: 14pt;\"><span style=\"text-decoration: underline; font-size: 14pt;\"><strong>Super - fast charging:&nbsp;</strong></span></li>\r\n</ul>\r\n<p>&nbsp; &nbsp; &nbsp; &nbsp; With a powerful output of 22.5W, it can boost your phone's battery to 65% in just thirty minutes. This means that in the time it takes you to enjoy a cup of coffee or have a breakfast, your phone can quickly regain its vitality and stay connected at all times.</p>\r\n<ul>\r\n<li><span style=\"text-decoration: underline; font-size: 14pt;\"><strong>Triple - output ports: </strong></span></li>\r\n</ul>\r\n<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;To meet your need for charging multiple devices simultaneously, the MP - 022W (POWER MATE) is equipped with 3 output charging ports. Whether it's your phone, earphones, or tablet, you can start charging them all at once, greatly saving your charging time and eliminating the need to charge devices one by one.</p>\r\n<ul>\r\n<li><span style=\"text-decoration: underline; font-size: 14pt;\"><strong>Included high - quality cable: </strong></span></li>\r\n</ul>\r\n<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;It comes with a 500mm MichPro PD fast - charging data cable. The TYPE - C to TYPE - C design not only makes the connection convenient but also ensures an efficient and stable charging process, allowing for smooth power transmission.</p>\r\n<ul>\r\n<li style=\"font-size: 14pt;\"><span style=\"text-decoration: underline; font-size: 14pt;\"><strong>iFast chip technology: </strong></span></li>\r\n</ul>\r\n<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;The exclusive patented chip technology iFast of MichPro is the core advantage of this power bank. It enables a much faster charging speed than other 22.5W power banks on the market while ensuring the stability of the charging process. Moreover, it upgrades QC to 4.0 &amp; PD3.0, providing a safer and smarter charging experience for your devices.</p>\r\n<ul>\r\n<li><strong><span style=\"text-decoration: underline;\">Bright LED light:</span></strong></li>\r\n</ul>\r\n<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;In addition to its powerful charging function, the MP - 022W (POWER MATE) also takes various needs into account. It is equipped with a super - bright LED light, which can illuminate your way at night or in case of an emergency.</p>\r\n<ul>\r\n<li><span style=\"text-decoration: underline; font-size: 14pt;\"><strong>Battery indicator: </strong></span></li>\r\n</ul>\r\n<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;The battery indicator allows you to keep track of the remaining battery of the power bank at any time, so you can always be prepared and avoid any unexpected power - outs.</p>\r\n<ul>\r\n<li style=\"font-weight: bold; font-size: 14pt;\"><span style=\"text-decoration: underline; font-size: 14pt;\"><strong>Airline - approved:</strong></span></li>\r\n</ul>\r\n<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;It meets the aviation safety standards and can be taken on the plane. This is undoubtedly a thoughtful guarantee for those who often travel on business or for leisure, allowing you to charge your devices at any time during your journey.</p>\r\n<p>Choosing the MichPro MP - 022W (POWER MATE) means choosing an efficient, convenient, and safe charging experience. Don't hesitate any longer! Add it to your collection now and let it become your reliable assistant in life and work!</p>",
                "specifications": "{\"Model:\":\"022W\",\"Capacity:\":\"20000mAh\",\"Super Fast Charging\":\"Bright LED\"}",
                "colors": null,
                "price": "41000.00",
                "featured": 0,
                "top_seller": 0,
                "rating": "0.0",
                "discount": "3000.00",
                "shipping_fee": "1500.00",
                "quantity": 500,
                "created_at": "2025-04-16T08:44:28.000000Z",
                "updated_at": "2025-04-16T16:31:30.000000Z",
                "category": {
                    "id": 14,
                    "name": "Power Bank",
                    "image": "https://mp-api.michpro.store/categories/ENBhPQai6zo44STu7OtRICltbF4IGPsM1I0RucB3.jpg",
                    "description": "High-end mobile power bank",
                    "slug": "power-bank",
                    "created_at": "2024-11-21T07:41:20.000000Z",
                    "updated_at": "2024-12-14T16:57:22.000000Z"
                }
            },
            {
                "id": 122,
                "category_id": 14,
                "name": "MP - 021W: 20000mAh Power Bank with 18W Fast Charge for Instant Device Boost!",
                "slug": "mp-021w-20000mah-power-bank-with-18w-fast-charge-for-instant-device-boost",
                "images": [
                    "https://mp-api.michpro.store/products/25fa8550685c2220bf5875bf926f2b9f_1744790517.jpg",
                    "https://mp-api.michpro.store/products/557ee8ead85fad203dd7aff72e7de060_1744790517.jpg",
                    "https://mp-api.michpro.store/products/109bf5db769febc550b7fb55cb618cc4_1744790517.jpg",
                    "https://mp-api.michpro.store/products/6eb5f05b91a5be74b65bf698322f521b_1744790517.jpg",
                    "https://mp-api.michpro.store/products/47994f286ad70a57a842e35b2cb6b8eb_1744790517.jpg",
                    "https://mp-api.michpro.store/products/144e64a30b7aa82c4656c1684b7fc8f7_1744790517.jpg",
                    "https://mp-api.michpro.store/products/083f117269022ff0e7aa20f7efd93cbe_1744790517.jpg"
                ],
                "description": "<p>Are you constantly on the move, relying heavily on your electronic devices? Fret no more! The MichPro MP - 021W is here to be your ultimate power solution, ensuring you stay connected whenever and wherever you are.</p>\r\n<p><strong>&nbsp;<span style=\"text-decoration: underline;\">A Trusted Brand: MichPro</span></strong><br>MichPro has established itself as a leading name in the power - supply industry. With a reputation for innovation and top - notch quality, we're committed to delivering products that exceed your expectations. When you choose the MP - 021W, you're choosing a product backed by years of expertise and a dedication to excellence.</p>\r\n<p><strong><span style=\"text-decoration: underline;\">Robust Capacity: 20000mAh for Endless Energy</span></strong><br>The MP - 021W comes with a substantial 20000mAh capacity. Unlike some power banks in the market that make false claims, our power bank guarantees a full 20000mAh. This ample capacity can charge an iPhone 8 approximately eight times, giving you up to 78 hours of continuous use. Whether you're out on a long - day hike, a business trip, or a weekend getaway, this power bank has got your back.</p>\r\n<p><strong><span style=\"text-decoration: underline;\">&nbsp;Lightning - Fast 18W Charging</span></strong><br>Say goodbye to long charging times! The MP - 021W features 18W fast - charging technology. This means your devices, such as smartphones and tablets, can go from zero to a significant charge in a fraction of the time. You'll be back to using your devices and staying productive in no time, even when your battery is running low.</p>\r\n<p><span style=\"text-decoration: underline;\"><strong>Simultaneous Dual - Device Charging</strong></span><br>In today's digital age, we often have multiple devices that need charging. The MP - 021W addresses this need by allowing you to charge two devices at the same time. It comes with two charging ports: a 2.4A port for standard charging and an 18W port for high - speed charging. This dual - port design is incredibly convenient, saving you time and eliminating the hassle of waiting for one device to charge before starting on another.</p>\r\n<p><span style=\"text-decoration: underline;\"><strong>Transparent Power Monitoring with LED Indicator</strong></span><br>The built - in LED battery indicator is a game - changing feature. It provides real - time information about the remaining power in the power bank. You'll always know exactly how much juice is left, allowing you to plan your charging sessions in advance. No more unpleasant surprises of a dead power bank when you need it the most.</p>\r\n<p><strong><span style=\"text-decoration: underline;\">Premium Components for Safe and Cool Charging</span></strong><br>The MP - 021W is equipped with MichPro's patented circuit board and Japanese - made battery cells. These high - quality components work together to ensure a stable and efficient charging process. The patented circuit board optimizes the power flow, while the Japanese - made cells offer excellent performance and durability. Moreover, they prevent the power bank from overheating, even during long - term use. The advanced charging protection system also safeguards your devices from over - charging, over - discharging, and short - circuits, providing you with a worry - free charging experience.</p>\r\n<p><span style=\"text-decoration: underline;\"><strong>Ultra - Portable and Travel - Ready</strong></span><br>Designed with mobility in mind, the MP - 021W is extremely portable. Its compact size allows it to fit easily into your pocket or bag, making it a perfect companion for your daily activities. And here's the cherry on top: it's airline - approved. You can take it with you on your flights, ensuring you have power during your journey. Whether you're traveling for business or leisure, this power bank will keep your devices powered up throughout your trip.</p>\r\n<p><span style=\"text-decoration: underline;\"><strong>High - Quality, Extended Charging Cable</strong></span><br>We've included a high - quality charging cable with the MP - 021W. This cable is longer than the ones typically provided with other power banks in the market. The extra length gives you the freedom to charge your devices from a comfortable distance. You can relax on the couch, lie in bed, or work at your desk without being restricted by a short cable. It's all about enhancing your charging convenience.</p>\r\n<p>In conclusion, the MichPro MP - 021W is a versatile, reliable, and high - performance power bank that meets all your charging needs. Don't miss out on this essential gadget for your modern lifestyle. Order yours today and experience the difference!&nbsp;</p>",
                "specifications": "{\"Model:\":\"021W\",\"Capacity:\":\"20000mAh\",\"Power:\":\"15W\",\"Fast Charging    \":\"Dual Output\",\"Protable\":\"Airline Approved\"}",
                "colors": null,
                "price": "38000.00",
                "featured": 0,
                "top_seller": 0,
                "rating": "0.0",
                "discount": "0.00",
                "shipping_fee": "1500.00",
                "quantity": 500,
                "created_at": "2025-04-16T08:01:57.000000Z",
                "updated_at": "2025-04-16T08:01:57.000000Z",
                "category": {
                    "id": 14,
                    "name": "Power Bank",
                    "image": "https://mp-api.michpro.store/categories/ENBhPQai6zo44STu7OtRICltbF4IGPsM1I0RucB3.jpg",
                    "description": "High-end mobile power bank",
                    "slug": "power-bank",
                    "created_at": "2024-11-21T07:41:20.000000Z",
                    "updated_at": "2024-12-14T16:57:22.000000Z"
                }
            },
            {
                "id": 121,
                "category_id": 10,
                "name": "BL-5C TurboUniversal Battery",
                "slug": "bl-5c-turbouniversal-battery",
                "images": [
                    "https://mp-api.michpro.store/products/ec864e50b596faace06c7cce0f290af1_1744704848.png"
                ],
                "description": "<p><a href=\"Introducing the Revolutionary MichPro BL - 5c Battery!🔋  Hey Guys , look at this amazing MichPro BL - 5C battery in the picture!  A game - changer in the world of mobile power solutions.  1. High - Capacity at an Affordable Price   Our BL - 5c battery boasts an impressive 1300mAh capacity. This means longer usage time for your mobile devices. Despite its high capacity, it comes at a very reasonable price, offering you great value for money.  2. Universal Compatibility    No matter which phone model that is compatible with the BL - 5c battery you own, our product will work seamlessly. You don't have to worry about compatibility issues. Charge your phone with confidence and enjoy uninterrupted usage.  3. Exclusive Chip Technology Powered by MichPro's proprietary battery chip technology, our battery ensures a stable power output. Unlike other brands that experience rapid power drainage, our BL - 5c battery maintains a consistent charge. Moreover, it won't overheat during the charging process, keeping your phone safe and cool.  4. Compact Packaging We understand the importance of cost - effective shipping, especially for imports. That's why we've designed the packaging of our BL - 5c battery to be as compact as possible. This not only saves you space but also reduces shipping costs.  5. One - Year Warranty Your peace of mind is our priority. We offer a one - year warranty starting from the date of shipment. If you encounter any issues within this period, we'll take care of it. You can sell our products without any concerns.  You can order right now! Be one of the first to sell this product. The earlier you sell, the more profit you'll make. Don't miss out!☎️📞☎️📞\">Introducing the Revolutionary MichPro BL - 5c Battery!</a></p>\r\n<p><a href=\"Introducing the Revolutionary MichPro BL - 5c Battery!🔋  Hey Guys , look at this amazing MichPro BL - 5C battery in the picture!  A game - changer in the world of mobile power solutions.  1. High - Capacity at an Affordable Price   Our BL - 5c battery boasts an impressive 1300mAh capacity. This means longer usage time for your mobile devices. Despite its high capacity, it comes at a very reasonable price, offering you great value for money.  2. Universal Compatibility    No matter which phone model that is compatible with the BL - 5c battery you own, our product will work seamlessly. You don't have to worry about compatibility issues. Charge your phone with confidence and enjoy uninterrupted usage.  3. Exclusive Chip Technology Powered by MichPro's proprietary battery chip technology, our battery ensures a stable power output. Unlike other brands that experience rapid power drainage, our BL - 5c battery maintains a consistent charge. Moreover, it won't overheat during the charging process, keeping your phone safe and cool.  4. Compact Packaging We understand the importance of cost - effective shipping, especially for imports. That's why we've designed the packaging of our BL - 5c battery to be as compact as possible. This not only saves you space but also reduces shipping costs.  5. One - Year Warranty Your peace of mind is our priority. We offer a one - year warranty starting from the date of shipment. If you encounter any issues within this period, we'll take care of it. You can sell our products without any concerns.  You can order right now! Be one of the first to sell this product. The earlier you sell, the more profit you'll make. Don't miss out!☎️📞☎️📞\">Hey Guys , look at this amazing MichPro BL - 5C battery in the picture!&nbsp;</a></p>\r\n<p><a href=\"Introducing the Revolutionary MichPro BL - 5c Battery!🔋  Hey Guys , look at this amazing MichPro BL - 5C battery in the picture!  A game - changer in the world of mobile power solutions.  1. High - Capacity at an Affordable Price   Our BL - 5c battery boasts an impressive 1300mAh capacity. This means longer usage time for your mobile devices. Despite its high capacity, it comes at a very reasonable price, offering you great value for money.  2. Universal Compatibility    No matter which phone model that is compatible with the BL - 5c battery you own, our product will work seamlessly. You don't have to worry about compatibility issues. Charge your phone with confidence and enjoy uninterrupted usage.  3. Exclusive Chip Technology Powered by MichPro's proprietary battery chip technology, our battery ensures a stable power output. Unlike other brands that experience rapid power drainage, our BL - 5c battery maintains a consistent charge. Moreover, it won't overheat during the charging process, keeping your phone safe and cool.  4. Compact Packaging We understand the importance of cost - effective shipping, especially for imports. That's why we've designed the packaging of our BL - 5c battery to be as compact as possible. This not only saves you space but also reduces shipping costs.  5. One - Year Warranty Your peace of mind is our priority. We offer a one - year warranty starting from the date of shipment. If you encounter any issues within this period, we'll take care of it. You can sell our products without any concerns.  You can order right now! Be one of the first to sell this product. The earlier you sell, the more profit you'll make. Don't miss out!☎️📞☎️📞\">A game - changer in the world of mobile power solutions. </a></p>\r\n<p><a href=\"Introducing the Revolutionary MichPro BL - 5c Battery!🔋  Hey Guys , look at this amazing MichPro BL - 5C battery in the picture!  A game - changer in the world of mobile power solutions.  1. High - Capacity at an Affordable Price   Our BL - 5c battery boasts an impressive 1300mAh capacity. This means longer usage time for your mobile devices. Despite its high capacity, it comes at a very reasonable price, offering you great value for money.  2. Universal Compatibility    No matter which phone model that is compatible with the BL - 5c battery you own, our product will work seamlessly. You don't have to worry about compatibility issues. Charge your phone with confidence and enjoy uninterrupted usage.  3. Exclusive Chip Technology Powered by MichPro's proprietary battery chip technology, our battery ensures a stable power output. Unlike other brands that experience rapid power drainage, our BL - 5c battery maintains a consistent charge. Moreover, it won't overheat during the charging process, keeping your phone safe and cool.  4. Compact Packaging We understand the importance of cost - effective shipping, especially for imports. That's why we've designed the packaging of our BL - 5c battery to be as compact as possible. This not only saves you space but also reduces shipping costs.  5. One - Year Warranty Your peace of mind is our priority. We offer a one - year warranty starting from the date of shipment. If you encounter any issues within this period, we'll take care of it. You can sell our products without any concerns.  You can order right now! Be one of the first to sell this product. The earlier you sell, the more profit you'll make. Don't miss out!☎️📞☎️📞\">1. High - Capacity at an Affordable Price Our BL - 5c battery boasts an impressive 1300mAh capacity.&nbsp;</a><a href=\"Introducing the Revolutionary MichPro BL - 5c Battery!🔋  Hey Guys , look at this amazing MichPro BL - 5C battery in the picture!  A game - changer in the world of mobile power solutions.  1. High - Capacity at an Affordable Price   Our BL - 5c battery boasts an impressive 1300mAh capacity. This means longer usage time for your mobile devices. Despite its high capacity, it comes at a very reasonable price, offering you great value for money.  2. Universal Compatibility    No matter which phone model that is compatible with the BL - 5c battery you own, our product will work seamlessly. You don't have to worry about compatibility issues. Charge your phone with confidence and enjoy uninterrupted usage.  3. Exclusive Chip Technology Powered by MichPro's proprietary battery chip technology, our battery ensures a stable power output. Unlike other brands that experience rapid power drainage, our BL - 5c battery maintains a consistent charge. Moreover, it won't overheat during the charging process, keeping your phone safe and cool.  4. Compact Packaging We understand the importance of cost - effective shipping, especially for imports. That's why we've designed the packaging of our BL - 5c battery to be as compact as possible. This not only saves you space but also reduces shipping costs.  5. One - Year Warranty Your peace of mind is our priority. We offer a one - year warranty starting from the date of shipment. If you encounter any issues within this period, we'll take care of it. You can sell our products without any concerns.  You can order right now! Be one of the first to sell this product. The earlier you sell, the more profit you'll make. Don't miss out!☎️📞☎️📞\">This means longer usage time for your mobile devices. Despite its high capacity</a></p>\r\n<p><a href=\"Introducing the Revolutionary MichPro BL - 5c Battery!🔋  Hey Guys , look at this amazing MichPro BL - 5C battery in the picture!  A game - changer in the world of mobile power solutions.  1. High - Capacity at an Affordable Price   Our BL - 5c battery boasts an impressive 1300mAh capacity. This means longer usage time for your mobile devices. Despite its high capacity, it comes at a very reasonable price, offering you great value for money.  2. Universal Compatibility    No matter which phone model that is compatible with the BL - 5c battery you own, our product will work seamlessly. You don't have to worry about compatibility issues. Charge your phone with confidence and enjoy uninterrupted usage.  3. Exclusive Chip Technology Powered by MichPro's proprietary battery chip technology, our battery ensures a stable power output. Unlike other brands that experience rapid power drainage, our BL - 5c battery maintains a consistent charge. Moreover, it won't overheat during the charging process, keeping your phone safe and cool.  4. Compact Packaging We understand the importance of cost - effective shipping, especially for imports. That's why we've designed the packaging of our BL - 5c battery to be as compact as possible. This not only saves you space but also reduces shipping costs.  5. One - Year Warranty Your peace of mind is our priority. We offer a one - year warranty starting from the date of shipment. If you encounter any issues within this period, we'll take care of it. You can sell our products without any concerns.  You can order right now! Be one of the first to sell this product. The earlier you sell, the more profit you'll make. Don't miss out!☎️📞☎️📞\">2. Universal Compatibility No matter which phone model that is compatible with the BL - 5c battery you own, our product will work seamlessly. You don't have to worry about compatibility issues. Charge your phone with confidence and enjoy uninterrupted usage.</a></p>\r\n<p><a href=\"Introducing the Revolutionary MichPro BL - 5c Battery!🔋  Hey Guys , look at this amazing MichPro BL - 5C battery in the picture!  A game - changer in the world of mobile power solutions.  1. High - Capacity at an Affordable Price   Our BL - 5c battery boasts an impressive 1300mAh capacity. This means longer usage time for your mobile devices. Despite its high capacity, it comes at a very reasonable price, offering you great value for money.  2. Universal Compatibility    No matter which phone model that is compatible with the BL - 5c battery you own, our product will work seamlessly. You don't have to worry about compatibility issues. Charge your phone with confidence and enjoy uninterrupted usage.  3. Exclusive Chip Technology Powered by MichPro's proprietary battery chip technology, our battery ensures a stable power output. Unlike other brands that experience rapid power drainage, our BL - 5c battery maintains a consistent charge. Moreover, it won't overheat during the charging process, keeping your phone safe and cool.  4. Compact Packaging We understand the importance of cost - effective shipping, especially for imports. That's why we've designed the packaging of our BL - 5c battery to be as compact as possible. This not only saves you space but also reduces shipping costs.  5. One - Year Warranty Your peace of mind is our priority. We offer a one - year warranty starting from the date of shipment. If you encounter any issues within this period, we'll take care of it. You can sell our products without any concerns.  You can order right now! Be one of the first to sell this product. The earlier you sell, the more profit you'll make. Don't miss out!☎️📞☎️📞\">&nbsp;3. Exclusive Chip Technology Powered by MichPro's proprietary battery chip technology, our battery ensures a stable power output. Unlike other brands that experience rapid power drainage, our BL - 5c battery maintains a consistent charge. Moreover, it won't overheat during the charging process, keeping your phone safe and cool. </a></p>\r\n<p><a href=\"Introducing the Revolutionary MichPro BL - 5c Battery!🔋  Hey Guys , look at this amazing MichPro BL - 5C battery in the picture!  A game - changer in the world of mobile power solutions.  1. High - Capacity at an Affordable Price   Our BL - 5c battery boasts an impressive 1300mAh capacity. This means longer usage time for your mobile devices. Despite its high capacity, it comes at a very reasonable price, offering you great value for money.  2. Universal Compatibility    No matter which phone model that is compatible with the BL - 5c battery you own, our product will work seamlessly. You don't have to worry about compatibility issues. Charge your phone with confidence and enjoy uninterrupted usage.  3. Exclusive Chip Technology Powered by MichPro's proprietary battery chip technology, our battery ensures a stable power output. Unlike other brands that experience rapid power drainage, our BL - 5c battery maintains a consistent charge. Moreover, it won't overheat during the charging process, keeping your phone safe and cool.  4. Compact Packaging We understand the importance of cost - effective shipping, especially for imports. That's why we've designed the packaging of our BL - 5c battery to be as compact as possible. This not only saves you space but also reduces shipping costs.  5. One - Year Warranty Your peace of mind is our priority. We offer a one - year warranty starting from the date of shipment. If you encounter any issues within this period, we'll take care of it. You can sell our products without any concerns.  You can order right now! Be one of the first to sell this product. The earlier you sell, the more profit you'll make. Don't miss out!☎️📞☎️📞\">4. One - Year Warranty Your peace of mind is our priority. We offer a one - year warranty starting from the date of shipment. If you encounter any issues within this period, we'll take care of it.&nbsp;</a></p>",
                "specifications": "{\"Model \":\"BL-5C Turbo\",\"Capacity\":\"1300mAh\"}",
                "colors": null,
                "price": "2500.00",
                "featured": 0,
                "top_seller": 0,
                "rating": "0.0",
                "discount": "0.00",
                "shipping_fee": "0.00",
                "quantity": 5000,
                "created_at": "2025-04-15T08:14:08.000000Z",
                "updated_at": "2025-04-15T08:16:29.000000Z",
                "category": {
                    "id": 10,
                    "name": "External Phone Battery",
                    "image": "https://mp-api.michpro.store/categories/13yW2LcOeH5hHB7Qw3HYfEbl6T2lzOlPn0zQGsUr.jpg",
                    "description": "High-end external mobile phone battery, high capacity, long standby.",
                    "slug": "batteries",
                    "created_at": "2024-09-02T09:20:53.000000Z",
                    "updated_at": "2024-11-21T06:15:29.000000Z"
                }
            },
            {
                "id": 120,
                "category_id": 10,
                "name": "MichPro 5C ENG",
                "slug": "michpro-5c-eng",
                "images": [
                    "https://mp-api.michpro.store/products/c6866b183ed04643ad4528bde7e799d4_1736290143.jpg",
                    "https://mp-api.michpro.store/products/9fc54699b73e1855a48b11dbac667a1b_1736290143.jpg",
                    "https://mp-api.michpro.store/products/46c3c0321ed5b36db89d0a0c9e6debad_1736290143.jpg",
                    "https://mp-api.michpro.store/products/feb38b79fc8c571281d0130ab530bf7c_1736290143.jpg",
                    "https://mp-api.michpro.store/products/f63560e948c120f6599e9b13972a172a_1736290143.jpg"
                ],
                "description": "MichPro 5C ENG",
                "specifications": "{\"Model\":\"5C ENG\",\"Capacity\":\"1020mAh\"}",
                "colors": null,
                "price": "8000.00",
                "featured": 0,
                "top_seller": 0,
                "rating": "0.0",
                "discount": "0.00",
                "shipping_fee": "0.00",
                "quantity": 5000,
                "created_at": "2025-01-07T22:49:03.000000Z",
                "updated_at": "2025-01-07T22:49:03.000000Z",
                "category": {
                    "id": 10,
                    "name": "External Phone Battery",
                    "image": "https://mp-api.michpro.store/categories/13yW2LcOeH5hHB7Qw3HYfEbl6T2lzOlPn0zQGsUr.jpg",
                    "description": "High-end external mobile phone battery, high capacity, long standby.",
                    "slug": "batteries",
                    "created_at": "2024-09-02T09:20:53.000000Z",
                    "updated_at": "2024-11-21T06:15:29.000000Z"
                }
            },
            {
                "id": 119,
                "category_id": 10,
                "name": "MichPro BL-11GI",
                "slug": "michpro-bl-11gi",
                "images": [
                    "https://mp-api.michpro.store/products/73d5e0b10f4cd1b840b0baf80138969a_1735197160.png"
                ],
                "description": "MichPro BL-11GI",
                "specifications": "{\"Model\":\"BL-11GI\",\"Capacity\":\"2400mAh\"}",
                "colors": null,
                "price": "8000.00",
                "featured": 0,
                "top_seller": 0,
                "rating": "0.0",
                "discount": "0.00",
                "shipping_fee": "0.00",
                "quantity": 5000,
                "created_at": "2024-12-26T07:12:40.000000Z",
                "updated_at": "2024-12-26T07:12:40.000000Z",
                "category": {
                    "id": 10,
                    "name": "External Phone Battery",
                    "image": "https://mp-api.michpro.store/categories/13yW2LcOeH5hHB7Qw3HYfEbl6T2lzOlPn0zQGsUr.jpg",
                    "description": "High-end external mobile phone battery, high capacity, long standby.",
                    "slug": "batteries",
                    "created_at": "2024-09-02T09:20:53.000000Z",
                    "updated_at": "2024-11-21T06:15:29.000000Z"
                }
            },
            {
                "id": 118,
                "category_id": 10,
                "name": "MichPro BL_4UL",
                "slug": "michpro-bl-4ul",
                "images": [
                    "https://mp-api.michpro.store/products/0770015c07759a6160cef404659526c8_1734601461.png"
                ],
                "description": "MichPro BL_4UL",
                "specifications": "{\"Model\":\"BL_4UL\",\"capacity\":\"2400mAh\"}",
                "colors": null,
                "price": "4000.00",
                "featured": 0,
                "top_seller": 0,
                "rating": "0.0",
                "discount": "0.00",
                "shipping_fee": "0.00",
                "quantity": 5000,
                "created_at": "2024-12-19T09:44:21.000000Z",
                "updated_at": "2024-12-19T09:44:21.000000Z",
                "category": {
                    "id": 10,
                    "name": "External Phone Battery",
                    "image": "https://mp-api.michpro.store/categories/13yW2LcOeH5hHB7Qw3HYfEbl6T2lzOlPn0zQGsUr.jpg",
                    "description": "High-end external mobile phone battery, high capacity, long standby.",
                    "slug": "batteries",
                    "created_at": "2024-09-02T09:20:53.000000Z",
                    "updated_at": "2024-11-21T06:15:29.000000Z"
                }
            },
            {
                "id": 117,
                "category_id": 10,
                "name": "Mich Pro BL-10BI",
                "slug": "mich-pro-bl-10bi",
                "images": [
                    "https://mp-api.michpro.store/products/dea238a4e57f7b90da002a6136569238_1734594325.png"
                ],
                "description": "Mich Pro BL-10BI",
                "specifications": "{\"Model \":\"Mich Pro BL-10BI\",\"Capacity\":\"2400mAh\"}",
                "colors": null,
                "price": "6000.00",
                "featured": 0,
                "top_seller": 0,
                "rating": "0.0",
                "discount": "0.00",
                "shipping_fee": "0.00",
                "quantity": 500,
                "created_at": "2024-12-19T07:45:25.000000Z",
                "updated_at": "2024-12-19T07:45:25.000000Z",
                "category": {
                    "id": 10,
                    "name": "External Phone Battery",
                    "image": "https://mp-api.michpro.store/categories/13yW2LcOeH5hHB7Qw3HYfEbl6T2lzOlPn0zQGsUr.jpg",
                    "description": "High-end external mobile phone battery, high capacity, long standby.",
                    "slug": "batteries",
                    "created_at": "2024-09-02T09:20:53.000000Z",
                    "updated_at": "2024-11-21T06:15:29.000000Z"
                }
            },
            {
                "id": 116,
                "category_id": 10,
                "name": "MichPro NOTE 4 / BN910BBK",
                "slug": "mich-pro-note-4-bn910bbk",
                "images": [
                    "https://mp-api.michpro.store/products/a78d51d704e5359bb393dcff73caf8ce_1732920970.png"
                ],
                "description": "MichPro NOTE 4/ BN910BBK",
                "specifications": "{\"Model\":\"NOTE 4/ BN910BBK\",\"Capacity\":\"2500mAh\"}",
                "colors": null,
                "price": "40000.00",
                "featured": 0,
                "top_seller": 0,
                "rating": "0.0",
                "discount": "0.00",
                "shipping_fee": "0.00",
                "quantity": 2000,
                "created_at": "2024-11-29T22:56:10.000000Z",
                "updated_at": "2024-12-03T21:48:29.000000Z",
                "category": {
                    "id": 10,
                    "name": "External Phone Battery",
                    "image": "https://mp-api.michpro.store/categories/13yW2LcOeH5hHB7Qw3HYfEbl6T2lzOlPn0zQGsUr.jpg",
                    "description": "High-end external mobile phone battery, high capacity, long standby.",
                    "slug": "batteries",
                    "created_at": "2024-09-02T09:20:53.000000Z",
                    "updated_at": "2024-11-21T06:15:29.000000Z"
                }
            },
            {
                "id": 115,
                "category_id": 10,
                "name": "MichPro BL-10CT",
                "slug": "michpro-bl-10ct",
                "images": [
                    "https://mp-api.michpro.store/products/a43afa85c910554f1329cefc669c85c8_1732637080.jpg"
                ],
                "description": "MichPro Battery BL-10CT",
                "specifications": "{\"Model:\":\"BL-10CT\",\"Capacity\":\"3000mAh\"}",
                "colors": null,
                "price": "5000.00",
                "featured": 0,
                "top_seller": 0,
                "rating": "0.0",
                "discount": "350.00",
                "shipping_fee": "0.00",
                "quantity": 2000,
                "created_at": "2024-11-26T16:04:40.000000Z",
                "updated_at": "2024-11-26T16:04:40.000000Z",
                "category": {
                    "id": 10,
                    "name": "External Phone Battery",
                    "image": "https://mp-api.michpro.store/categories/13yW2LcOeH5hHB7Qw3HYfEbl6T2lzOlPn0zQGsUr.jpg",
                    "description": "High-end external mobile phone battery, high capacity, long standby.",
                    "slug": "batteries",
                    "created_at": "2024-09-02T09:20:53.000000Z",
                    "updated_at": "2024-11-21T06:15:29.000000Z"
                }
            },
            {
                "id": 114,
                "category_id": 10,
                "name": "MichPro BL-20NT",
                "slug": "michpro-bl-20nt",
                "images": [
                    "https://mp-api.michpro.store/products/9b8d2420cfa09e520abc1f295d21c2f1_1738346551.jpg"
                ],
                "description": "MichPro BL-20NT",
                "specifications": "{\"Model:\":\"BL-20NT\",\"Capacity:\":\"5400mAh\"}",
                "colors": null,
                "price": "3000.00",
                "featured": 0,
                "top_seller": 0,
                "rating": "0.0",
                "discount": "450.00",
                "shipping_fee": "0.00",
                "quantity": 5000,
                "created_at": "2024-11-26T15:43:59.000000Z",
                "updated_at": "2025-01-31T18:02:31.000000Z",
                "category": {
                    "id": 10,
                    "name": "External Phone Battery",
                    "image": "https://mp-api.michpro.store/categories/13yW2LcOeH5hHB7Qw3HYfEbl6T2lzOlPn0zQGsUr.jpg",
                    "description": "High-end external mobile phone battery, high capacity, long standby.",
                    "slug": "batteries",
                    "created_at": "2024-09-02T09:20:53.000000Z",
                    "updated_at": "2024-11-21T06:15:29.000000Z"
                }
            },
            {
                "id": 113,
                "category_id": 15,
                "name": "True Power, Dual Fast Charging, 6 Fold Protection with Night Light!MICHPRO Mp 201C Charger",
                "slug": "michpro-2usb-2-4a-fast-charging-usb-tc-data-cable-1m-black",
                "images": [
                    "https://mp-api.michpro.store/products/4e0c7c3f6a28e8c007f5b1b09619246c_1745132862.jpg",
                    "https://mp-api.michpro.store/products/915ec7501a2666063881bf6280c74190_1745132862.jpg",
                    "https://mp-api.michpro.store/products/e18b282c7281a5dceb7baedef56e2293_1745132862.jpg",
                    "https://mp-api.michpro.store/products/f995214fda7e29cd441ad5096f0681de_1745132862.jpg",
                    "https://mp-api.michpro.store/products/c70f9172727e3205fc849793858bd204_1745132862.jpg",
                    "https://mp-api.michpro.store/products/993cad5302bba6658b075bb52b716a58_1745132862.jpg",
                    "https://mp-api.michpro.store/products/47bb0612ec1787d3c0b93b9a6183b47a_1745132862.jpg",
                    "https://mp-api.michpro.store/products/2beb219d4049c685fac9a79cec12a52e_1745132862.jpg"
                ],
                "description": "<p class=\"p\"><strong>MICHPRO Mp 201C Charger: True Power, Dual Fast Charging, 6 Fold Protection with Night Light!</strong></p>\r\n<p class=\"p\"><strong><u>&nbsp;</u></strong></p>\r\n<p class=\"p\"><strong><u>True Power, A Trustworthy Choice</u></strong></p>\r\n<p class=\"p\">In the current market, many chargers have false power markings. The power stated on the packaging is far from the actual one. However, MICHPRO has always adhered to integrity. The power marked on the Mp 201C charger is the real power. What you see is what you get. You can buy it with complete peace of mind.</p>\r\n<p class=\"p\"><strong><u>2.4A Dual USB Ports, Double Fast Charging</u></strong></p>\r\n<p class=\"p\">The Mp 201C is equipped with two USB charging ports, both supporting 2.4A fast charging. Whether you want to charge your phone and tablet simultaneously or power up other devices, it can achieve fast charging efficiently, meeting your multi device charging needs.</p>\r\n<p class=\"p\"><strong><u>Built in Night Light, Technological and Practical</u></strong></p>\r\n<p class=\"p\">This charger is uniquely equipped with a night light, showing a sense of technology. At night when charging, it can serve as a night light, providing dim lighting for your night activities, preventing you from bumping in the dark and adding convenience to your life.</p>\r\n<p class=\"p\"><strong><u>Charge Two Devices Simultaneously without Losing Speed</u></strong></p>\r\n<p class=\"p\">Even when connecting two different devices for charging at the same time, the Mp 201C can intelligently distribute the current to ensure that each device is charged at a speed of 2.4A. The charging efficiency remains unaffected, allowing your devices to quickly return to a full charged state.</p>\r\n<p class=\"p\"><strong><u>High end Chip, 6 Fold Protection</u></strong></p>\r\n<p class=\"p\">It uses a high end customized chip with 6 fold protection functions. It can intelligently recognize the device's needs and achieve precise charging. When the device is fully charged, it will automatically cut off the power to prevent over charging from damaging the battery, providing all round protection for your device.</p>\r\n<p class=\"p\"><strong><u>High quality Materials, British Design</u></strong></p>\r\n<p class=\"p\">Made of high quality materials, it ensures the charger's durability and stability. It is carefully designed by a British designer, with a fashionable and unique appearance. It is not only a practical charging tool but also a home item that enhances the style.</p>\r\n<p class=\"p\"><strong><u>&nbsp;</u></strong></p>\r\n<p class=\"p\"><strong><u>&nbsp;</u></strong></p>\r\n<p class=\"p\"><strong><u>Product Parameters</u></strong></p>\r\n<ul>\r\n<li class=\"p\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->Brand: MICHPRO</li>\r\n<li class=\"p\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->Model: Mp 201C</li>\r\n<li class=\"p\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->Power: 2.4A Dual USB&nbsp;Ports</li>\r\n<li class=\"p\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->Number of Charging Ports: 2</li>\r\n<li class=\"p\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->Cable: Usb to Type-C</li>\r\n<li class=\"p\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->Features: True power, 2.4A fast charging on dual ports, built in night light, no speed reduction when charging two devices simultaneously, 6 fold protection with high end customized chip, high quality materials and British design</li>\r\n<li class=\"p\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->Standards: US, EU, UK standards</li>\r\n<li class=\"p\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->Origin: Hong Kong</li>\r\n</ul>\r\n<p class=\"p\">&nbsp;</p>\r\n<p class=\"p\"><strong>Product Package Contents</strong></p>\r\n<ul>\r\n<li class=\"p\">Charger x1</li>\r\n<li class=\"p\">Instruction Manual x1</li>\r\n<li class=\"p\">Fast Charging U<span style=\"font-family: Calibri;\">sb</span>&nbsp;to Type-C&nbsp;Cable x1</li>\r\n</ul>\r\n<p class=\"p\"><strong>&nbsp;Warranty</strong></p>\r\n<ul>\r\n<li class=\"p\">&nbsp;<!--[endif]-->One year warranty for MichPro product</li>\r\n<li class=\"p\">&nbsp;Customer comes first.</li>\r\n<li class=\"p\">&nbsp;Our confidence in product quality.</li>\r\n<li class=\"p\">&nbsp;Your peace of mind in using.</li>\r\n</ul>",
                "specifications": "{\"Charger:\":\"2.4A\",\"Cable:\":\"USB-TC data cable 1m Black\",\"Ports:\":\"dual USB-A port\"}",
                "colors": null,
                "price": "15000.00",
                "featured": 0,
                "top_seller": 0,
                "rating": "0.0",
                "discount": "0.00",
                "shipping_fee": "1500.00",
                "quantity": 1000,
                "created_at": "2024-11-24T16:43:07.000000Z",
                "updated_at": "2025-04-20T07:07:42.000000Z",
                "category": {
                    "id": 15,
                    "name": "Charger & Cable",
                    "image": "https://mp-api.michpro.store/categories/fW0fuznPGkFKHDSqea8aBbiURtSn3jzKZ4O1iuu7.jpg",
                    "description": "Fast charging",
                    "slug": "charger-cable",
                    "created_at": "2024-11-24T16:21:24.000000Z",
                    "updated_at": "2025-03-19T15:58:20.000000Z"
                }
            },
            {
                "id": 112,
                "category_id": 10,
                "name": "MichPro 5C",
                "slug": "michpro-5c-mich",
                "images": [
                    "https://mp-api.michpro.store/products/1cce27cb62affd7b17c2097bfbec9714_1736289124.jpg",
                    "https://mp-api.michpro.store/products/868a0c95c18a06ced5a7baa8328cf149_1736289124.jpg",
                    "https://mp-api.michpro.store/products/7bbce11ea09360fd7a126395d3bd61ba_1736289124.jpg",
                    "https://mp-api.michpro.store/products/49773ab652c65f723f7e30d0bc60308f_1736289124.jpg"
                ],
                "description": "MichPro 5C MICH",
                "specifications": "{\"Model\":\"BL-5C\",\"Capacity\":\"1200mAh\"}",
                "colors": null,
                "price": "3000.00",
                "featured": 0,
                "top_seller": 0,
                "rating": "0.0",
                "discount": "2.00",
                "shipping_fee": "0.00",
                "quantity": 2000,
                "created_at": "2024-11-21T10:32:22.000000Z",
                "updated_at": "2025-04-15T08:20:47.000000Z",
                "category": {
                    "id": 10,
                    "name": "External Phone Battery",
                    "image": "https://mp-api.michpro.store/categories/13yW2LcOeH5hHB7Qw3HYfEbl6T2lzOlPn0zQGsUr.jpg",
                    "description": "High-end external mobile phone battery, high capacity, long standby.",
                    "slug": "batteries",
                    "created_at": "2024-09-02T09:20:53.000000Z",
                    "updated_at": "2024-11-21T06:15:29.000000Z"
                }
            },
            {
                "id": 111,
                "category_id": 10,
                "name": "MichPro M26G",
                "slug": "michpro-m26g",
                "images": [
                    "https://mp-api.michpro.store/products/80d90f6fae11b8532c711dca23e5b6c9_1732184630.png"
                ],
                "description": "MichPro M26G",
                "specifications": "{\"Model\":\"M26G\",\"Capacity\":\"2400mAh\"}",
                "colors": null,
                "price": "3000.00",
                "featured": 0,
                "top_seller": 0,
                "rating": "0.0",
                "discount": "2.00",
                "shipping_fee": "0.00",
                "quantity": 3000,
                "created_at": "2024-11-21T10:23:50.000000Z",
                "updated_at": "2024-11-21T10:23:50.000000Z",
                "category": {
                    "id": 10,
                    "name": "External Phone Battery",
                    "image": "https://mp-api.michpro.store/categories/13yW2LcOeH5hHB7Qw3HYfEbl6T2lzOlPn0zQGsUr.jpg",
                    "description": "High-end external mobile phone battery, high capacity, long standby.",
                    "slug": "batteries",
                    "created_at": "2024-09-02T09:20:53.000000Z",
                    "updated_at": "2024-11-21T06:15:29.000000Z"
                }
            },
            {
                "id": 110,
                "category_id": 10,
                "name": "MIchPro 5C BLACK",
                "slug": "michpro-5c-black",
                "images": [
                    "https://mp-api.michpro.store/products/f83b92dcf5616237052f2414f87e8b9d_1736289432.jpg",
                    "https://mp-api.michpro.store/products/c7ac0a95734851cf2b0ec3b32857f101_1736289432.jpg",
                    "https://mp-api.michpro.store/products/afb779ef83f37657eaaa0e7d53e74ebc_1736289432.jpg",
                    "https://mp-api.michpro.store/products/9d0beba9034e2df64f9237675000c38e_1736289432.jpg"
                ],
                "description": "<p>MIchPro 5C BLACK</p>",
                "specifications": "{\"Model\":\"5C BLACK\",\"Capacity\":\"1500mAh\"}",
                "colors": null,
                "price": "3000.00",
                "featured": 0,
                "top_seller": 0,
                "rating": "0.0",
                "discount": "2.00",
                "shipping_fee": "0.00",
                "quantity": 0,
                "created_at": "2024-11-21T10:19:22.000000Z",
                "updated_at": "2025-04-15T11:04:40.000000Z",
                "category": {
                    "id": 10,
                    "name": "External Phone Battery",
                    "image": "https://mp-api.michpro.store/categories/13yW2LcOeH5hHB7Qw3HYfEbl6T2lzOlPn0zQGsUr.jpg",
                    "description": "High-end external mobile phone battery, high capacity, long standby.",
                    "slug": "batteries",
                    "created_at": "2024-09-02T09:20:53.000000Z",
                    "updated_at": "2024-11-21T06:15:29.000000Z"
                }
            },
            {
                "id": 109,
                "category_id": 14,
                "name": "MichPro 10000mAh Powerbank - Black",
                "slug": "michpro-10000mah-powerbank-black",
                "images": [
                    "https://mp-api.michpro.store/products/d2bc27203e9bb23fde5e0bcea3caed8d_1732176445.jpg",
                    "https://mp-api.michpro.store/products/6d739b7651e335deb1a9dc6ebc5a3bd5_1732176445.jpg",
                    "https://mp-api.michpro.store/products/d208a4850e516ca3dfb71a4dffb1969e_1732176445.jpg",
                    "https://mp-api.michpro.store/products/3d1bda0e7d297c26526bef2c580923da_1732176445.jpg"
                ],
                "description": "Description\r\nThe MichPro 10000mAh Powerbank in black is engineered for those who demand reliable power on the go. With a robust lithium polymer battery, it offers an impressive capacity of 10000mAh, ensuring your devices stay charged throughout the day. Featuring versatile charging options, the power bank includes Type-C, Micro, and USB-A ports, allowing you to charge multiple devices simultaneously. Its 15W charging capability delivers fast and efficient power, with outputs of up to 2.1A for USB-A ports. The compact and slim design makes it easy to carry, while the LED indicator keeps you informed of the battery level. Ideal for travel, this power bank is a perfect companion for anyone needing dependable power access anytime, anywhere.\r\n\r\nSpecification\r\n​Battery Capacity: 10000mAh\r\nBattery Type: Lithium Polymer\r\nType-C Input: 5V/2.4A, 9V/2A, 12V/1.5A\r\nMicro Input: 5V/2A, 9V/2A, 12V/1.5A\r\nType-C Output: 5V/3A, 9V/2.22A, 12V/1.67A 15W Max\r\nUSB-A Output: 5V/3A, 9V/2A, 12V/1.5A 15W Max\r\n\r\nFeatures\r\nMicro Port\r\nUSB-A Port\r\nUSB-C Port\r\nCompact & Slim\r\nLED Indicator\r\nCharge Multiple Devices\r\n15W & 2.1A Charging",
                "specifications": "{\"Model\":\"011W\",\"Capacity\":\"10000mAh\",\"*\":\"Compact & Slim\"}",
                "colors": null,
                "price": "15000.00",
                "featured": 0,
                "top_seller": 1,
                "rating": "0.0",
                "discount": "0.00",
                "shipping_fee": "0.00",
                "quantity": 1000,
                "created_at": "2024-11-21T08:07:25.000000Z",
                "updated_at": "2025-01-20T16:37:40.000000Z",
                "category": {
                    "id": 14,
                    "name": "Power Bank",
                    "image": "https://mp-api.michpro.store/categories/ENBhPQai6zo44STu7OtRICltbF4IGPsM1I0RucB3.jpg",
                    "description": "High-end mobile power bank",
                    "slug": "power-bank",
                    "created_at": "2024-11-21T07:41:20.000000Z",
                    "updated_at": "2024-12-14T16:57:22.000000Z"
                }
            },
            {
                "id": 108,
                "category_id": 13,
                "name": "MichPro BL-30VX",
                "slug": "mich-pro-bl-30vx",
                "images": [
                    "https://mp-api.michpro.store/products/4d388b38d0921a1afda72473c82e33fc_1731739937.jpg",
                    "https://mp-api.michpro.store/products/071bdf356deb3ed9b022b71004f0756f_1731739937.jpg",
                    "https://mp-api.michpro.store/products/b14962653f3ca5745425f61324089ed3_1731739937.jpg",
                    "https://mp-api.michpro.store/products/806e343f295b73c2c8ccdb876e8c5d35_1731739937.jpg"
                ],
                "description": "MichPro BL-30VX",
                "specifications": "{\"Capacity\":\"3250mAh\",\"Model\":\"BL-30VX\"}",
                "colors": null,
                "price": "30000.00",
                "featured": 0,
                "top_seller": 0,
                "rating": "0.0",
                "discount": "30.00",
                "shipping_fee": "0.00",
                "quantity": 5000,
                "created_at": "2024-11-16T06:52:17.000000Z",
                "updated_at": "2024-11-21T06:20:41.000000Z",
                "category": {
                    "id": 13,
                    "name": "Built-in Phone Battery",
                    "image": "https://mp-api.michpro.store/categories/NifRfsL3egxfmE7FF0RTpghP4SKAaIOhlyQuZzXR.jpg",
                    "description": "Ultra-high capacity series, give you the longest time to enjoy standby, MichPro exclusive patented technology, longer battery life, temperature control.",
                    "slug": "built-in-phone-battery",
                    "created_at": "2024-11-21T06:19:46.000000Z",
                    "updated_at": "2024-11-21T06:19:46.000000Z"
                }
            },
            {
                "id": 107,
                "category_id": 13,
                "name": "MichPro BL-34BT",
                "slug": "mich-pro-bl-34bt",
                "images": [
                    "https://mp-api.michpro.store/products/86ad6d19c381ad2c98af2154ad277e2e_1731739731.jpg",
                    "https://mp-api.michpro.store/products/16ea6312cd77f72645cc28a7acfe0f6a_1731739731.jpg",
                    "https://mp-api.michpro.store/products/ab2f6e62fa966b13eef6f15f80994c70_1731739731.jpg",
                    "https://mp-api.michpro.store/products/9acad249681023e9d741e76bcca32547_1731739731.jpg"
                ],
                "description": "Mich Pro BL-34BT",
                "specifications": "{\"Model \":\"Mich Pro BL-34BT\",\"Capacity\":\"4300mAh\"}",
                "colors": null,
                "price": "30000.00",
                "featured": 0,
                "top_seller": 0,
                "rating": "0.0",
                "discount": "20.00",
                "shipping_fee": "0.00",
                "quantity": 5000,
                "created_at": "2024-11-16T06:48:51.000000Z",
                "updated_at": "2024-11-21T07:36:40.000000Z",
                "category": {
                    "id": 13,
                    "name": "Built-in Phone Battery",
                    "image": "https://mp-api.michpro.store/categories/NifRfsL3egxfmE7FF0RTpghP4SKAaIOhlyQuZzXR.jpg",
                    "description": "Ultra-high capacity series, give you the longest time to enjoy standby, MichPro exclusive patented technology, longer battery life, temperature control.",
                    "slug": "built-in-phone-battery",
                    "created_at": "2024-11-21T06:19:46.000000Z",
                    "updated_at": "2024-11-21T06:19:46.000000Z"
                }
            },
            {
                "id": 106,
                "category_id": 13,
                "name": "MichPro BL-36BT",
                "slug": "mich-pro-bl-36bt",
                "images": [
                    "https://mp-api.michpro.store/products/2fe34bb9314a8f839aa59b20c79b44f6_1731739464.jpg",
                    "https://mp-api.michpro.store/products/3db3153413409067c1a82f9469c6cc23_1731739464.jpg",
                    "https://mp-api.michpro.store/products/b180010bf256f8d00acaa20c9bdefc75_1731739464.jpg"
                ],
                "description": "Mich Pro BL-36BT",
                "specifications": "{\"Model\":\"Mich Pro BL-36BT\",\"Capacity\":\"4000mAh\"}",
                "colors": null,
                "price": "30000.00",
                "featured": 0,
                "top_seller": 1,
                "rating": "0.0",
                "discount": "20.00",
                "shipping_fee": "0.00",
                "quantity": 5000,
                "created_at": "2024-11-16T06:44:24.000000Z",
                "updated_at": "2024-11-21T07:37:04.000000Z",
                "category": {
                    "id": 13,
                    "name": "Built-in Phone Battery",
                    "image": "https://mp-api.michpro.store/categories/NifRfsL3egxfmE7FF0RTpghP4SKAaIOhlyQuZzXR.jpg",
                    "description": "Ultra-high capacity series, give you the longest time to enjoy standby, MichPro exclusive patented technology, longer battery life, temperature control.",
                    "slug": "built-in-phone-battery",
                    "created_at": "2024-11-21T06:19:46.000000Z",
                    "updated_at": "2024-11-21T06:19:46.000000Z"
                }
            },
            {
                "id": 105,
                "category_id": 13,
                "name": "MichPro BL-39KX/39EX",
                "slug": "mich-pro-bl-39kx-39ex",
                "images": [
                    "https://mp-api.michpro.store/products/68855244dd4b8bb9137d6610c9c46a80_1731739157.jpg",
                    "https://mp-api.michpro.store/products/58f45d2e099fa37ed2900b6aaeeb3076_1731739157.jpg",
                    "https://mp-api.michpro.store/products/d79a603d71330cf1636df5af7d57b25d_1731739157.jpg",
                    "https://mp-api.michpro.store/products/bb0c615fb2bdd66e7ce681891bf64aef_1731739157.jpg"
                ],
                "description": "Mich Pro BL-39KX",
                "specifications": "{\"Model\":\"Mich Pro BL-39KX\",\"Capacity\":\"4300mAh\"}",
                "colors": null,
                "price": "34000.00",
                "featured": 0,
                "top_seller": 1,
                "rating": "0.0",
                "discount": "15.00",
                "shipping_fee": "0.00",
                "quantity": 5000,
                "created_at": "2024-11-16T06:39:17.000000Z",
                "updated_at": "2024-11-21T07:37:34.000000Z",
                "category": {
                    "id": 13,
                    "name": "Built-in Phone Battery",
                    "image": "https://mp-api.michpro.store/categories/NifRfsL3egxfmE7FF0RTpghP4SKAaIOhlyQuZzXR.jpg",
                    "description": "Ultra-high capacity series, give you the longest time to enjoy standby, MichPro exclusive patented technology, longer battery life, temperature control.",
                    "slug": "built-in-phone-battery",
                    "created_at": "2024-11-21T06:19:46.000000Z",
                    "updated_at": "2024-11-21T06:19:46.000000Z"
                }
            },
            {
                "id": 104,
                "category_id": 13,
                "name": "MichPro BL-43BX",
                "slug": "mich-pro-bl-43bx",
                "images": [
                    "https://mp-api.michpro.store/products/5f22fcc6596a792b1a332472f471e350_1731738763.jpg",
                    "https://mp-api.michpro.store/products/f599e558b90c27f7249cf7d8d930c3a8_1731738763.jpg",
                    "https://mp-api.michpro.store/products/ffbab3aa744a53da46ffe3d532ee4af3_1731738763.jpg",
                    "https://mp-api.michpro.store/products/01e9e144da7a38c9f209f0ab899fb7c3_1731738763.jpg"
                ],
                "description": "Mich Pro BL-43BX",
                "specifications": "{\"Model\":\"Mich Pro BL-43BX\",\"Capacity\":\"4300mAh\"}",
                "colors": null,
                "price": "80000.00",
                "featured": 0,
                "top_seller": 0,
                "rating": "0.0",
                "discount": "60.00",
                "shipping_fee": "0.00",
                "quantity": 5000,
                "created_at": "2024-11-16T06:32:43.000000Z",
                "updated_at": "2024-11-21T07:37:56.000000Z",
                "category": {
                    "id": 13,
                    "name": "Built-in Phone Battery",
                    "image": "https://mp-api.michpro.store/categories/NifRfsL3egxfmE7FF0RTpghP4SKAaIOhlyQuZzXR.jpg",
                    "description": "Ultra-high capacity series, give you the longest time to enjoy standby, MichPro exclusive patented technology, longer battery life, temperature control.",
                    "slug": "built-in-phone-battery",
                    "created_at": "2024-11-21T06:19:46.000000Z",
                    "updated_at": "2024-11-21T06:19:46.000000Z"
                }
            },
            {
                "id": 103,
                "category_id": 13,
                "name": "MichPro BL-49DT-49DI",
                "slug": "mich-pro-bl-49dt-49di",
                "images": [
                    "https://mp-api.michpro.store/products/abe5deddc3ac1b823c0f75493616f854_1731738463.jpg",
                    "https://mp-api.michpro.store/products/99837981a3c4e484d0b91e3d249325c9_1731738463.jpg",
                    "https://mp-api.michpro.store/products/03dbaa395565d49ae16659d6889144f8_1731738463.jpg",
                    "https://mp-api.michpro.store/products/6ea1d933defa32d86d5033906fdaf722_1731738463.jpg"
                ],
                "description": "Mich Pro BL-49DT-49DI",
                "specifications": "{\"Model\":\"Mich Pro BL-49DT-49DI\",\"Capacity\":\"5300mAh\"}",
                "colors": null,
                "price": "60000.00",
                "featured": 0,
                "top_seller": 1,
                "rating": "0.0",
                "discount": "30.00",
                "shipping_fee": "0.00",
                "quantity": 30000,
                "created_at": "2024-11-16T06:27:43.000000Z",
                "updated_at": "2024-11-21T07:38:19.000000Z",
                "category": {
                    "id": 13,
                    "name": "Built-in Phone Battery",
                    "image": "https://mp-api.michpro.store/categories/NifRfsL3egxfmE7FF0RTpghP4SKAaIOhlyQuZzXR.jpg",
                    "description": "Ultra-high capacity series, give you the longest time to enjoy standby, MichPro exclusive patented technology, longer battery life, temperature control.",
                    "slug": "built-in-phone-battery",
                    "created_at": "2024-11-21T06:19:46.000000Z",
                    "updated_at": "2024-11-21T06:19:46.000000Z"
                }
            },
            {
                "id": 102,
                "category_id": 13,
                "name": "MichPro BL-49ET",
                "slug": "mich-pro-bl-49et",
                "images": [
                    "https://mp-api.michpro.store/products/eaef510b5b615a5f28ad15ecbfbdb9bc_1731738061.jpg",
                    "https://mp-api.michpro.store/products/1fd212fcde1b1498f77e52a3ca1b1153_1731738061.jpg",
                    "https://mp-api.michpro.store/products/530744b7e2ada257d3358a5caaf42004_1731738061.jpg",
                    "https://mp-api.michpro.store/products/b55f4bd80996a2ecd9a958a83e3c5c54_1731738061.jpg"
                ],
                "description": "Mich Pro BL-49ET",
                "specifications": "{\"Model\":\"Mich Pro BL-49ET\",\"Capacity\":\"5300mAh\"}",
                "colors": null,
                "price": "50000.00",
                "featured": 0,
                "top_seller": 1,
                "rating": "0.0",
                "discount": "40.00",
                "shipping_fee": "0.00",
                "quantity": 30000,
                "created_at": "2024-11-16T06:21:01.000000Z",
                "updated_at": "2024-11-21T07:38:47.000000Z",
                "category": {
                    "id": 13,
                    "name": "Built-in Phone Battery",
                    "image": "https://mp-api.michpro.store/categories/NifRfsL3egxfmE7FF0RTpghP4SKAaIOhlyQuZzXR.jpg",
                    "description": "Ultra-high capacity series, give you the longest time to enjoy standby, MichPro exclusive patented technology, longer battery life, temperature control.",
                    "slug": "built-in-phone-battery",
                    "created_at": "2024-11-21T06:19:46.000000Z",
                    "updated_at": "2024-11-21T06:19:46.000000Z"
                }
            },
            {
                "id": 101,
                "category_id": 10,
                "name": "Ultra High Capacity  BL-49FT",
                "slug": "mich-pro-bl-49ft",
                "images": [
                    "https://mp-api.michpro.store/products/91254eb081be39bea6d43f6e32bbf212_1731737801.jpg",
                    "https://mp-api.michpro.store/products/a74d2de442bb6d89000532cbc1001678_1731737801.jpg",
                    "https://mp-api.michpro.store/products/b620fe2b39c79b327328514615d923ea_1731737801.jpg",
                    "https://mp-api.michpro.store/products/e5b56aaad9fec233308615b8be2a570f_1731737801.jpg"
                ],
                "description": "Mich Pro BL-49FT for X650/X655/X656/X665/X657/HOT8/ CD7/P0P4/P0P6/KG6/KD7/BE7/BE8/KE5/P17/KD6/S17/S18/KF7/P38",
                "specifications": "{\"Model\":\"Mich Pro BL-49FT\",\"Capacity\":\"5200mAh\"}",
                "colors": null,
                "price": "18000.00",
                "featured": 1,
                "top_seller": 1,
                "rating": "0.0",
                "discount": "30.00",
                "shipping_fee": "0.00",
                "quantity": 20000,
                "created_at": "2024-11-16T06:16:41.000000Z",
                "updated_at": "2024-11-19T06:55:42.000000Z",
                "category": {
                    "id": 10,
                    "name": "External Phone Battery",
                    "image": "https://mp-api.michpro.store/categories/13yW2LcOeH5hHB7Qw3HYfEbl6T2lzOlPn0zQGsUr.jpg",
                    "description": "High-end external mobile phone battery, high capacity, long standby.",
                    "slug": "batteries",
                    "created_at": "2024-09-02T09:20:53.000000Z",
                    "updated_at": "2024-11-21T06:15:29.000000Z"
                }
            },
            {
                "id": 100,
                "category_id": 13,
                "name": "MichPro BL-49GT",
                "slug": "mich-pro-bl-49gt",
                "images": [
                    "https://mp-api.michpro.store/products/173d613e710e35facf39111c5c53f7fb_1731735297.jpg",
                    "https://mp-api.michpro.store/products/ca164abdc17f030d0901270ea9b35956_1731735297.jpg",
                    "https://mp-api.michpro.store/products/964f5ae46f188293fd5491d0b53be072_1731735297.jpg"
                ],
                "description": "Mich Pro BL-49GT",
                "specifications": "{\"Model\":\"Mich Pro BL-49GT\",\"Capacity\":\"5200mAh\"}",
                "colors": null,
                "price": "50000.00",
                "featured": 0,
                "top_seller": 0,
                "rating": "0.0",
                "discount": "40.00",
                "shipping_fee": "0.00",
                "quantity": 30000,
                "created_at": "2024-11-16T05:34:57.000000Z",
                "updated_at": "2024-11-21T07:39:10.000000Z",
                "category": {
                    "id": 13,
                    "name": "Built-in Phone Battery",
                    "image": "https://mp-api.michpro.store/categories/NifRfsL3egxfmE7FF0RTpghP4SKAaIOhlyQuZzXR.jpg",
                    "description": "Ultra-high capacity series, give you the longest time to enjoy standby, MichPro exclusive patented technology, longer battery life, temperature control.",
                    "slug": "built-in-phone-battery",
                    "created_at": "2024-11-21T06:19:46.000000Z",
                    "updated_at": "2024-11-21T06:19:46.000000Z"
                }
            },
            {
                "id": 99,
                "category_id": 13,
                "name": "MichPro BL-51BX",
                "slug": "mich-pro-bl-51bx",
                "images": [
                    "https://mp-api.michpro.store/products/7a1af149f977782fe7de3253b9037ba5_1731734912.jpg",
                    "https://mp-api.michpro.store/products/84441ea942b572bd837efb032f2c6570_1731734912.jpg",
                    "https://mp-api.michpro.store/products/3fb1a1f021ad1f499cb739e18650f992_1731734912.jpg"
                ],
                "description": "Mich Pro BL-51BX",
                "specifications": "{\"Model\":\"Mich Pro BL-51BX\",\"Capacity\":\"5300mAh\"}",
                "colors": null,
                "price": "30000.00",
                "featured": 0,
                "top_seller": 1,
                "rating": "0.0",
                "discount": "30.00",
                "shipping_fee": "0.00",
                "quantity": 20000,
                "created_at": "2024-11-16T05:28:32.000000Z",
                "updated_at": "2024-11-21T07:39:30.000000Z",
                "category": {
                    "id": 13,
                    "name": "Built-in Phone Battery",
                    "image": "https://mp-api.michpro.store/categories/NifRfsL3egxfmE7FF0RTpghP4SKAaIOhlyQuZzXR.jpg",
                    "description": "Ultra-high capacity series, give you the longest time to enjoy standby, MichPro exclusive patented technology, longer battery life, temperature control.",
                    "slug": "built-in-phone-battery",
                    "created_at": "2024-11-21T06:19:46.000000Z",
                    "updated_at": "2024-11-21T06:19:46.000000Z"
                }
            },
            {
                "id": 98,
                "category_id": 10,
                "name": "MichPro BL-15DI",
                "slug": "mich-pro-bl-15di",
                "images": [
                    "https://mp-api.michpro.store/products/f9daec6f77b48eb52457a9602c44c242_1731667502.jpg",
                    "https://mp-api.michpro.store/products/0aa0ff301f1ee3f7f144e9c98fb3e128_1731667502.jpg",
                    "https://mp-api.michpro.store/products/35b062d2a8fa16b2182427f245ccaf85_1731667502.jpg",
                    "https://mp-api.michpro.store/products/d276a3333c4de06d964aebcb1aab14db_1731667502.jpg"
                ],
                "description": "Mich Pro BL-15DI",
                "specifications": "{\"Capacity\":\"1500mAh\",\"Model\":\"BL-15DI\"}",
                "colors": null,
                "price": "40000.00",
                "featured": 0,
                "top_seller": 0,
                "rating": "0.0",
                "discount": "10.00",
                "shipping_fee": "0.00",
                "quantity": 4000,
                "created_at": "2024-11-15T10:45:02.000000Z",
                "updated_at": "2024-11-21T09:58:48.000000Z",
                "category": {
                    "id": 10,
                    "name": "External Phone Battery",
                    "image": "https://mp-api.michpro.store/categories/13yW2LcOeH5hHB7Qw3HYfEbl6T2lzOlPn0zQGsUr.jpg",
                    "description": "High-end external mobile phone battery, high capacity, long standby.",
                    "slug": "batteries",
                    "created_at": "2024-09-02T09:20:53.000000Z",
                    "updated_at": "2024-11-21T06:15:29.000000Z"
                }
            },
            {
                "id": 97,
                "category_id": 10,
                "name": "Mich Pro BL-25IT",
                "slug": "mich-pro-bl-25it",
                "images": [
                    "https://mp-api.michpro.store/products/f15ca5d244668e4fa6756d60bde434d3_1731665997.jpg",
                    "https://mp-api.michpro.store/products/e833b012b59f0b51dc83fb1bc343e537_1731665997.jpg",
                    "https://mp-api.michpro.store/products/0e58ca30eef962de91e25ebaac8aab09_1731665997.jpg",
                    "https://mp-api.michpro.store/products/78b0298de41797d5b8f84cfc03368dbb_1731665997.jpg"
                ],
                "description": "Mich Pro BL-25IT",
                "specifications": "{\"Model\":\"Mich Pro BL-25IT\",\"Capacity\":\"2800mAh\"}",
                "colors": null,
                "price": "40000.00",
                "featured": 0,
                "top_seller": 1,
                "rating": "0.0",
                "discount": "20.00",
                "shipping_fee": "0.00",
                "quantity": 4000,
                "created_at": "2024-11-15T10:19:57.000000Z",
                "updated_at": "2024-11-15T10:19:57.000000Z",
                "category": {
                    "id": 10,
                    "name": "External Phone Battery",
                    "image": "https://mp-api.michpro.store/categories/13yW2LcOeH5hHB7Qw3HYfEbl6T2lzOlPn0zQGsUr.jpg",
                    "description": "High-end external mobile phone battery, high capacity, long standby.",
                    "slug": "batteries",
                    "created_at": "2024-09-02T09:20:53.000000Z",
                    "updated_at": "2024-11-21T06:15:29.000000Z"
                }
            },
            {
                "id": 96,
                "category_id": 10,
                "name": "Mich Pro BL-11CI",
                "slug": "mich-pro-bl-11ci",
                "images": [
                    "https://mp-api.michpro.store/products/bc94ec3b80b56a1504185fdebe144efd_1731665103.jpg",
                    "https://mp-api.michpro.store/products/15d2a086bd2b918d496226e9cc34f1ed_1731665103.jpg",
                    "https://mp-api.michpro.store/products/b136d7539bdb67b7c446df1e72e15104_1731665103.jpg",
                    "https://mp-api.michpro.store/products/5a7fd37830c262faecc3c6bc088a075f_1731665103.jpg"
                ],
                "description": "Mich Pro BL-11CI",
                "specifications": "{\"Model\":\"Mich Pro BL-11CI\",\"Capacity\":\"1300mAh\"}",
                "colors": null,
                "price": "30000.00",
                "featured": 0,
                "top_seller": 1,
                "rating": "0.0",
                "discount": "10.00",
                "shipping_fee": "0.00",
                "quantity": 2000,
                "created_at": "2024-11-15T10:05:03.000000Z",
                "updated_at": "2024-11-15T10:05:03.000000Z",
                "category": {
                    "id": 10,
                    "name": "External Phone Battery",
                    "image": "https://mp-api.michpro.store/categories/13yW2LcOeH5hHB7Qw3HYfEbl6T2lzOlPn0zQGsUr.jpg",
                    "description": "High-end external mobile phone battery, high capacity, long standby.",
                    "slug": "batteries",
                    "created_at": "2024-09-02T09:20:53.000000Z",
                    "updated_at": "2024-11-21T06:15:29.000000Z"
                }
            },
            {
                "id": 95,
                "category_id": 10,
                "name": "Mich Pro C1",
                "slug": "mich-pro-c1-2",
                "images": [
                    "https://mp-api.michpro.store/products/80fba91af31bbff8f9b65d293ddc0f4d_1731408609.jpg",
                    "https://mp-api.michpro.store/products/dc1ccd2d33fe35a859d7a3f524327fe9_1731408609.jpg",
                    "https://mp-api.michpro.store/products/782ddcef2d28cbe6f344b438d1648f13_1731408609.jpg",
                    "https://mp-api.michpro.store/products/03e7b26c4f13e5347f8049c99429ec83_1731408609.jpg"
                ],
                "description": "Mich Pro C1",
                "specifications": "{\"Model\":\"Mich Pro C1 \",\"Capapcity\":\"2500mAh\"}",
                "colors": null,
                "price": "40000.00",
                "featured": 0,
                "top_seller": 1,
                "rating": "0.0",
                "discount": "10.00",
                "shipping_fee": "0.00",
                "quantity": 3000,
                "created_at": "2024-11-12T10:50:09.000000Z",
                "updated_at": "2024-11-12T10:50:09.000000Z",
                "category": {
                    "id": 10,
                    "name": "External Phone Battery",
                    "image": "https://mp-api.michpro.store/categories/13yW2LcOeH5hHB7Qw3HYfEbl6T2lzOlPn0zQGsUr.jpg",
                    "description": "High-end external mobile phone battery, high capacity, long standby.",
                    "slug": "batteries",
                    "created_at": "2024-09-02T09:20:53.000000Z",
                    "updated_at": "2024-11-21T06:15:29.000000Z"
                }
            },
            {
                "id": 94,
                "category_id": 10,
                "name": "Mich Pro BL - 4LT",
                "slug": "mich-pro-bl-4lt",
                "images": [
                    "https://mp-api.michpro.store/products/f87e86c0edccc22ccf9969752cc78d95_1731408243.jpg",
                    "https://mp-api.michpro.store/products/f48f1d84de12747f9aa807f322be694f_1731408243.jpg",
                    "https://mp-api.michpro.store/products/a15cb8ba7dc7f0f694af88e619a5506b_1731408243.jpg",
                    "https://mp-api.michpro.store/products/b28ba692443c54d652a6bcbdcc5d6147_1731408243.jpg"
                ],
                "description": "Mich Pro BL - 4LT",
                "specifications": "{\"Model\":\"Mich Pro BL - 4LT\",\"Capacity\":\"1500mAh\"}",
                "colors": null,
                "price": "20000.00",
                "featured": 0,
                "top_seller": 0,
                "rating": "0.0",
                "discount": "20.00",
                "shipping_fee": "0.00",
                "quantity": 2000,
                "created_at": "2024-11-12T10:44:03.000000Z",
                "updated_at": "2024-11-12T10:44:03.000000Z",
                "category": {
                    "id": 10,
                    "name": "External Phone Battery",
                    "image": "https://mp-api.michpro.store/categories/13yW2LcOeH5hHB7Qw3HYfEbl6T2lzOlPn0zQGsUr.jpg",
                    "description": "High-end external mobile phone battery, high capacity, long standby.",
                    "slug": "batteries",
                    "created_at": "2024-09-02T09:20:53.000000Z",
                    "updated_at": "2024-11-21T06:15:29.000000Z"
                }
            },
            {
                "id": 93,
                "category_id": 10,
                "name": "Mich Pro C1",
                "slug": "mich-pro-c1",
                "images": [
                    "https://mp-api.michpro.store/products/35dcbade999c2ef9fb736ff89948701b_1731407656.jpg",
                    "https://mp-api.michpro.store/products/e41c69376c2116302ba157b562864ce9_1731407656.jpg",
                    "https://mp-api.michpro.store/products/391ea74a8b5407f58d2b223ebe969a12_1731407656.jpg",
                    "https://mp-api.michpro.store/products/5dd9282f95e02ba18e8add851dad735a_1731407656.jpg"
                ],
                "description": "Mich Pro C1",
                "specifications": "{\"Model\":\"Mich Pro C1 \",\"Capapcity\":\"2500mAh\"}",
                "colors": null,
                "price": "40000.00",
                "featured": 0,
                "top_seller": 1,
                "rating": "0.0",
                "discount": "10.00",
                "shipping_fee": "0.00",
                "quantity": 3000,
                "created_at": "2024-11-12T10:34:16.000000Z",
                "updated_at": "2024-11-12T10:34:16.000000Z",
                "category": {
                    "id": 10,
                    "name": "External Phone Battery",
                    "image": "https://mp-api.michpro.store/categories/13yW2LcOeH5hHB7Qw3HYfEbl6T2lzOlPn0zQGsUr.jpg",
                    "description": "High-end external mobile phone battery, high capacity, long standby.",
                    "slug": "batteries",
                    "created_at": "2024-09-02T09:20:53.000000Z",
                    "updated_at": "2024-11-21T06:15:29.000000Z"
                }
            },
            {
                "id": 92,
                "category_id": 10,
                "name": "Mich Pro C2",
                "slug": "mich-pro-c2",
                "images": [
                    "https://mp-api.michpro.store/products/8a8b64f6a7b23acbdaf8cc59c58c5d08_1731405390.jpg",
                    "https://mp-api.michpro.store/products/4dd9b8286f2fe8ca84491e01f9e29e14_1731405390.jpg",
                    "https://mp-api.michpro.store/products/45f99d1ed446f81c548f627006151ae9_1731405390.jpg",
                    "https://mp-api.michpro.store/products/8380f718697ef0a1acc9b80c3fba21f7_1731405390.jpg"
                ],
                "description": "Mich Pro C2",
                "specifications": "{\"Model\":\"Mich Pro C2\",\"Capacity\":\"2800mAh\"}",
                "colors": null,
                "price": "30000.00",
                "featured": 0,
                "top_seller": 1,
                "rating": "0.0",
                "discount": "15.00",
                "shipping_fee": "0.00",
                "quantity": 4000,
                "created_at": "2024-11-12T09:56:30.000000Z",
                "updated_at": "2024-11-12T09:56:30.000000Z",
                "category": {
                    "id": 10,
                    "name": "External Phone Battery",
                    "image": "https://mp-api.michpro.store/categories/13yW2LcOeH5hHB7Qw3HYfEbl6T2lzOlPn0zQGsUr.jpg",
                    "description": "High-end external mobile phone battery, high capacity, long standby.",
                    "slug": "batteries",
                    "created_at": "2024-09-02T09:20:53.000000Z",
                    "updated_at": "2024-11-21T06:15:29.000000Z"
                }
            },
            {
                "id": 91,
                "category_id": 10,
                "name": "Mich Pro MG900",
                "slug": "mich-pro-mg900",
                "images": [
                    "https://mp-api.michpro.store/products/f85034fbb433944b2eead4f1d7e57dd6_1731403268.jpg",
                    "https://mp-api.michpro.store/products/8bfd07a9ede65d0b406d3c9c892a1a96_1731403268.jpg",
                    "https://mp-api.michpro.store/products/00af6bad2b73b0f75e62a4271768c7a0_1731403268.jpg",
                    "https://mp-api.michpro.store/products/27e31d166549cfac049d29f47873432f_1731403268.jpg"
                ],
                "description": "MICH Pro MG900",
                "specifications": "{\"Model \":\"MICH Pro MG900\",\"Capacity\":\"2800mAh\"}",
                "colors": null,
                "price": "50000.00",
                "featured": 0,
                "top_seller": 1,
                "rating": "0.0",
                "discount": "20.00",
                "shipping_fee": "0.00",
                "quantity": 4090,
                "created_at": "2024-11-12T09:21:08.000000Z",
                "updated_at": "2024-11-12T09:27:51.000000Z",
                "category": {
                    "id": 10,
                    "name": "External Phone Battery",
                    "image": "https://mp-api.michpro.store/categories/13yW2LcOeH5hHB7Qw3HYfEbl6T2lzOlPn0zQGsUr.jpg",
                    "description": "High-end external mobile phone battery, high capacity, long standby.",
                    "slug": "batteries",
                    "created_at": "2024-09-02T09:20:53.000000Z",
                    "updated_at": "2024-11-21T06:15:29.000000Z"
                }
            },
            {
                "id": 90,
                "category_id": 10,
                "name": "Mich Pro Vivo65",
                "slug": "mich-pro-vivo65-2",
                "images": [
                    "https://mp-api.michpro.store/products/ec13102327aed8b8de11edab2c7c43ad_1731401867.jpg",
                    "https://mp-api.michpro.store/products/7e46e121eb4fe0b90956d60f0d5cf202_1731401867.jpg",
                    "https://mp-api.michpro.store/products/3509362f6314073e864fd957571addc7_1731401867.jpg",
                    "https://mp-api.michpro.store/products/23485844ba0901f525c5dc0d2819f296_1731401867.jpg"
                ],
                "description": "Mich Pro Vivo65",
                "specifications": "{\"Model\":\"Mich Pro Vivo65\",\"Capacity\":\"1900mAh\"}",
                "colors": null,
                "price": "40000.00",
                "featured": 0,
                "top_seller": 1,
                "rating": "0.0",
                "discount": "35000.00",
                "shipping_fee": "0.00",
                "quantity": 5000,
                "created_at": "2024-11-12T08:57:47.000000Z",
                "updated_at": "2024-11-12T08:57:47.000000Z",
                "category": {
                    "id": 10,
                    "name": "External Phone Battery",
                    "image": "https://mp-api.michpro.store/categories/13yW2LcOeH5hHB7Qw3HYfEbl6T2lzOlPn0zQGsUr.jpg",
                    "description": "High-end external mobile phone battery, high capacity, long standby.",
                    "slug": "batteries",
                    "created_at": "2024-09-02T09:20:53.000000Z",
                    "updated_at": "2024-11-21T06:15:29.000000Z"
                }
            },
            {
                "id": 89,
                "category_id": 10,
                "name": "Mich Pro Vivo65",
                "slug": "mich-pro-vivo65",
                "images": [
                    "https://mp-api.michpro.store/products/7f3e5467bc621ec623e446edec5c7787_1731401844.jpg",
                    "https://mp-api.michpro.store/products/b9c15821caf55182c31b54c16ba6ada2_1731401844.jpg",
                    "https://mp-api.michpro.store/products/950da82b0f41abd53149bf9a4838f16b_1731401844.jpg",
                    "https://mp-api.michpro.store/products/14b07e4b39244a4287531ffc51f4ef90_1731401844.jpg"
                ],
                "description": "Mich Pro Vivo65",
                "specifications": "{\"Model\":\"Mich Pro Vivo65\",\"Capacity\":\"1900mAh\"}",
                "colors": null,
                "price": "40000.00",
                "featured": 0,
                "top_seller": 1,
                "rating": "0.0",
                "discount": "35000.00",
                "shipping_fee": "0.00",
                "quantity": 5000,
                "created_at": "2024-11-12T08:57:24.000000Z",
                "updated_at": "2024-11-12T08:57:24.000000Z",
                "category": {
                    "id": 10,
                    "name": "External Phone Battery",
                    "image": "https://mp-api.michpro.store/categories/13yW2LcOeH5hHB7Qw3HYfEbl6T2lzOlPn0zQGsUr.jpg",
                    "description": "High-end external mobile phone battery, high capacity, long standby.",
                    "slug": "batteries",
                    "created_at": "2024-09-02T09:20:53.000000Z",
                    "updated_at": "2024-11-21T06:15:29.000000Z"
                }
            },
            {
                "id": 88,
                "category_id": 10,
                "name": "Mich Pro Vivo77",
                "slug": "mich-pro-vivo77",
                "images": [
                    "https://mp-api.michpro.store/products/6ee003ed066c4825216e0e04a9224f53_1731401205.jpg",
                    "https://mp-api.michpro.store/products/55314746a5b30810cffdb80d425dc994_1731401205.jpg",
                    "https://mp-api.michpro.store/products/81ace6779474dd9a0761cb7a9a7ec7a2_1731401205.jpg",
                    "https://mp-api.michpro.store/products/5f3a4b62cf11f5549bc146ead26b2113_1731401205.jpg"
                ],
                "description": "Mich Pro Vivo77",
                "specifications": "{\"Model\":\"Mich Pro Vivo77\",\"Capacity\":\"2100mAh\"}",
                "colors": null,
                "price": "34000.00",
                "featured": 0,
                "top_seller": 1,
                "rating": "0.0",
                "discount": "30000.00",
                "shipping_fee": "0.00",
                "quantity": 5000,
                "created_at": "2024-11-12T08:46:45.000000Z",
                "updated_at": "2024-11-12T08:46:45.000000Z",
                "category": {
                    "id": 10,
                    "name": "External Phone Battery",
                    "image": "https://mp-api.michpro.store/categories/13yW2LcOeH5hHB7Qw3HYfEbl6T2lzOlPn0zQGsUr.jpg",
                    "description": "High-end external mobile phone battery, high capacity, long standby.",
                    "slug": "batteries",
                    "created_at": "2024-09-02T09:20:53.000000Z",
                    "updated_at": "2024-11-21T06:15:29.000000Z"
                }
            },
            {
                "id": 87,
                "category_id": 10,
                "name": "Mich Pro DCO25",
                "slug": "dco25",
                "images": [
                    "https://mp-api.michpro.store/products/b79967f40a6122c564bda075a1aa4d52_1731366155.png"
                ],
                "description": "DCO25",
                "specifications": "{\"Model\":\"DCO25\",\"Capacity\":\"2400mAh\"}",
                "colors": null,
                "price": "5000.00",
                "featured": 0,
                "top_seller": 1,
                "rating": "0.0",
                "discount": "4500.00",
                "shipping_fee": "0.00",
                "quantity": 3000,
                "created_at": "2024-11-11T23:02:35.000000Z",
                "updated_at": "2024-11-12T08:01:56.000000Z",
                "category": {
                    "id": 10,
                    "name": "External Phone Battery",
                    "image": "https://mp-api.michpro.store/categories/13yW2LcOeH5hHB7Qw3HYfEbl6T2lzOlPn0zQGsUr.jpg",
                    "description": "High-end external mobile phone battery, high capacity, long standby.",
                    "slug": "batteries",
                    "created_at": "2024-09-02T09:20:53.000000Z",
                    "updated_at": "2024-11-21T06:15:29.000000Z"
                }
            },
            {
                "id": 86,
                "category_id": 10,
                "name": "Mich Pro BM41/MI41",
                "slug": "bm41-mi41",
                "images": [
                    "https://mp-api.michpro.store/products/dd71dde7abf4e8902eab9d38d11229e6_1731366016.png"
                ],
                "description": "BM41/MI41",
                "specifications": "{\"Model\":\"BM41/MI41\",\"Capacity\":\"3000mAh\"}",
                "colors": null,
                "price": "7000.00",
                "featured": 0,
                "top_seller": 1,
                "rating": "0.0",
                "discount": "6700.00",
                "shipping_fee": "0.00",
                "quantity": 5000,
                "created_at": "2024-11-11T23:00:16.000000Z",
                "updated_at": "2024-11-12T08:02:35.000000Z",
                "category": {
                    "id": 10,
                    "name": "External Phone Battery",
                    "image": "https://mp-api.michpro.store/categories/13yW2LcOeH5hHB7Qw3HYfEbl6T2lzOlPn0zQGsUr.jpg",
                    "description": "High-end external mobile phone battery, high capacity, long standby.",
                    "slug": "batteries",
                    "created_at": "2024-09-02T09:20:53.000000Z",
                    "updated_at": "2024-11-21T06:15:29.000000Z"
                }
            },
            {
                "id": 85,
                "category_id": 10,
                "name": "Mich Pro BL-25FT",
                "slug": "mich-pro-bl-25ft",
                "images": [
                    "https://mp-api.michpro.store/products/f05da07ba065633406ffbbd1692c5e8b_1731365880.png"
                ],
                "description": "Mich Pro BL-25FT",
                "specifications": "{\"Model\":\"Mich Pro BL-25FT\",\"Capacity\":\"1700mAh\"}",
                "colors": null,
                "price": "3000.00",
                "featured": 0,
                "top_seller": 1,
                "rating": "0.0",
                "discount": "2500.00",
                "shipping_fee": "0.00",
                "quantity": 4000,
                "created_at": "2024-11-11T22:58:00.000000Z",
                "updated_at": "2024-11-12T06:48:12.000000Z",
                "category": {
                    "id": 10,
                    "name": "External Phone Battery",
                    "image": "https://mp-api.michpro.store/categories/13yW2LcOeH5hHB7Qw3HYfEbl6T2lzOlPn0zQGsUr.jpg",
                    "description": "High-end external mobile phone battery, high capacity, long standby.",
                    "slug": "batteries",
                    "created_at": "2024-09-02T09:20:53.000000Z",
                    "updated_at": "2024-11-21T06:15:29.000000Z"
                }
            }
        ],
        "first_page_url": "https://mp-api.michpro.store/api/v1/products?page=1",
        "from": 1,
        "last_page": 2,
        "last_page_url": "https://mp-api.michpro.store/api/v1/products?page=2",
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "active": false
            },
            {
                "url": "https://mp-api.michpro.store/api/v1/products?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": "https://mp-api.michpro.store/api/v1/products?page=2",
                "label": "2",
                "active": false
            },
            {
                "url": "https://mp-api.michpro.store/api/v1/products?page=2",
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "next_page_url": "https://mp-api.michpro.store/api/v1/products?page=2",
        "path": "https://mp-api.michpro.store/api/v1/products",
        "per_page": 50,
        "prev_page_url": null,
        "to": 50,
        "total": 91
    }
}

Get A Product's Details.

GET
https://mp-api.michpro.store
/api/v1/products/{product_slug}

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json

URL Parameters

product_slug
string
required

The slug of the product.

Example:
mich-pro-bl-24ei
Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/products/mich-pro-bl-24ei"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
Example response:
Headers
                                                            cache-control
                                                            : no-cache, private
                                                                                                                    content-type
                                                            : application/json
                                                                                                                    access-control-allow-origin
                                                            : *
                                                         
{
    "code": 200,
    "message": "Product Detail Fetched Successfully",
    "data": {
        "id": 44,
        "category_id": 10,
        "name": "Mich Pro BL-24EI",
        "slug": "mich-pro-bl-24ei",
        "images": [
            "https://mp-api.michpro.store/products/af0cfe246fec98a8d327de594929ca0e_1731197070.jpg",
            "https://mp-api.michpro.store/products/fd27cfe9cc4c9f7569ae2f0acfc3b300_1731197070.jpg",
            "https://mp-api.michpro.store/products/673964152a67757f4cbb81b82130e4f4_1731197070.jpg"
        ],
        "description": "Mich Pro BL-24EI",
        "specifications": "{\"Model\":\"BL-24EI\",\"Capacity\":\"2800mAh\"}",
        "colors": null,
        "price": "34000.00",
        "featured": 1,
        "top_seller": 1,
        "rating": "0.0",
        "discount": "2300.00",
        "shipping_fee": "0.00",
        "quantity": 50,
        "created_at": "2024-09-02T09:25:38.000000Z",
        "updated_at": "2024-11-10T00:04:30.000000Z",
        "category": {
            "id": 10,
            "name": "External Phone Battery",
            "image": "https://mp-api.michpro.store/categories/13yW2LcOeH5hHB7Qw3HYfEbl6T2lzOlPn0zQGsUr.jpg",
            "description": "High-end external mobile phone battery, high capacity, long standby.",
            "slug": "batteries",
            "created_at": "2024-09-02T09:20:53.000000Z",
            "updated_at": "2024-11-21T06:15:29.000000Z"
        }
    }
}

Get Similar Products

GET
https://mp-api.michpro.store
/api/v1/products/similar/{product_slug}

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json

URL Parameters

product_slug
string
required

The slug of the product.

Example:
mich-pro-bl-24ei
Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/products/similar/mich-pro-bl-24ei"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
Example response:
Headers
                                                            cache-control
                                                            : no-cache, private
                                                                                                                    content-type
                                                            : application/json
                                                                                                                    access-control-allow-origin
                                                            : *
                                                         
{
    "code": 200,
    "message": "Products Fetched Successfully!",
    "data": {
        "current_page": 1,
        "data": [
            {
                "id": 134,
                "category_id": 10,
                "name": "Mi Battery BM-45",
                "slug": "mi-battery-bm-45",
                "images": [
                    "https://mp-api.michpro.store/products/5963b8094f679551004cd7d10f1de0f0_1745502974.png",
                    "https://mp-api.michpro.store/products/600b9200e1f8a8683c332558024bdcef_1745502974.png"
                ],
                "description": "<p>Mi Battery BM-45</p>",
                "specifications": "{\"Model\":\"BM-45 Mi\"}",
                "colors": null,
                "price": "3500.00",
                "featured": 0,
                "top_seller": 0,
                "rating": "0.0",
                "discount": "50.00",
                "shipping_fee": "1000.00",
                "quantity": 1000,
                "created_at": "2025-04-24T13:56:14.000000Z",
                "updated_at": "2025-04-24T13:56:14.000000Z",
                "category": {
                    "id": 10,
                    "name": "External Phone Battery",
                    "image": "https://mp-api.michpro.store/categories/13yW2LcOeH5hHB7Qw3HYfEbl6T2lzOlPn0zQGsUr.jpg",
                    "description": "High-end external mobile phone battery, high capacity, long standby.",
                    "slug": "batteries",
                    "created_at": "2024-09-02T09:20:53.000000Z",
                    "updated_at": "2024-11-21T06:15:29.000000Z"
                }
            },
            {
                "id": 121,
                "category_id": 10,
                "name": "BL-5C TurboUniversal Battery",
                "slug": "bl-5c-turbouniversal-battery",
                "images": [
                    "https://mp-api.michpro.store/products/ec864e50b596faace06c7cce0f290af1_1744704848.png"
                ],
                "description": "<p><a href=\"Introducing the Revolutionary MichPro BL - 5c Battery!🔋  Hey Guys , look at this amazing MichPro BL - 5C battery in the picture!  A game - changer in the world of mobile power solutions.  1. High - Capacity at an Affordable Price   Our BL - 5c battery boasts an impressive 1300mAh capacity. This means longer usage time for your mobile devices. Despite its high capacity, it comes at a very reasonable price, offering you great value for money.  2. Universal Compatibility    No matter which phone model that is compatible with the BL - 5c battery you own, our product will work seamlessly. You don't have to worry about compatibility issues. Charge your phone with confidence and enjoy uninterrupted usage.  3. Exclusive Chip Technology Powered by MichPro's proprietary battery chip technology, our battery ensures a stable power output. Unlike other brands that experience rapid power drainage, our BL - 5c battery maintains a consistent charge. Moreover, it won't overheat during the charging process, keeping your phone safe and cool.  4. Compact Packaging We understand the importance of cost - effective shipping, especially for imports. That's why we've designed the packaging of our BL - 5c battery to be as compact as possible. This not only saves you space but also reduces shipping costs.  5. One - Year Warranty Your peace of mind is our priority. We offer a one - year warranty starting from the date of shipment. If you encounter any issues within this period, we'll take care of it. You can sell our products without any concerns.  You can order right now! Be one of the first to sell this product. The earlier you sell, the more profit you'll make. Don't miss out!☎️📞☎️📞\">Introducing the Revolutionary MichPro BL - 5c Battery!</a></p>\r\n<p><a href=\"Introducing the Revolutionary MichPro BL - 5c Battery!🔋  Hey Guys , look at this amazing MichPro BL - 5C battery in the picture!  A game - changer in the world of mobile power solutions.  1. High - Capacity at an Affordable Price   Our BL - 5c battery boasts an impressive 1300mAh capacity. This means longer usage time for your mobile devices. Despite its high capacity, it comes at a very reasonable price, offering you great value for money.  2. Universal Compatibility    No matter which phone model that is compatible with the BL - 5c battery you own, our product will work seamlessly. You don't have to worry about compatibility issues. Charge your phone with confidence and enjoy uninterrupted usage.  3. Exclusive Chip Technology Powered by MichPro's proprietary battery chip technology, our battery ensures a stable power output. Unlike other brands that experience rapid power drainage, our BL - 5c battery maintains a consistent charge. Moreover, it won't overheat during the charging process, keeping your phone safe and cool.  4. Compact Packaging We understand the importance of cost - effective shipping, especially for imports. That's why we've designed the packaging of our BL - 5c battery to be as compact as possible. This not only saves you space but also reduces shipping costs.  5. One - Year Warranty Your peace of mind is our priority. We offer a one - year warranty starting from the date of shipment. If you encounter any issues within this period, we'll take care of it. You can sell our products without any concerns.  You can order right now! Be one of the first to sell this product. The earlier you sell, the more profit you'll make. Don't miss out!☎️📞☎️📞\">Hey Guys , look at this amazing MichPro BL - 5C battery in the picture!&nbsp;</a></p>\r\n<p><a href=\"Introducing the Revolutionary MichPro BL - 5c Battery!🔋  Hey Guys , look at this amazing MichPro BL - 5C battery in the picture!  A game - changer in the world of mobile power solutions.  1. High - Capacity at an Affordable Price   Our BL - 5c battery boasts an impressive 1300mAh capacity. This means longer usage time for your mobile devices. Despite its high capacity, it comes at a very reasonable price, offering you great value for money.  2. Universal Compatibility    No matter which phone model that is compatible with the BL - 5c battery you own, our product will work seamlessly. You don't have to worry about compatibility issues. Charge your phone with confidence and enjoy uninterrupted usage.  3. Exclusive Chip Technology Powered by MichPro's proprietary battery chip technology, our battery ensures a stable power output. Unlike other brands that experience rapid power drainage, our BL - 5c battery maintains a consistent charge. Moreover, it won't overheat during the charging process, keeping your phone safe and cool.  4. Compact Packaging We understand the importance of cost - effective shipping, especially for imports. That's why we've designed the packaging of our BL - 5c battery to be as compact as possible. This not only saves you space but also reduces shipping costs.  5. One - Year Warranty Your peace of mind is our priority. We offer a one - year warranty starting from the date of shipment. If you encounter any issues within this period, we'll take care of it. You can sell our products without any concerns.  You can order right now! Be one of the first to sell this product. The earlier you sell, the more profit you'll make. Don't miss out!☎️📞☎️📞\">A game - changer in the world of mobile power solutions. </a></p>\r\n<p><a href=\"Introducing the Revolutionary MichPro BL - 5c Battery!🔋  Hey Guys , look at this amazing MichPro BL - 5C battery in the picture!  A game - changer in the world of mobile power solutions.  1. High - Capacity at an Affordable Price   Our BL - 5c battery boasts an impressive 1300mAh capacity. This means longer usage time for your mobile devices. Despite its high capacity, it comes at a very reasonable price, offering you great value for money.  2. Universal Compatibility    No matter which phone model that is compatible with the BL - 5c battery you own, our product will work seamlessly. You don't have to worry about compatibility issues. Charge your phone with confidence and enjoy uninterrupted usage.  3. Exclusive Chip Technology Powered by MichPro's proprietary battery chip technology, our battery ensures a stable power output. Unlike other brands that experience rapid power drainage, our BL - 5c battery maintains a consistent charge. Moreover, it won't overheat during the charging process, keeping your phone safe and cool.  4. Compact Packaging We understand the importance of cost - effective shipping, especially for imports. That's why we've designed the packaging of our BL - 5c battery to be as compact as possible. This not only saves you space but also reduces shipping costs.  5. One - Year Warranty Your peace of mind is our priority. We offer a one - year warranty starting from the date of shipment. If you encounter any issues within this period, we'll take care of it. You can sell our products without any concerns.  You can order right now! Be one of the first to sell this product. The earlier you sell, the more profit you'll make. Don't miss out!☎️📞☎️📞\">1. High - Capacity at an Affordable Price Our BL - 5c battery boasts an impressive 1300mAh capacity.&nbsp;</a><a href=\"Introducing the Revolutionary MichPro BL - 5c Battery!🔋  Hey Guys , look at this amazing MichPro BL - 5C battery in the picture!  A game - changer in the world of mobile power solutions.  1. High - Capacity at an Affordable Price   Our BL - 5c battery boasts an impressive 1300mAh capacity. This means longer usage time for your mobile devices. Despite its high capacity, it comes at a very reasonable price, offering you great value for money.  2. Universal Compatibility    No matter which phone model that is compatible with the BL - 5c battery you own, our product will work seamlessly. You don't have to worry about compatibility issues. Charge your phone with confidence and enjoy uninterrupted usage.  3. Exclusive Chip Technology Powered by MichPro's proprietary battery chip technology, our battery ensures a stable power output. Unlike other brands that experience rapid power drainage, our BL - 5c battery maintains a consistent charge. Moreover, it won't overheat during the charging process, keeping your phone safe and cool.  4. Compact Packaging We understand the importance of cost - effective shipping, especially for imports. That's why we've designed the packaging of our BL - 5c battery to be as compact as possible. This not only saves you space but also reduces shipping costs.  5. One - Year Warranty Your peace of mind is our priority. We offer a one - year warranty starting from the date of shipment. If you encounter any issues within this period, we'll take care of it. You can sell our products without any concerns.  You can order right now! Be one of the first to sell this product. The earlier you sell, the more profit you'll make. Don't miss out!☎️📞☎️📞\">This means longer usage time for your mobile devices. Despite its high capacity</a></p>\r\n<p><a href=\"Introducing the Revolutionary MichPro BL - 5c Battery!🔋  Hey Guys , look at this amazing MichPro BL - 5C battery in the picture!  A game - changer in the world of mobile power solutions.  1. High - Capacity at an Affordable Price   Our BL - 5c battery boasts an impressive 1300mAh capacity. This means longer usage time for your mobile devices. Despite its high capacity, it comes at a very reasonable price, offering you great value for money.  2. Universal Compatibility    No matter which phone model that is compatible with the BL - 5c battery you own, our product will work seamlessly. You don't have to worry about compatibility issues. Charge your phone with confidence and enjoy uninterrupted usage.  3. Exclusive Chip Technology Powered by MichPro's proprietary battery chip technology, our battery ensures a stable power output. Unlike other brands that experience rapid power drainage, our BL - 5c battery maintains a consistent charge. Moreover, it won't overheat during the charging process, keeping your phone safe and cool.  4. Compact Packaging We understand the importance of cost - effective shipping, especially for imports. That's why we've designed the packaging of our BL - 5c battery to be as compact as possible. This not only saves you space but also reduces shipping costs.  5. One - Year Warranty Your peace of mind is our priority. We offer a one - year warranty starting from the date of shipment. If you encounter any issues within this period, we'll take care of it. You can sell our products without any concerns.  You can order right now! Be one of the first to sell this product. The earlier you sell, the more profit you'll make. Don't miss out!☎️📞☎️📞\">2. Universal Compatibility No matter which phone model that is compatible with the BL - 5c battery you own, our product will work seamlessly. You don't have to worry about compatibility issues. Charge your phone with confidence and enjoy uninterrupted usage.</a></p>\r\n<p><a href=\"Introducing the Revolutionary MichPro BL - 5c Battery!🔋  Hey Guys , look at this amazing MichPro BL - 5C battery in the picture!  A game - changer in the world of mobile power solutions.  1. High - Capacity at an Affordable Price   Our BL - 5c battery boasts an impressive 1300mAh capacity. This means longer usage time for your mobile devices. Despite its high capacity, it comes at a very reasonable price, offering you great value for money.  2. Universal Compatibility    No matter which phone model that is compatible with the BL - 5c battery you own, our product will work seamlessly. You don't have to worry about compatibility issues. Charge your phone with confidence and enjoy uninterrupted usage.  3. Exclusive Chip Technology Powered by MichPro's proprietary battery chip technology, our battery ensures a stable power output. Unlike other brands that experience rapid power drainage, our BL - 5c battery maintains a consistent charge. Moreover, it won't overheat during the charging process, keeping your phone safe and cool.  4. Compact Packaging We understand the importance of cost - effective shipping, especially for imports. That's why we've designed the packaging of our BL - 5c battery to be as compact as possible. This not only saves you space but also reduces shipping costs.  5. One - Year Warranty Your peace of mind is our priority. We offer a one - year warranty starting from the date of shipment. If you encounter any issues within this period, we'll take care of it. You can sell our products without any concerns.  You can order right now! Be one of the first to sell this product. The earlier you sell, the more profit you'll make. Don't miss out!☎️📞☎️📞\">&nbsp;3. Exclusive Chip Technology Powered by MichPro's proprietary battery chip technology, our battery ensures a stable power output. Unlike other brands that experience rapid power drainage, our BL - 5c battery maintains a consistent charge. Moreover, it won't overheat during the charging process, keeping your phone safe and cool. </a></p>\r\n<p><a href=\"Introducing the Revolutionary MichPro BL - 5c Battery!🔋  Hey Guys , look at this amazing MichPro BL - 5C battery in the picture!  A game - changer in the world of mobile power solutions.  1. High - Capacity at an Affordable Price   Our BL - 5c battery boasts an impressive 1300mAh capacity. This means longer usage time for your mobile devices. Despite its high capacity, it comes at a very reasonable price, offering you great value for money.  2. Universal Compatibility    No matter which phone model that is compatible with the BL - 5c battery you own, our product will work seamlessly. You don't have to worry about compatibility issues. Charge your phone with confidence and enjoy uninterrupted usage.  3. Exclusive Chip Technology Powered by MichPro's proprietary battery chip technology, our battery ensures a stable power output. Unlike other brands that experience rapid power drainage, our BL - 5c battery maintains a consistent charge. Moreover, it won't overheat during the charging process, keeping your phone safe and cool.  4. Compact Packaging We understand the importance of cost - effective shipping, especially for imports. That's why we've designed the packaging of our BL - 5c battery to be as compact as possible. This not only saves you space but also reduces shipping costs.  5. One - Year Warranty Your peace of mind is our priority. We offer a one - year warranty starting from the date of shipment. If you encounter any issues within this period, we'll take care of it. You can sell our products without any concerns.  You can order right now! Be one of the first to sell this product. The earlier you sell, the more profit you'll make. Don't miss out!☎️📞☎️📞\">4. One - Year Warranty Your peace of mind is our priority. We offer a one - year warranty starting from the date of shipment. If you encounter any issues within this period, we'll take care of it.&nbsp;</a></p>",
                "specifications": "{\"Model \":\"BL-5C Turbo\",\"Capacity\":\"1300mAh\"}",
                "colors": null,
                "price": "2500.00",
                "featured": 0,
                "top_seller": 0,
                "rating": "0.0",
                "discount": "0.00",
                "shipping_fee": "0.00",
                "quantity": 5000,
                "created_at": "2025-04-15T08:14:08.000000Z",
                "updated_at": "2025-04-15T08:16:29.000000Z",
                "category": {
                    "id": 10,
                    "name": "External Phone Battery",
                    "image": "https://mp-api.michpro.store/categories/13yW2LcOeH5hHB7Qw3HYfEbl6T2lzOlPn0zQGsUr.jpg",
                    "description": "High-end external mobile phone battery, high capacity, long standby.",
                    "slug": "batteries",
                    "created_at": "2024-09-02T09:20:53.000000Z",
                    "updated_at": "2024-11-21T06:15:29.000000Z"
                }
            },
            {
                "id": 120,
                "category_id": 10,
                "name": "MichPro 5C ENG",
                "slug": "michpro-5c-eng",
                "images": [
                    "https://mp-api.michpro.store/products/c6866b183ed04643ad4528bde7e799d4_1736290143.jpg",
                    "https://mp-api.michpro.store/products/9fc54699b73e1855a48b11dbac667a1b_1736290143.jpg",
                    "https://mp-api.michpro.store/products/46c3c0321ed5b36db89d0a0c9e6debad_1736290143.jpg",
                    "https://mp-api.michpro.store/products/feb38b79fc8c571281d0130ab530bf7c_1736290143.jpg",
                    "https://mp-api.michpro.store/products/f63560e948c120f6599e9b13972a172a_1736290143.jpg"
                ],
                "description": "MichPro 5C ENG",
                "specifications": "{\"Model\":\"5C ENG\",\"Capacity\":\"1020mAh\"}",
                "colors": null,
                "price": "8000.00",
                "featured": 0,
                "top_seller": 0,
                "rating": "0.0",
                "discount": "0.00",
                "shipping_fee": "0.00",
                "quantity": 5000,
                "created_at": "2025-01-07T22:49:03.000000Z",
                "updated_at": "2025-01-07T22:49:03.000000Z",
                "category": {
                    "id": 10,
                    "name": "External Phone Battery",
                    "image": "https://mp-api.michpro.store/categories/13yW2LcOeH5hHB7Qw3HYfEbl6T2lzOlPn0zQGsUr.jpg",
                    "description": "High-end external mobile phone battery, high capacity, long standby.",
                    "slug": "batteries",
                    "created_at": "2024-09-02T09:20:53.000000Z",
                    "updated_at": "2024-11-21T06:15:29.000000Z"
                }
            },
            {
                "id": 119,
                "category_id": 10,
                "name": "MichPro BL-11GI",
                "slug": "michpro-bl-11gi",
                "images": [
                    "https://mp-api.michpro.store/products/73d5e0b10f4cd1b840b0baf80138969a_1735197160.png"
                ],
                "description": "MichPro BL-11GI",
                "specifications": "{\"Model\":\"BL-11GI\",\"Capacity\":\"2400mAh\"}",
                "colors": null,
                "price": "8000.00",
                "featured": 0,
                "top_seller": 0,
                "rating": "0.0",
                "discount": "0.00",
                "shipping_fee": "0.00",
                "quantity": 5000,
                "created_at": "2024-12-26T07:12:40.000000Z",
                "updated_at": "2024-12-26T07:12:40.000000Z",
                "category": {
                    "id": 10,
                    "name": "External Phone Battery",
                    "image": "https://mp-api.michpro.store/categories/13yW2LcOeH5hHB7Qw3HYfEbl6T2lzOlPn0zQGsUr.jpg",
                    "description": "High-end external mobile phone battery, high capacity, long standby.",
                    "slug": "batteries",
                    "created_at": "2024-09-02T09:20:53.000000Z",
                    "updated_at": "2024-11-21T06:15:29.000000Z"
                }
            },
            {
                "id": 118,
                "category_id": 10,
                "name": "MichPro BL_4UL",
                "slug": "michpro-bl-4ul",
                "images": [
                    "https://mp-api.michpro.store/products/0770015c07759a6160cef404659526c8_1734601461.png"
                ],
                "description": "MichPro BL_4UL",
                "specifications": "{\"Model\":\"BL_4UL\",\"capacity\":\"2400mAh\"}",
                "colors": null,
                "price": "4000.00",
                "featured": 0,
                "top_seller": 0,
                "rating": "0.0",
                "discount": "0.00",
                "shipping_fee": "0.00",
                "quantity": 5000,
                "created_at": "2024-12-19T09:44:21.000000Z",
                "updated_at": "2024-12-19T09:44:21.000000Z",
                "category": {
                    "id": 10,
                    "name": "External Phone Battery",
                    "image": "https://mp-api.michpro.store/categories/13yW2LcOeH5hHB7Qw3HYfEbl6T2lzOlPn0zQGsUr.jpg",
                    "description": "High-end external mobile phone battery, high capacity, long standby.",
                    "slug": "batteries",
                    "created_at": "2024-09-02T09:20:53.000000Z",
                    "updated_at": "2024-11-21T06:15:29.000000Z"
                }
            },
            {
                "id": 117,
                "category_id": 10,
                "name": "Mich Pro BL-10BI",
                "slug": "mich-pro-bl-10bi",
                "images": [
                    "https://mp-api.michpro.store/products/dea238a4e57f7b90da002a6136569238_1734594325.png"
                ],
                "description": "Mich Pro BL-10BI",
                "specifications": "{\"Model \":\"Mich Pro BL-10BI\",\"Capacity\":\"2400mAh\"}",
                "colors": null,
                "price": "6000.00",
                "featured": 0,
                "top_seller": 0,
                "rating": "0.0",
                "discount": "0.00",
                "shipping_fee": "0.00",
                "quantity": 500,
                "created_at": "2024-12-19T07:45:25.000000Z",
                "updated_at": "2024-12-19T07:45:25.000000Z",
                "category": {
                    "id": 10,
                    "name": "External Phone Battery",
                    "image": "https://mp-api.michpro.store/categories/13yW2LcOeH5hHB7Qw3HYfEbl6T2lzOlPn0zQGsUr.jpg",
                    "description": "High-end external mobile phone battery, high capacity, long standby.",
                    "slug": "batteries",
                    "created_at": "2024-09-02T09:20:53.000000Z",
                    "updated_at": "2024-11-21T06:15:29.000000Z"
                }
            },
            {
                "id": 116,
                "category_id": 10,
                "name": "MichPro NOTE 4 / BN910BBK",
                "slug": "mich-pro-note-4-bn910bbk",
                "images": [
                    "https://mp-api.michpro.store/products/a78d51d704e5359bb393dcff73caf8ce_1732920970.png"
                ],
                "description": "MichPro NOTE 4/ BN910BBK",
                "specifications": "{\"Model\":\"NOTE 4/ BN910BBK\",\"Capacity\":\"2500mAh\"}",
                "colors": null,
                "price": "40000.00",
                "featured": 0,
                "top_seller": 0,
                "rating": "0.0",
                "discount": "0.00",
                "shipping_fee": "0.00",
                "quantity": 2000,
                "created_at": "2024-11-29T22:56:10.000000Z",
                "updated_at": "2024-12-03T21:48:29.000000Z",
                "category": {
                    "id": 10,
                    "name": "External Phone Battery",
                    "image": "https://mp-api.michpro.store/categories/13yW2LcOeH5hHB7Qw3HYfEbl6T2lzOlPn0zQGsUr.jpg",
                    "description": "High-end external mobile phone battery, high capacity, long standby.",
                    "slug": "batteries",
                    "created_at": "2024-09-02T09:20:53.000000Z",
                    "updated_at": "2024-11-21T06:15:29.000000Z"
                }
            },
            {
                "id": 115,
                "category_id": 10,
                "name": "MichPro BL-10CT",
                "slug": "michpro-bl-10ct",
                "images": [
                    "https://mp-api.michpro.store/products/a43afa85c910554f1329cefc669c85c8_1732637080.jpg"
                ],
                "description": "MichPro Battery BL-10CT",
                "specifications": "{\"Model:\":\"BL-10CT\",\"Capacity\":\"3000mAh\"}",
                "colors": null,
                "price": "5000.00",
                "featured": 0,
                "top_seller": 0,
                "rating": "0.0",
                "discount": "350.00",
                "shipping_fee": "0.00",
                "quantity": 2000,
                "created_at": "2024-11-26T16:04:40.000000Z",
                "updated_at": "2024-11-26T16:04:40.000000Z",
                "category": {
                    "id": 10,
                    "name": "External Phone Battery",
                    "image": "https://mp-api.michpro.store/categories/13yW2LcOeH5hHB7Qw3HYfEbl6T2lzOlPn0zQGsUr.jpg",
                    "description": "High-end external mobile phone battery, high capacity, long standby.",
                    "slug": "batteries",
                    "created_at": "2024-09-02T09:20:53.000000Z",
                    "updated_at": "2024-11-21T06:15:29.000000Z"
                }
            }
        ],
        "first_page_url": "https://mp-api.michpro.store/api/v1/products/similar/mich-pro-bl-24ei?page=1",
        "from": 1,
        "last_page": 9,
        "last_page_url": "https://mp-api.michpro.store/api/v1/products/similar/mich-pro-bl-24ei?page=9",
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "active": false
            },
            {
                "url": "https://mp-api.michpro.store/api/v1/products/similar/mich-pro-bl-24ei?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": "https://mp-api.michpro.store/api/v1/products/similar/mich-pro-bl-24ei?page=2",
                "label": "2",
                "active": false
            },
            {
                "url": "https://mp-api.michpro.store/api/v1/products/similar/mich-pro-bl-24ei?page=3",
                "label": "3",
                "active": false
            },
            {
                "url": "https://mp-api.michpro.store/api/v1/products/similar/mich-pro-bl-24ei?page=4",
                "label": "4",
                "active": false
            },
            {
                "url": "https://mp-api.michpro.store/api/v1/products/similar/mich-pro-bl-24ei?page=5",
                "label": "5",
                "active": false
            },
            {
                "url": "https://mp-api.michpro.store/api/v1/products/similar/mich-pro-bl-24ei?page=6",
                "label": "6",
                "active": false
            },
            {
                "url": "https://mp-api.michpro.store/api/v1/products/similar/mich-pro-bl-24ei?page=7",
                "label": "7",
                "active": false
            },
            {
                "url": "https://mp-api.michpro.store/api/v1/products/similar/mich-pro-bl-24ei?page=8",
                "label": "8",
                "active": false
            },
            {
                "url": "https://mp-api.michpro.store/api/v1/products/similar/mich-pro-bl-24ei?page=9",
                "label": "9",
                "active": false
            },
            {
                "url": "https://mp-api.michpro.store/api/v1/products/similar/mich-pro-bl-24ei?page=2",
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "next_page_url": "https://mp-api.michpro.store/api/v1/products/similar/mich-pro-bl-24ei?page=2",
        "path": "https://mp-api.michpro.store/api/v1/products/similar/mich-pro-bl-24ei",
        "per_page": 8,
        "prev_page_url": null,
        "to": 8,
        "total": 68
    }
}
GET
https://mp-api.michpro.store
/api/v1/products/filter/featured

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json
Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/products/filter/featured"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
Example response:

Get Top Selling Products.

GET
https://mp-api.michpro.store
/api/v1/products/filter/top-sellers

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json
Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/products/filter/top-sellers"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
Example response:
Headers
                                                            cache-control
                                                            : no-cache, private
                                                                                                                    content-type
                                                            : application/json
                                                                                                                    access-control-allow-origin
                                                            : *
                                                         
{
    "code": 200,
    "message": "Top Sellers Fetched Successfully",
    "data": [
        {
            "id": 131,
            "category_id": 15,
            "name": "Type-C 33W Super Fast Charging, Instantly Revive Your Phone!",
            "slug": "type-c-33w-super-fast-charging-instantly-revive-your-phone",
            "images": [
                "https://mp-api.michpro.store/products/868b8f7f09e72073f5a92116e9a24c9e_1745084893.jpg",
                "https://mp-api.michpro.store/products/47977aa8ebf14146415270bd06c4b494_1745084893.jpg",
                "https://mp-api.michpro.store/products/a3cea1dddac362811955f47c99cfe836_1745084893.jpg",
                "https://mp-api.michpro.store/products/7f170099fc2f64972544d8a958b97841_1745084893.jpg",
                "https://mp-api.michpro.store/products/b5c9c24e2b0603e4f2cec7623952912e_1745084893.jpg",
                "https://mp-api.michpro.store/products/74842a3bc895116e8fe7219c65652236_1745084893.jpg",
                "https://mp-api.michpro.store/products/f8949be43dfa8cc0d17f11bea0c267e6_1745084893.jpg",
                "https://mp-api.michpro.store/products/d943db131be6be5554275668606ac15e_1745084893.jpg"
            ],
            "description": "<p class=\"MsoNormal\">In this era where every second counts, a dying phone battery can be a real headache. Fear not, for the MichPro MP420C Super Fast Charger is here to deliver a lightning - fast charging experience for your devices, allowing you to bid farewell to long waiting times!</p>\r\n<p class=\"MsoNormal\">&nbsp;</p>\r\n<p class=\"MsoNormal\"><strong>33W Real Power, No False Claims</strong></p>\r\n<p class=\"MsoNormal\">Many chargers boast large power ratings on their packaging but fail to deliver in reality. However, the MichPro MP420L is different. It packs a genuine 33W high - power output. We've always adhered to the principle of integrity and never engage in false advertising. Every charge will let you feel the strong power output, giving you a full sense of security.</p>\r\n<p class=\"MsoNormal\">&nbsp;</p>\r\n<p class=\"MsoNormal\"><strong>Charge Up to 65% in 30 Minutes, Astonishing Speed</strong></p>\r\n<p class=\"MsoNormal\">Time is precious and can't be wasted. The MichPro MP420C Super Fast Charger understands this well. In just 30 minutes, it can charge your phone up to 65% of its battery capacity. Whether you're in a hurry to leave in the morning or taking a short break during work, the rapid charging gets you back in action quickly, so you won't miss any important moments.</p>\r\n<p class=\"MsoNormal\">&nbsp;</p>\r\n<p class=\"MsoNormal\"><strong>Exclusive iFast Chip, Safe and Smart</strong></p>\r\n<p class=\"MsoNormal\">The self - developed exclusive iFast chip technology by MichPro is the core highlight of this charger. It enables the charging process to maintain full speed while effectively controlling the temperature, preventing the charger from overheating. Moreover, once your device is fully charged, the charger will automatically cut off the power to avoid over - charging and protect your device's battery. It offers all - around safety for your device.</p>\r\n<p class=\"MsoNormal\">&nbsp;</p>\r\n<p class=\"MsoNormal\"><strong>Novel Data Cable, More Stable Charging</strong></p>\r\n<p class=\"MsoNormal\">The package comes with Type - C to Type-C fast cable. It not only has a novel and stylish design but also ensures a stable current transmission, making the charging process smoother. With it, you don't have to worry about poor contact or slow charging.</p>\r\n<p class=\"MsoNormal\">&nbsp;</p>\r\n<p class=\"MsoNormal\"><strong>Compact and Portable, Charge Anytime, Anywhere</strong></p>\r\n<p class=\"MsoNormal\">It's small in size and light in weight, making it easy for you to carry it anywhere. Whether you're on a business trip, commuting to work, or out for a trip, just pop it into your bag or pocket, and you can recharge your device at any time, keeping you connected all the time.</p>\r\n<p class=\"MsoNormal\">&nbsp;</p>\r\n<p class=\"MsoNormal\"><strong>Package Contents</strong></p>\r\n<p class=\"MsoNormal\">1. 1 x Super Fast Charger</p>\r\n<p class=\"MsoNormal\">2. 1 x User Manual</p>\r\n<p class=\"MsoNormal\">3. 1 x Type - C to Type-C Fast Charging Cable</p>\r\n<p class=\"MsoNormal\">&nbsp;</p>\r\n<p class=\"MsoNormal\"><strong>Product Details</strong></p>\r\n<p class=\"MsoNormal\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->- **Brand**: MichPro</p>\r\n<p class=\"MsoNormal\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->- **Model**: MP420C</p>\r\n<p class=\"MsoNormal\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->- **Power**: 33W</p>\r\n<p class=\"MsoNormal\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->- **Chip Technology**: Exclusive iFast Chip</p>\r\n<p class=\"MsoNormal\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->- **Charging Speed**: Charge up to 65% in 30 minutes</p>\r\n<p class=\"MsoNormal\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->- **Safety Protection**: Auto - cut - off, Anti - overcharging</p>\r\n<p class=\"MsoNormal\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->- **Heat Dissipation Performance**: No overheating during charging</p>\r\n<p class=\"MsoNormal\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->- **Portability**: Compact and lightweight, easy to carry</p>\r\n<p class=\"MsoNormal\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->- **Data Cable**:Type - C to Type-C, novel design</p>\r\n<p class=\"MsoNormal\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->- **Standards**: US, EU, UK standards</p>\r\n<p class=\"MsoNormal\"><!-- [if !supportLists]-->l&nbsp;<!--[endif]-->- **Origin**: Hong Kong</p>\r\n<p class=\"MsoNormal\">&nbsp;</p>\r\n<p class=\"MsoNormal\"><strong>Don't hesitate any longer! Get the MichPro MP420L Super Fast Charger now and keep your device fully charged at all times! </strong></p>",
            "specifications": "{\"Model:\":\"Mp-420C\",\"Power:\":\"33W\",\"Cable\":\"C-C\"}",
            "colors": null,
            "price": "15000.00",
            "featured": 0,
            "top_seller": 1,
            "rating": "0.0",
            "discount": "4000.00",
            "shipping_fee": "1500.00",
            "quantity": 100,
            "created_at": "2025-04-19T17:48:13.000000Z",
            "updated_at": "2025-05-01T10:09:30.000000Z",
            "category": {
                "id": 15,
                "name": "Charger & Cable",
                "image": "https://mp-api.michpro.store/categories/fW0fuznPGkFKHDSqea8aBbiURtSn3jzKZ4O1iuu7.jpg",
                "description": "Fast charging",
                "slug": "charger-cable",
                "created_at": "2024-11-24T16:21:24.000000Z",
                "updated_at": "2025-03-19T15:58:20.000000Z"
            }
        },
        {
            "id": 129,
            "category_id": 16,
            "name": "Unleash Your Audio Experience with MichPro Earbuds In - Ear",
            "slug": "unleash-your-audio-experience-with-michpro-earbuds-in-ear",
            "images": [
                "https://mp-api.michpro.store/products/a0fda0fc753b0b3a9695cb4c001aaa03_1745080832.jpg",
                "https://mp-api.michpro.store/products/b1515cee8e905f2efdadc731a90c8454_1745080832.jpg",
                "https://mp-api.michpro.store/products/1fc3c811a362cad32f5ceb33a002d845_1745080832.jpg",
                "https://mp-api.michpro.store/products/4201589388d2a56cbb0b6fabcdf5f996_1745080832.jpg",
                "https://mp-api.michpro.store/products/a22874abc3e339102ea41f7ed3eba962_1745080832.jpg",
                "https://mp-api.michpro.store/products/886221001d683c169680d0706977d1a7_1745080832.jpg",
                "https://mp-api.michpro.store/products/d7b41e681101b5d4088618e80dc198c9_1745080832.jpg",
                "https://mp-api.michpro.store/products/ac202222dc16fec518379964b3886eec_1745080832.jpg"
            ],
            "description": "<p class=\"MsoNormal\"><strong>Are you tired of being disturbed by surrounding noise when you're on a call or enjoying your favorite tunes? Look no further! The MichPro MP - 001 in - ear earbuds with a battery case are here to revolutionize your audio world.</strong></p>\r\n<p class=\"MsoNormal\"><strong><u>&nbsp;</u></strong></p>\r\n<ul>\r\n<li class=\"MsoNormal\"><strong><u>Immersive Noise Cancellation</u></strong></li>\r\n</ul>\r\n<p class=\"MsoNormal\">&nbsp;With multiple noise - cancellation modes, the deep - level noise cancellation feature ensures crystal - clear conversations even in the noisiest environments. Say goodbye to background distractions and focus on what matters most.</p>\r\n<ul>\r\n<li class=\"MsoNormal\">&nbsp;<!--[endif]--><strong><u>Comfortable and Secure Fit</u></strong></li>\r\n</ul>\r\n<p class=\"MsoNormal\">&nbsp;The in - ear design not only prevents the earbuds from falling out but also provides a comfortable wearing experience. You can wear them for hours without any discomfort.</p>\r\n<ul>\r\n<li class=\"MsoNormal\"><strong><u>Premium Sound Quality</u></strong></li>\r\n</ul>\r\n<p class=\"MsoNormal\">&nbsp;Equipped with speakers specially customized for afobeat music, these earbuds deliver outstanding melodies, rich bass, and Hi - Fi sound. It's like being right in the middle of a live concert.</p>\r\n<ul>\r\n<li class=\"MsoNormal\"><strong><u>Advanced Connectivity</u></strong></li>\r\n</ul>\r\n<p class=\"MsoNormal\">&nbsp;The Bluetooth 5.3 technology offers a stable and fast connection, allowing you to enjoy seamless audio streaming.</p>\r\n<ul>\r\n<li class=\"MsoNormal\"><strong><u>Water - Resistant Design</u></strong></li>\r\n</ul>\r\n<p class=\"MsoNormal\">&nbsp;With an IPX7 rating, these earbuds can withstand daily splashes and sweat, making them perfect for workouts and outdoor activities.</p>\r\n<ul>\r\n<li class=\"MsoNormal\"><strong><u>Rapid Charging</u></strong></li>\r\n</ul>\r\n<p class=\"MsoNormal\">Thanks to MichPro's exclusive iFast technology, you'll never have to worry about running out of power. Just charge them up quickly and get back to your audio enjoyment.</p>\r\n<ul>\r\n<li class=\"MsoNormal\"><strong>Stylish and Portable</strong></li>\r\n</ul>\r\n<p class=\"MsoNormal\">&nbsp;The sleek and modern design, full of a sense of technology, is not only visually appealing but also easy to carry around.</p>\r\n<p class=\"MsoNormal\">&nbsp;</p>\r\n<p class=\"MsoNormal\"><strong><u>Package includes:</u></strong></p>\r\n<ul>\r\n<li class=\"MsoNormal\">Earbuds x 1</li>\r\n<li class=\"MsoNormal\">User manual x 1</li>\r\n<li class=\"MsoNormal\">Type - C fast - charging cable x 1</li>\r\n<li class=\"MsoNormal\">Free small gift x 1</li>\r\n</ul>",
            "specifications": "{\"Model\":\"Mp-001\",\" Deep Noise Cancellation\":\"Comfort Fit\",\"IPX7 Waterproof\":\"Stylish Design\"}",
            "colors": null,
            "price": "31000.00",
            "featured": 1,
            "top_seller": 1,
            "rating": "0.0",
            "discount": "1000.00",
            "shipping_fee": "1500.00",
            "quantity": 50,
            "created_at": "2025-04-19T16:40:32.000000Z",
            "updated_at": "2025-04-19T16:40:32.000000Z",
            "category": {
                "id": 16,
                "name": "Earpords",
                "image": "https://mp-api.michpro.store/categories/LpvSz5lmLb8UqEYMTQ7khYYqzlLb2hcpJ1BEE1ou.jpg",
                "description": "Afo-beat",
                "slug": "earpords",
                "created_at": "2025-04-19T16:18:02.000000Z",
                "updated_at": "2025-04-19T16:18:02.000000Z"
            }
        },
        {
            "id": 128,
            "category_id": 15,
            "name": "MP - 702 Charger: Empowered by Technology, Enjoy Rapid Charging",
            "slug": "mp-702-charger-empowered-by-technology-enjoy-rapid-charging",
            "images": [
                "https://mp-api.michpro.store/products/6ec04ca5977509bb3f37c5a3419cea91_1744887907.jpg",
                "https://mp-api.michpro.store/products/f938160efd47b5ddcb7982ede128be43_1744887907.jpg",
                "https://mp-api.michpro.store/products/9f5a23ccd919671fcdd29b048b27be9f_1744887907.jpg",
                "https://mp-api.michpro.store/products/d0f584633756210dcd84595ac772987a_1744887907.jpg",
                "https://mp-api.michpro.store/products/c30cbbb1c3d37b002eccf383526636d3_1744887907.jpg",
                "https://mp-api.michpro.store/products/b96516e31c6e79693bf8d52e2a1912ee_1744887907.jpg",
                "https://mp-api.michpro.store/products/ff816c7be4d0ee3f103b49b872e33577_1744887907.jpg",
                "https://mp-api.michpro.store/products/cc740903e1dc515d16d4f16f13d620c1_1744887907.jpg"
            ],
            "description": "<div data-version=\"3.0.0\" data-hash=\"29791d9b3a0832b14ea44a633a1cb9db\">&nbsp;</div>\r\n<div class=\"document\">\r\n<div class=\"section\">\r\n<p class=\"paragraph text-align-type-left\"><strong><span data-font-family=\"default\">MICH PRO MP - 702 Charger: Empowered by Technology, Enjoy Rapid Charging</span></strong></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">In Nigeria, a land full of vitality and opportunities, the fast - paced life has made people increasingly dependent on their mobile phones. However, low battery often becomes a hassle that hinders our progress. The MP - 702 charger from MICH PRO brand is like a timely bolt of lightning, injecting continuous power into your life.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left MsoNormal\"><strong>●&nbsp;<span data-font-family=\"default\">Real - Marked Power, a Choice of Integrity</span></strong></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">The MP - 702 charger boasts a powerful 35W output. In today's market where false capacity marking is all too common, MICH PRO always adheres to the bottom line of integrity. We promise that the marked 35W power is real and genuine without any exaggeration. You no longer have to worry about false power marking. Every time you charge, you can feel the real and efficient energy transfer and enjoy a stable fast - charging experience.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left MsoNormal\"><strong>●&nbsp;<span data-font-family=\"default\">High - Quality Data Cable, Efficient Compatibility</span></strong></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">The package comes with a high - quality data cable that is specially designed for 35W power transmission. It can easily handle the stable delivery of high - current. The unique design of the Type - C to iPhone Lighting interface is perfectly compatible with Apple devices. Whether it's the latest or older models of the iPhone series, it can be seamlessly connected. This means you no longer have to worry about finding a suitable data cable. You can charge your Apple phone quickly anytime, anywhere, keeping your device fully charged at all times.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left MsoNormal\"><strong>●&nbsp;<span data-font-family=\"default\">PD Super Fast Charging, Ultra - Fast Experience</span></strong></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">The PD super fast - charging port on the charger is like an energy accelerator. Paired with our exclusive data cable, the charging speed is amazing. It only takes 30 minutes to charge your phone to 35%. Compared with ordinary chargers on the market, the charging speed of the MP - 702 charger is three times faster! Imagine that in the time it takes you to enjoy a cup of coffee, your phone's battery has already increased significantly. You no longer have to worry about missing important calls, messages, and wonderful moments.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left MsoNormal\">●<strong>&nbsp;<span data-font-family=\"default\">Exclusive iFast Chip, Intelligent Protection</span></strong></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">The exclusive iFast chip technology independently developed by MichPro endows the MP - 702 charger with dual guarantees of intelligence and safety. During the charging process, the chip can monitor parameters such as current, voltage, and temperature in real - time to ensure a stable and safe charging process. It's like a considerate guardian, keeping the charger cool during operation. Even after long - term charging, it won't get hot, effectively avoiding damage to the phone and the charger caused by overheating. Moreover, when the phone is fully charged, the charger will automatically stop charging to prevent irreversible damage to the battery due to over - charging. In addition, the chip also has multiple protection mechanisms such as over - current protection and short - circuit protection, safeguarding the safety of your device in all aspects.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left MsoNormal\">●<strong>&nbsp;<span data-font-family=\"default\">Portable Design, Go Anywhere</span></strong></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">Considering the rich and varied travel life of people in Nigeria, the MP - 702 charger adopts a user - friendly portable design. Its three prongs can be easily folded. After folding, the charger is small in size and takes up little space. It can fit easily into a briefcase, backpack, or even a pocket. You can carry it with you wherever you go, whether on a business trip, a journey, an outdoor activity, or your daily commute. You can charge your phone anytime, anywhere, without being restricted by battery power.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left\"><strong><span data-font-family=\"default\">Package Contents</span></strong></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">1 x </span><span data-font-family=\"default\">MP - 702 charger</span></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\">1 x </span><span data-font-family=\"default\">Type - C to iPhone Lighting data cable</span></p>\r\n<p class=\"paragraph text-align-type-left\"><span data-font-family=\"default\"> 1 x User manual </span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left\"><strong><span data-font-family=\"default\">Parameters and Features</span></strong></p>\r\n<p class=\"paragraph text-align-type-left MsoNormal\">●&nbsp;<span data-font-family=\"default\">- </span><span data-font-family=\"default\"><strong>Power</strong>:</span><span data-font-family=\"default\"> 35W</span></p>\r\n<p class=\"paragraph text-align-type-left MsoNormal\">●&nbsp;<span data-font-family=\"default\">- </span><span data-font-family=\"default\"><strong>Interface Type</strong>:</span><span data-font-family=\"default\"> PD Super Fast Charging Port, Type - C to iPhone Lighting</span></p>\r\n<p class=\"paragraph text-align-type-left MsoNormal\">●&nbsp;<span data-font-family=\"default\">- </span><span data-font-family=\"default\"><strong>Chip Technology</strong>:</span><span data-font-family=\"default\"> Exclusive </span><span data-font-family=\"default\">iFast</span><span data-font-family=\"default\"> Chip</span></p>\r\n<p class=\"paragraph text-align-type-left MsoNormal\">●&nbsp;<span data-font-family=\"default\">- </span><span data-font-family=\"default\"><strong>Protection Mechanisms</strong>:</span><span data-font-family=\"default\"> Multiple Protections (Over - Temperature Protection, Over - Charging Protection, Over - Current Protection, Short - Circuit Protection)</span></p>\r\n<p class=\"paragraph text-align-type-left MsoNormal\">●&nbsp;<span data-font-family=\"default\">-<strong> </strong></span><span data-font-family=\"default\"><strong>Portable Design</strong>:</span><span data-font-family=\"default\"> Foldable Three Prongs</span></p>\r\n</div>\r\n</div>",
            "specifications": "{\"Model\":\"Mp-702(35w)\",\"Port\":\"Type-C\",\"Cable\":\"C-IPHONE\"}",
            "colors": null,
            "price": "12000.00",
            "featured": 0,
            "top_seller": 1,
            "rating": "0.0",
            "discount": "2000.00",
            "shipping_fee": "1500.00",
            "quantity": 1000,
            "created_at": "2025-04-17T11:05:07.000000Z",
            "updated_at": "2025-04-17T11:07:14.000000Z",
            "category": {
                "id": 15,
                "name": "Charger & Cable",
                "image": "https://mp-api.michpro.store/categories/fW0fuznPGkFKHDSqea8aBbiURtSn3jzKZ4O1iuu7.jpg",
                "description": "Fast charging",
                "slug": "charger-cable",
                "created_at": "2024-11-24T16:21:24.000000Z",
                "updated_at": "2025-03-19T15:58:20.000000Z"
            }
        },
        {
            "id": 125,
            "category_id": 14,
            "name": "Mp - 032W(POWER MAJOR) Power Bank: The Powerhouse in Charging, a Must - Have for Your Journeys",
            "slug": "mp-032w-power-major-power-bank-the-powerhouse-in-charging-a-must-have-for-your-journeys",
            "images": [
                "https://mp-api.michpro.store/products/fcdb8d1df207d6409b570ca9c865429f_1744818174.jpg",
                "https://mp-api.michpro.store/products/7ad153d72026e06c868fbcddbe5ee460_1744818174.jpg",
                "https://mp-api.michpro.store/products/12d82588634794eedf1b008e3f4645a1_1744818174.jpg",
                "https://mp-api.michpro.store/products/4f479df345df86a500ec2f35e405efae_1744818174.jpg",
                "https://mp-api.michpro.store/products/e4423ec7551193717467ce5891871d76_1744818174.jpg",
                "https://mp-api.michpro.store/products/aec464bba271b80b63a27203ad951d83_1744818174.jpg",
                "https://mp-api.michpro.store/products/3ccaecaac33f8fb848b896a97e2e4996_1744818174.jpg",
                "https://mp-api.michpro.store/products/00b0ee095d50af8931c3d934af0353fd_1744818174.jpg"
            ],
            "description": "<ul>\r\n<li><strong><span style=\"font-size: 18pt;\">&nbsp;Product Basic Information</span></strong><br>- Brand: MichPro<br>- Model: Mp - 032W(POWER MAJOR)<br>- Capacity: 30000mAh<br>- Product Name: Power Bank</li>\r\n<li><strong><span style=\"font-size: 18pt;\">Product Feature Keywords</span></strong><br>&nbsp; &nbsp;Capacity and Battery Life<br>- Genuine 30000mAh Capacity<br>- Over 70 - hour Charging Time<br>- Long - lasting Power Supply</li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n<ul>\r\n<li><span style=\"font-size: 18pt;\"><strong>&nbsp;Charging Speed</strong></span><br>- 22.5W Fast - charging<br>- QC4.0 Technology<br>- Simultaneous 3 - device Charging</li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n<ul>\r\n<li><strong><span style=\"font-size: 18pt;\">Display Function</span></strong><br>- LED Intelligent Digital Display<br>- Real - time Power Info</li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n<ul>\r\n<li><strong><span style=\"font-size: 18pt;\">Multi - function Use</span></strong><br>- Emergency Lighting<br>- LED Energy - saving Strong Light<br>- Eye - friendly Light</li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n<ul>\r\n<li><strong><span style=\"font-size: 18pt;\">Accessories</span></strong><br>- Mp - 032W(Power Major) Power Bank <span style=\"font-size: 18pt;\">* 1</span><br>- &nbsp;60W Charging Cable (Type - C to Type - C)<span style=\"font-size: 18pt;\"> *1</span><br>- User Manual<span style=\"font-size: 18pt;\"> *1</span></li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n<ul>\r\n<li><strong><span style=\"font-size: 18pt;\">Safety</span></strong><br>- iFAST Exclusive Patented Circuit Board<br>- Multiple Protection Functions<br>- Safe from Overheating, Over - charging and Over - discharging</li>\r\n</ul>\r\n<div data-version=\"3.0.0\" data-hash=\"c535e58f7b2d70db71a95bb7f9484f12\">&nbsp;</div>\r\n<div class=\"document\">\r\n<div class=\"section\">\r\n<p class=\"paragraph text-align-type-left\"><strong><span style=\"font-size: 18pt;\" data-font-family=\"default\">MichPro Mp - 032W(POWER MAJOR) Power Bank: The Powerhouse in Charging, a Must - Have for Your Journeys</span></strong></p>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"font-size: 14pt;\" data-font-family=\"default\">In an era where electronic devices are our constant companions, an excellent power bank is like a reassuring pill, relieving us from the anxiety of running out of battery in our daily lives and work. The Mp - 032W(POWER MAJOR) power bank, meticulously crafted by the MichPro brand, stands out as a leader in the market with its outstanding performance and user - friendly design.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"text-decoration: underline;\"><strong><span style=\"font-size: 18pt;\" data-font-family=\"default\">True High Capacity, Endless Battery Life</span></strong></span></p>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"font-size: 14pt;\" data-font-family=\"default\">The Mp - 032W(POWER MAJOR) comes with a genuine 30000mAh high capacity, free from any false claims. This means it can offer a continuous and stable power supply to all your electronic devices. What's even more remarkable is that it provides a charging time of over 70 hours. Whether you're embarking on a spontaneous long - distance trip, engaged in a busy business journey, or enjoying an exciting outdoor adventure, you no longer have to worry about your devices running out of power. Mobile phones, tablets, and other digital products can stay fully charged under its strong protection, allowing you to enjoy using them without any concerns.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"text-decoration: underline;\"><strong><span style=\"font-size: 18pt;\" data-font-family=\"default\">Ultra - Fast Charging Technology, High - efficiency Charging Experience</span></strong></span></p>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"font-size: 14pt;\" data-font-family=\"default\">This power bank is equipped with 22.5W and QC4.0 fast - charging technologies, charging your devices at a breakneck speed. It has two ports dedicated to charging itself, enabling it to replenish its energy rapidly. There are also three ports for charging digital products: one 20 - watt USB port, one 18 - watt USB port, and one 22.5 - watt PD port. With these powerful ports, you can charge three devices simultaneously and quickly, saving you a great deal of precious time. Imagine that during a short break, it can bring your devices back to life in no time, allowing you to stay productive without long - term waiting.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"font-size: 14pt;\" data-font-family=\"default\">&nbsp;<span style=\"text-decoration: underline;\"><strong><span style=\"font-size: 18pt;\">Intelligent Power Display, Clear at a Glance</span></strong></span></span></p>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"font-size: 14pt;\" data-font-family=\"default\">The Mp - 032W(POWER MAJOR) is fitted with an LED intelligent digital display that can accurately show the power usage of the power bank. You can always keep track of the remaining power and plan your charging arrangements accordingly. Whether it's in broad daylight or the dim of night, the display can clearly present the power information, making you fully aware of the power bank's status. You'll never have to worry about the embarrassing situation of sudden power - off at critical moments, providing you with great convenience.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"text-decoration: underline;\"><strong><span style=\"font-size: 18pt;\" data-font-family=\"default\">Energy - saving Strong Light, Eye - friendly for Emergency Use</span></strong></span></p>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"font-size: 14pt;\" data-font-family=\"default\">It's not just an ordinary power bank; it's also a practical emergency lighting device. Its LED energy - saving strong light emits a soft and bright light that won't harm your eyes even at night. Even children won't feel uncomfortable when using it. When you encounter an unexpected dark environment outdoors or a power outage at home, just press the switch, and it will instantly light up your way forward, bringing you a strong sense of security and becoming your reliable partner in the dark.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"font-size: 14pt;\" data-font-family=\"default\">&nbsp;<span style=\"text-decoration: underline; font-size: 18pt;\"><strong>Super Fast - charging Data Cable, Longer and More Convenient</strong></span></span></p>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"font-size: 14pt;\" data-font-family=\"default\">We've carefully equipped the Mp - 032W(POWER MAJOR) with a super fast - charging data cable that supports a maximum of 60 watts. The length of this data cable is three times that of ordinary power bank data cables, but the price remains the same. With it, you can move your devices more freely during charging without worrying about the short cable affecting the charging process. Imagine that you can lie comfortably in bed, on the sofa, or move around freely in the office while your device is charging stably. When paired with the Mp - 032W(POWER MAJOR) power bank, you'll enjoy an unprecedented true super - fast charging experience, making charging easy and enjoyable.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"text-decoration: underline;\"><strong><span style=\"font-size: 18pt;\" data-font-family=\"default\">Exclusive Patented Circuit Board, Multiple Safety Guarantees</span></strong></span></p>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"font-size: 14pt;\" data-font-family=\"default\">The Mp - 032W(POWER MAJOR) uses the iFAST exclusive patented circuit board with multiple protection functions. During the charging process, it acts like a loyal guardian, ensuring that the power bank charges quickly without overheating and effectively protecting the power bank and the connected devices. You can use it with complete peace of mind, without worrying about safety issues such as overheating, over - charging, and over - discharging. Whether in daily use or in special environments, it can provide reliable safety guarantees for your charging process, leaving you free from any worries.</span></p>\r\n<p class=\"paragraph text-align-type-left\">&nbsp;</p>\r\n<p class=\"paragraph text-align-type-left\"><span style=\"font-size: 14pt;\" data-font-family=\"default\">Choosing the MichPro Mp - 032W(POWER MAJOR) power bank means choosing an efficient, safe, and convenient charging experience. It will become the best partner for your electronic devices, accompanying you through every wonderful moment and making your life and work run more smoothly. </span></p>\r\n</div>\r\n</div>",
            "specifications": "{\"Model:\":\"032W\",\"Capacity:\":\"30000mAh\",\"22.5W Fast - charging\":\" 60W Charging Cable\"}",
            "colors": null,
            "price": "50500.00",
            "featured": 0,
            "top_seller": 1,
            "rating": "0.0",
            "discount": "0.00",
            "shipping_fee": "1500.00",
            "quantity": 200,
            "created_at": "2025-04-16T15:42:54.000000Z",
            "updated_at": "2025-04-16T15:47:08.000000Z",
            "category": {
                "id": 14,
                "name": "Power Bank",
                "image": "https://mp-api.michpro.store/categories/ENBhPQai6zo44STu7OtRICltbF4IGPsM1I0RucB3.jpg",
                "description": "High-end mobile power bank",
                "slug": "power-bank",
                "created_at": "2024-11-21T07:41:20.000000Z",
                "updated_at": "2024-12-14T16:57:22.000000Z"
            }
        },
        {
            "id": 109,
            "category_id": 14,
            "name": "MichPro 10000mAh Powerbank - Black",
            "slug": "michpro-10000mah-powerbank-black",
            "images": [
                "https://mp-api.michpro.store/products/d2bc27203e9bb23fde5e0bcea3caed8d_1732176445.jpg",
                "https://mp-api.michpro.store/products/6d739b7651e335deb1a9dc6ebc5a3bd5_1732176445.jpg",
                "https://mp-api.michpro.store/products/d208a4850e516ca3dfb71a4dffb1969e_1732176445.jpg",
                "https://mp-api.michpro.store/products/3d1bda0e7d297c26526bef2c580923da_1732176445.jpg"
            ],
            "description": "Description\r\nThe MichPro 10000mAh Powerbank in black is engineered for those who demand reliable power on the go. With a robust lithium polymer battery, it offers an impressive capacity of 10000mAh, ensuring your devices stay charged throughout the day. Featuring versatile charging options, the power bank includes Type-C, Micro, and USB-A ports, allowing you to charge multiple devices simultaneously. Its 15W charging capability delivers fast and efficient power, with outputs of up to 2.1A for USB-A ports. The compact and slim design makes it easy to carry, while the LED indicator keeps you informed of the battery level. Ideal for travel, this power bank is a perfect companion for anyone needing dependable power access anytime, anywhere.\r\n\r\nSpecification\r\n​Battery Capacity: 10000mAh\r\nBattery Type: Lithium Polymer\r\nType-C Input: 5V/2.4A, 9V/2A, 12V/1.5A\r\nMicro Input: 5V/2A, 9V/2A, 12V/1.5A\r\nType-C Output: 5V/3A, 9V/2.22A, 12V/1.67A 15W Max\r\nUSB-A Output: 5V/3A, 9V/2A, 12V/1.5A 15W Max\r\n\r\nFeatures\r\nMicro Port\r\nUSB-A Port\r\nUSB-C Port\r\nCompact & Slim\r\nLED Indicator\r\nCharge Multiple Devices\r\n15W & 2.1A Charging",
            "specifications": "{\"Model\":\"011W\",\"Capacity\":\"10000mAh\",\"*\":\"Compact & Slim\"}",
            "colors": null,
            "price": "15000.00",
            "featured": 0,
            "top_seller": 1,
            "rating": "0.0",
            "discount": "0.00",
            "shipping_fee": "0.00",
            "quantity": 1000,
            "created_at": "2024-11-21T08:07:25.000000Z",
            "updated_at": "2025-01-20T16:37:40.000000Z",
            "category": {
                "id": 14,
                "name": "Power Bank",
                "image": "https://mp-api.michpro.store/categories/ENBhPQai6zo44STu7OtRICltbF4IGPsM1I0RucB3.jpg",
                "description": "High-end mobile power bank",
                "slug": "power-bank",
                "created_at": "2024-11-21T07:41:20.000000Z",
                "updated_at": "2024-12-14T16:57:22.000000Z"
            }
        },
        {
            "id": 106,
            "category_id": 13,
            "name": "MichPro BL-36BT",
            "slug": "mich-pro-bl-36bt",
            "images": [
                "https://mp-api.michpro.store/products/2fe34bb9314a8f839aa59b20c79b44f6_1731739464.jpg",
                "https://mp-api.michpro.store/products/3db3153413409067c1a82f9469c6cc23_1731739464.jpg",
                "https://mp-api.michpro.store/products/b180010bf256f8d00acaa20c9bdefc75_1731739464.jpg"
            ],
            "description": "Mich Pro BL-36BT",
            "specifications": "{\"Model\":\"Mich Pro BL-36BT\",\"Capacity\":\"4000mAh\"}",
            "colors": null,
            "price": "30000.00",
            "featured": 0,
            "top_seller": 1,
            "rating": "0.0",
            "discount": "20.00",
            "shipping_fee": "0.00",
            "quantity": 5000,
            "created_at": "2024-11-16T06:44:24.000000Z",
            "updated_at": "2024-11-21T07:37:04.000000Z",
            "category": {
                "id": 13,
                "name": "Built-in Phone Battery",
                "image": "https://mp-api.michpro.store/categories/NifRfsL3egxfmE7FF0RTpghP4SKAaIOhlyQuZzXR.jpg",
                "description": "Ultra-high capacity series, give you the longest time to enjoy standby, MichPro exclusive patented technology, longer battery life, temperature control.",
                "slug": "built-in-phone-battery",
                "created_at": "2024-11-21T06:19:46.000000Z",
                "updated_at": "2024-11-21T06:19:46.000000Z"
            }
        },
        {
            "id": 105,
            "category_id": 13,
            "name": "MichPro BL-39KX/39EX",
            "slug": "mich-pro-bl-39kx-39ex",
            "images": [
                "https://mp-api.michpro.store/products/68855244dd4b8bb9137d6610c9c46a80_1731739157.jpg",
                "https://mp-api.michpro.store/products/58f45d2e099fa37ed2900b6aaeeb3076_1731739157.jpg",
                "https://mp-api.michpro.store/products/d79a603d71330cf1636df5af7d57b25d_1731739157.jpg",
                "https://mp-api.michpro.store/products/bb0c615fb2bdd66e7ce681891bf64aef_1731739157.jpg"
            ],
            "description": "Mich Pro BL-39KX",
            "specifications": "{\"Model\":\"Mich Pro BL-39KX\",\"Capacity\":\"4300mAh\"}",
            "colors": null,
            "price": "34000.00",
            "featured": 0,
            "top_seller": 1,
            "rating": "0.0",
            "discount": "15.00",
            "shipping_fee": "0.00",
            "quantity": 5000,
            "created_at": "2024-11-16T06:39:17.000000Z",
            "updated_at": "2024-11-21T07:37:34.000000Z",
            "category": {
                "id": 13,
                "name": "Built-in Phone Battery",
                "image": "https://mp-api.michpro.store/categories/NifRfsL3egxfmE7FF0RTpghP4SKAaIOhlyQuZzXR.jpg",
                "description": "Ultra-high capacity series, give you the longest time to enjoy standby, MichPro exclusive patented technology, longer battery life, temperature control.",
                "slug": "built-in-phone-battery",
                "created_at": "2024-11-21T06:19:46.000000Z",
                "updated_at": "2024-11-21T06:19:46.000000Z"
            }
        },
        {
            "id": 103,
            "category_id": 13,
            "name": "MichPro BL-49DT-49DI",
            "slug": "mich-pro-bl-49dt-49di",
            "images": [
                "https://mp-api.michpro.store/products/abe5deddc3ac1b823c0f75493616f854_1731738463.jpg",
                "https://mp-api.michpro.store/products/99837981a3c4e484d0b91e3d249325c9_1731738463.jpg",
                "https://mp-api.michpro.store/products/03dbaa395565d49ae16659d6889144f8_1731738463.jpg",
                "https://mp-api.michpro.store/products/6ea1d933defa32d86d5033906fdaf722_1731738463.jpg"
            ],
            "description": "Mich Pro BL-49DT-49DI",
            "specifications": "{\"Model\":\"Mich Pro BL-49DT-49DI\",\"Capacity\":\"5300mAh\"}",
            "colors": null,
            "price": "60000.00",
            "featured": 0,
            "top_seller": 1,
            "rating": "0.0",
            "discount": "30.00",
            "shipping_fee": "0.00",
            "quantity": 30000,
            "created_at": "2024-11-16T06:27:43.000000Z",
            "updated_at": "2024-11-21T07:38:19.000000Z",
            "category": {
                "id": 13,
                "name": "Built-in Phone Battery",
                "image": "https://mp-api.michpro.store/categories/NifRfsL3egxfmE7FF0RTpghP4SKAaIOhlyQuZzXR.jpg",
                "description": "Ultra-high capacity series, give you the longest time to enjoy standby, MichPro exclusive patented technology, longer battery life, temperature control.",
                "slug": "built-in-phone-battery",
                "created_at": "2024-11-21T06:19:46.000000Z",
                "updated_at": "2024-11-21T06:19:46.000000Z"
            }
        },
        {
            "id": 102,
            "category_id": 13,
            "name": "MichPro BL-49ET",
            "slug": "mich-pro-bl-49et",
            "images": [
                "https://mp-api.michpro.store/products/eaef510b5b615a5f28ad15ecbfbdb9bc_1731738061.jpg",
                "https://mp-api.michpro.store/products/1fd212fcde1b1498f77e52a3ca1b1153_1731738061.jpg",
                "https://mp-api.michpro.store/products/530744b7e2ada257d3358a5caaf42004_1731738061.jpg",
                "https://mp-api.michpro.store/products/b55f4bd80996a2ecd9a958a83e3c5c54_1731738061.jpg"
            ],
            "description": "Mich Pro BL-49ET",
            "specifications": "{\"Model\":\"Mich Pro BL-49ET\",\"Capacity\":\"5300mAh\"}",
            "colors": null,
            "price": "50000.00",
            "featured": 0,
            "top_seller": 1,
            "rating": "0.0",
            "discount": "40.00",
            "shipping_fee": "0.00",
            "quantity": 30000,
            "created_at": "2024-11-16T06:21:01.000000Z",
            "updated_at": "2024-11-21T07:38:47.000000Z",
            "category": {
                "id": 13,
                "name": "Built-in Phone Battery",
                "image": "https://mp-api.michpro.store/categories/NifRfsL3egxfmE7FF0RTpghP4SKAaIOhlyQuZzXR.jpg",
                "description": "Ultra-high capacity series, give you the longest time to enjoy standby, MichPro exclusive patented technology, longer battery life, temperature control.",
                "slug": "built-in-phone-battery",
                "created_at": "2024-11-21T06:19:46.000000Z",
                "updated_at": "2024-11-21T06:19:46.000000Z"
            }
        },
        {
            "id": 101,
            "category_id": 10,
            "name": "Ultra High Capacity  BL-49FT",
            "slug": "mich-pro-bl-49ft",
            "images": [
                "https://mp-api.michpro.store/products/91254eb081be39bea6d43f6e32bbf212_1731737801.jpg",
                "https://mp-api.michpro.store/products/a74d2de442bb6d89000532cbc1001678_1731737801.jpg",
                "https://mp-api.michpro.store/products/b620fe2b39c79b327328514615d923ea_1731737801.jpg",
                "https://mp-api.michpro.store/products/e5b56aaad9fec233308615b8be2a570f_1731737801.jpg"
            ],
            "description": "Mich Pro BL-49FT for X650/X655/X656/X665/X657/HOT8/ CD7/P0P4/P0P6/KG6/KD7/BE7/BE8/KE5/P17/KD6/S17/S18/KF7/P38",
            "specifications": "{\"Model\":\"Mich Pro BL-49FT\",\"Capacity\":\"5200mAh\"}",
            "colors": null,
            "price": "18000.00",
            "featured": 1,
            "top_seller": 1,
            "rating": "0.0",
            "discount": "30.00",
            "shipping_fee": "0.00",
            "quantity": 20000,
            "created_at": "2024-11-16T06:16:41.000000Z",
            "updated_at": "2024-11-19T06:55:42.000000Z",
            "category": {
                "id": 10,
                "name": "External Phone Battery",
                "image": "https://mp-api.michpro.store/categories/13yW2LcOeH5hHB7Qw3HYfEbl6T2lzOlPn0zQGsUr.jpg",
                "description": "High-end external mobile phone battery, high capacity, long standby.",
                "slug": "batteries",
                "created_at": "2024-09-02T09:20:53.000000Z",
                "updated_at": "2024-11-21T06:15:29.000000Z"
            }
        },
        {
            "id": 99,
            "category_id": 13,
            "name": "MichPro BL-51BX",
            "slug": "mich-pro-bl-51bx",
            "images": [
                "https://mp-api.michpro.store/products/7a1af149f977782fe7de3253b9037ba5_1731734912.jpg",
                "https://mp-api.michpro.store/products/84441ea942b572bd837efb032f2c6570_1731734912.jpg",
                "https://mp-api.michpro.store/products/3fb1a1f021ad1f499cb739e18650f992_1731734912.jpg"
            ],
            "description": "Mich Pro BL-51BX",
            "specifications": "{\"Model\":\"Mich Pro BL-51BX\",\"Capacity\":\"5300mAh\"}",
            "colors": null,
            "price": "30000.00",
            "featured": 0,
            "top_seller": 1,
            "rating": "0.0",
            "discount": "30.00",
            "shipping_fee": "0.00",
            "quantity": 20000,
            "created_at": "2024-11-16T05:28:32.000000Z",
            "updated_at": "2024-11-21T07:39:30.000000Z",
            "category": {
                "id": 13,
                "name": "Built-in Phone Battery",
                "image": "https://mp-api.michpro.store/categories/NifRfsL3egxfmE7FF0RTpghP4SKAaIOhlyQuZzXR.jpg",
                "description": "Ultra-high capacity series, give you the longest time to enjoy standby, MichPro exclusive patented technology, longer battery life, temperature control.",
                "slug": "built-in-phone-battery",
                "created_at": "2024-11-21T06:19:46.000000Z",
                "updated_at": "2024-11-21T06:19:46.000000Z"
            }
        },
        {
            "id": 97,
            "category_id": 10,
            "name": "Mich Pro BL-25IT",
            "slug": "mich-pro-bl-25it",
            "images": [
                "https://mp-api.michpro.store/products/f15ca5d244668e4fa6756d60bde434d3_1731665997.jpg",
                "https://mp-api.michpro.store/products/e833b012b59f0b51dc83fb1bc343e537_1731665997.jpg",
                "https://mp-api.michpro.store/products/0e58ca30eef962de91e25ebaac8aab09_1731665997.jpg",
                "https://mp-api.michpro.store/products/78b0298de41797d5b8f84cfc03368dbb_1731665997.jpg"
            ],
            "description": "Mich Pro BL-25IT",
            "specifications": "{\"Model\":\"Mich Pro BL-25IT\",\"Capacity\":\"2800mAh\"}",
            "colors": null,
            "price": "40000.00",
            "featured": 0,
            "top_seller": 1,
            "rating": "0.0",
            "discount": "20.00",
            "shipping_fee": "0.00",
            "quantity": 4000,
            "created_at": "2024-11-15T10:19:57.000000Z",
            "updated_at": "2024-11-15T10:19:57.000000Z",
            "category": {
                "id": 10,
                "name": "External Phone Battery",
                "image": "https://mp-api.michpro.store/categories/13yW2LcOeH5hHB7Qw3HYfEbl6T2lzOlPn0zQGsUr.jpg",
                "description": "High-end external mobile phone battery, high capacity, long standby.",
                "slug": "batteries",
                "created_at": "2024-09-02T09:20:53.000000Z",
                "updated_at": "2024-11-21T06:15:29.000000Z"
            }
        }
    ]
}

Create A New Product.

POST
https://mp-api.michpro.store
/api/admin/v1/products
requires authentication

Headers

Content-Type
Example:
multipart/form-data
Accept
Example:
application/json

Body Parameters

Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/admin/v1/products"
);

const headers = {
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
};

const body = new FormData();
body.append('category_id', 'dolorem');
body.append('name', 'ad');
body.append('model', 'yetempwdngqnnykjj');
body.append('description', 'Vitae ut aut corrupti et exercitationem doloremque.');
body.append('specifications', '["autem","laborum"]');
body.append('price', '3.4459');
body.append('featured', '0');
body.append('top_seller', 'false');
body.append('rating', '7870.99');
body.append('discount', '109');
body.append('shipping_fee', '17863245.5515');
body.append('quantity', '12603109.543185');
body.append('images[]', document.querySelector('input[name="images[]"]').files[0]);

fetch(url, {
    method: "POST",
    headers,
    body,
}).then(response => response.json());

Update A Product's Details.

POST
https://mp-api.michpro.store
/api/admin/v1/products/edit/{product_slug}
requires authentication

Headers

Content-Type
Example:
multipart/form-data
Accept
Example:
application/json

URL Parameters

product_slug
string
required

The slug of the product.

Example:
mich-pro-bl-24ei

Body Parameters

Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/admin/v1/products/edit/mich-pro-bl-24ei"
);

const headers = {
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
};

const body = new FormData();
body.append('category_id', 'dicta');
body.append('name', 'amet');
body.append('model', 'qpwhpmcoxzp');
body.append('description', 'Ut eligendi aut non nostrum.');
body.append('specifications', '["qui","porro"]');
body.append('price', '524');
body.append('featured', '0');
body.append('top_seller', 'true');
body.append('rating', '4977.5');
body.append('discount', '20229048.871156');
body.append('shipping_fee', '2263.6350503');
body.append('quantity', '3076778.7872');
body.append('images[]', document.querySelector('input[name="images[]"]').files[0]);

fetch(url, {
    method: "POST",
    headers,
    body,
}).then(response => response.json());

Delete A Product.

DELETE
https://mp-api.michpro.store
/api/admin/v1/products/{product_slug}
requires authentication

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json

URL Parameters

product_slug
string
required

The slug of the product.

Example:
mich-pro-bl-24ei
Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/admin/v1/products/mich-pro-bl-24ei"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Search And Filtering

GET
https://mp-api.michpro.store
/api/v1/search

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json

Query Parameters

query
string
required

The query term to search for.

Example:
c
per_page
integer

The number of items in a page. Defaults to 15

Example:
3
sort
string

Field to sort by. Defaults to '-created_at'.

Example:
-price
filters[color]
string

Filter by Color.

Example:
red
filters[price]
string

Filter by Color.

Example:
voluptatem
Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/search"
);

const params = {
    "query": "c",
    "per_page": "3",
    "sort": "-price",
    "filters[color]": "red",
    "filters[price]": "voluptatem",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
Example response:

Shipping Addresses

Get My Shipping Addresses.

GET
https://mp-api.michpro.store
/api/v1/shipping-addresses
requires authentication

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json
Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/shipping-addresses"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
Example response:
Headers
                                                            cache-control
                                                            : no-cache, private
                                                                                                                    content-type
                                                            : application/json
                                                                                                                    access-control-allow-origin
                                                            : *
                                                         
{
    "message": "Unauthenticated."
}

Get A Shipping Address' Details.

GET
https://mp-api.michpro.store
/api/v1/shipping-addresses/{address}
requires authentication

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json

URL Parameters

address
string
required
Example:
blanditiis
Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/shipping-addresses/blanditiis"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
Example response:
Headers
                                                            cache-control
                                                            : no-cache, private
                                                                                                                    content-type
                                                            : application/json
                                                                                                                    access-control-allow-origin
                                                            : *
                                                         
{
    "message": "Unauthenticated."
}

Add New Shipping Address.

POST
https://mp-api.michpro.store
/api/v1/shipping-addresses
requires authentication

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json

Body Parameters

Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/shipping-addresses"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "state_id": "perferendis",
    "lga_id": "ea",
    "name": "sint",
    "city": "eaque",
    "postal_code": "et",
    "phone": "j",
    "address": "eius",
    "primary": 5536519.16874247975647449493408203125
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Update A Shipping Address' Details.

PUT
https://mp-api.michpro.store
/api/v1/shipping-addresses/{address}
requires authentication

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json

URL Parameters

address
string
required
Example:
voluptatem

Body Parameters

Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/shipping-addresses/voluptatem"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "state_id": "quisquam",
    "lga_id": "ea",
    "name": "et",
    "city": "molestiae",
    "postal_code": "quasi",
    "phone": "zvjw",
    "address": "suscipit",
    "primary": 1.7491461999999999843424802747904323041439056396484375
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Make A Shipping Address Primary

PATCH
https://mp-api.michpro.store
/api/v1/shipping-addresses/{address}
requires authentication

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json

URL Parameters

address
string
required
Example:
accusamus
Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/shipping-addresses/accusamus"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PATCH",
    headers,
}).then(response => response.json());

Delete A Shipping Address.

DELETE
https://mp-api.michpro.store
/api/v1/shipping-addresses/{address}
requires authentication

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json

URL Parameters

address
string
required
Example:
ut
Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/shipping-addresses/ut"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Shopping Cart

Get My Shopping Cart Items.

GET
https://mp-api.michpro.store
/api/v1/carts
requires authentication

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json
Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/carts"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
Example response:
Headers
                                                            cache-control
                                                            : no-cache, private
                                                                                                                    content-type
                                                            : application/json
                                                                                                                    access-control-allow-origin
                                                            : *
                                                         
{
    "message": "Unauthenticated."
}

Update Shopping Cart.

POST
https://mp-api.michpro.store
/api/v1/carts
requires authentication

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json
Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/carts"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Ungrouped

index

GET
https://mp-api.michpro.store
/api/v1/settings

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json
Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/settings"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
Example response:
Headers
                                                            cache-control
                                                            : no-cache, private
                                                                                                                    content-type
                                                            : application/json
                                                                                                                    access-control-allow-origin
                                                            : *
                                                         
{
    "code": 200,
    "message": "Settings Fetched Successfully",
    "data": {
        "id": 1,
        "company_name": "MichPro",
        "address": "123 Tech Street, Lagos",
        "email": "info@michpro.com",
        "phone": "+2348100000000",
        "service_hours": "Mon-Fri 9 AM - 5 PM",
        "facebook": "https://facebook.com/michpro",
        "twitter": "https://twitter.com/michpro",
        "whatsapp": "+2348100000000",
        "instagram": "https://instagram.com/michpro",
        "youtube": "https://youtube.com/michpro",
        "active_state": true,
        "created_at": "2025-03-13T01:09:25.000000Z",
        "updated_at": "2025-03-13T01:09:25.000000Z"
    }
}

get all states

GET
https://mp-api.michpro.store
/api/v1/states

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json
Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/states"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
Example response:
Headers
                                                            cache-control
                                                            : no-cache, private
                                                                                                                    content-type
                                                            : application/json
                                                                                                                    access-control-allow-origin
                                                            : *
                                                         
{
    "data": {
        "states": [
            {
                "id": 1,
                "state_name": "Abia State"
            },
            {
                "id": 2,
                "state_name": "Adamawa State"
            },
            {
                "id": 3,
                "state_name": "Akwa Ibom State"
            },
            {
                "id": 4,
                "state_name": "Anambra State"
            },
            {
                "id": 5,
                "state_name": "Bauchi State"
            },
            {
                "id": 6,
                "state_name": "Bayelsa State"
            },
            {
                "id": 7,
                "state_name": "Benue State"
            },
            {
                "id": 8,
                "state_name": "Borno State"
            },
            {
                "id": 9,
                "state_name": "Cross River State"
            },
            {
                "id": 10,
                "state_name": "Delta State"
            },
            {
                "id": 11,
                "state_name": "Ebonyi State"
            },
            {
                "id": 12,
                "state_name": "Edo State"
            },
            {
                "id": 13,
                "state_name": "Ekiti State"
            },
            {
                "id": 14,
                "state_name": "Enugu State"
            },
            {
                "id": 15,
                "state_name": "FCT"
            },
            {
                "id": 16,
                "state_name": "Gombe State"
            },
            {
                "id": 17,
                "state_name": "Imo State"
            },
            {
                "id": 18,
                "state_name": "Jigawa State"
            },
            {
                "id": 19,
                "state_name": "Kaduna State"
            },
            {
                "id": 20,
                "state_name": "Kano State"
            },
            {
                "id": 21,
                "state_name": "Katsina State"
            },
            {
                "id": 22,
                "state_name": "Kebbi State"
            },
            {
                "id": 23,
                "state_name": "Kogi State"
            },
            {
                "id": 24,
                "state_name": "Kwara State"
            },
            {
                "id": 25,
                "state_name": "Lagos State"
            },
            {
                "id": 26,
                "state_name": "Nasarawa State"
            },
            {
                "id": 27,
                "state_name": "Niger State"
            },
            {
                "id": 28,
                "state_name": "Ogun State"
            },
            {
                "id": 29,
                "state_name": "Ondo State"
            },
            {
                "id": 30,
                "state_name": "Osun State"
            },
            {
                "id": 31,
                "state_name": "Oyo State"
            },
            {
                "id": 32,
                "state_name": "Plateau State"
            },
            {
                "id": 33,
                "state_name": "Rivers State"
            },
            {
                "id": 34,
                "state_name": "Sokoto State"
            },
            {
                "id": 35,
                "state_name": "Taraba State"
            },
            {
                "id": 36,
                "state_name": "Yobe State"
            },
            {
                "id": 37,
                "state_name": "Zamfara State"
            }
        ]
    }
}

get all lgas by state

GET
https://mp-api.michpro.store
/api/v1/lgas/{id}

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json

URL Parameters

id
string
required

The ID of the lga.

Example:
veniam
Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/lgas/veniam"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
Example response:
Headers
                                                            cache-control
                                                            : no-cache, private
                                                                                                                    content-type
                                                            : application/json
                                                                                                                    access-control-allow-origin
                                                            : *
                                                         
{
    "data": {
        "lgas": []
    }
}

forgotPassword

POST
https://mp-api.michpro.store
/api/v1/forgot-password

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json

Body Parameters

Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/forgot-password"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "email": "rgibson@example.org",
    "token": "aperiam",
    "password": "2R(j@?"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

POST api/v1/products/codes/validate

POST
https://mp-api.michpro.store
/api/v1/products/codes/validate

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json

Body Parameters

Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/products/codes/validate"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "code": "omnis"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

POST api/v1/webhooks/pay-stack-3435/updt-transfr

POST
https://mp-api.michpro.store
/api/v1/webhooks/pay-stack-3435/updt-transfr

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json
Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/webhooks/pay-stack-3435/updt-transfr"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

POST api/v1/webhooks/flwave-1543/upte-transfe

POST
https://mp-api.michpro.store
/api/v1/webhooks/flwave-1543/upte-transfe

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json
Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/webhooks/flwave-1543/upte-transfe"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

POST api/v1/webhooks/o-pay-48201/updat-trans

POST
https://mp-api.michpro.store
/api/v1/webhooks/o-pay-48201/updat-trans

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json
Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/webhooks/o-pay-48201/updat-trans"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());
POST
https://mp-api.michpro.store
/api/v1/payments/request-link

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json

Body Parameters

Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/payments/request-link"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "method": "nostrum",
    "type": "porro",
    "id": "aut",
    "callback_url": "http:\/\/kessler.com\/",
    "return_url": "https:\/\/weimann.info\/ipsam-sit-voluptatem-aut.html"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

GET api/v1/payments/verify

GET
https://mp-api.michpro.store
/api/v1/payments/verify

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json
Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/payments/verify"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
Example response:
Headers
                                                            cache-control
                                                            : no-cache, private
                                                                                                                    content-type
                                                            : application/json
                                                                                                                    access-control-allow-origin
                                                            : *
                                                         
{
    "message": "Unauthenticated."
}

deleteImage

PATCH
https://mp-api.michpro.store
/api/admin/v1/products/image/{product_slug}

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json

URL Parameters

product_slug
string
required

The slug of the product.

Example:
mich-pro-bl-24ei
Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/admin/v1/products/image/mich-pro-bl-24ei"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PATCH",
    headers,
}).then(response => response.json());

POST api/admin/v1/products/codes/filter/{product_slug}

POST
https://mp-api.michpro.store
/api/admin/v1/products/codes/filter/{product_slug}

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json

URL Parameters

product_slug
string
required

The slug of the product.

Example:
mich-pro-bl-24ei
Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/admin/v1/products/codes/filter/mich-pro-bl-24ei"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

GET api/admin/v1/products/codes/search/{product_slug}

GET
https://mp-api.michpro.store
/api/admin/v1/products/codes/search/{product_slug}

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json

URL Parameters

product_slug
string
required

The slug of the product.

Example:
mich-pro-bl-24ei
Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/admin/v1/products/codes/search/mich-pro-bl-24ei"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
Example response:
Headers
                                                            cache-control
                                                            : no-cache, private
                                                                                                                    content-type
                                                            : application/json
                                                                                                                    access-control-allow-origin
                                                            : *
                                                         
{
    "message": "Unauthenticated."
}

GET api/admin/v1/products/codes/fetch/{product_slug}

GET
https://mp-api.michpro.store
/api/admin/v1/products/codes/fetch/{product_slug}

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json

URL Parameters

product_slug
string
required

The slug of the product.

Example:
mich-pro-bl-24ei
Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/admin/v1/products/codes/fetch/mich-pro-bl-24ei"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
Example response:
Headers
                                                            cache-control
                                                            : no-cache, private
                                                                                                                    content-type
                                                            : application/json
                                                                                                                    access-control-allow-origin
                                                            : *
                                                         
{
    "message": "Unauthenticated."
}

POST api/admin/v1/products/codes/generate/{product_slug}

POST
https://mp-api.michpro.store
/api/admin/v1/products/codes/generate/{product_slug}

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json

URL Parameters

product_slug
string
required

The slug of the product.

Example:
mich-pro-bl-24ei

Body Parameters

Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/admin/v1/products/codes/generate/mich-pro-bl-24ei"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "prefix": "recusandae",
    "caps": true,
    "quantity": 14,
    "length": 8
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

toggleStatus

GET
https://mp-api.michpro.store
/api/admin/v1/users/status/{user_id}

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json

URL Parameters

user_id
string
required

The ID of the user.

Example:
9d547312-b4cd-4837-9e07-8233359f4d0e
Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/admin/v1/users/status/9d547312-b4cd-4837-9e07-8233359f4d0e"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
Example response:
Headers
                                                            cache-control
                                                            : no-cache, private
                                                                                                                    content-type
                                                            : application/json
                                                                                                                    access-control-allow-origin
                                                            : *
                                                         
{
    "message": "Unauthenticated."
}

update

PUT
https://mp-api.michpro.store
/api/admin/v1/settings

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json

Body Parameters

Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/admin/v1/settings"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "company_name": "zodmtscrlo",
    "address": "cyidjgfo",
    "email": "amelia29@example.org",
    "phone": "qpsqk",
    "service_hours": "vvomymfrhozwpftxudeebsisv",
    "facebook": "wyut",
    "twitter": "haqvcrpyrzpbczv",
    "whatsapp": "acwhbubqdtlrgyxibx",
    "instagram": "yytlkmaud",
    "youtube": "qvsrvozveahixoriued",
    "active_state": true
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

getEntityStats

GET
https://mp-api.michpro.store
/api/admin/v1/settings/entities-stat

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json
Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/admin/v1/settings/entities-stat"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
Example response:
Headers
                                                            cache-control
                                                            : no-cache, private
                                                                                                                    content-type
                                                            : application/json
                                                                                                                    access-control-allow-origin
                                                            : *
                                                         
{
    "message": "Unauthenticated."
}

Users

Get A User's Details.

GET
https://mp-api.michpro.store
/api/v1/users/{user_id}

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json

URL Parameters

user_id
string
required

The ID of the user.

Example:
9d547312-b4cd-4837-9e07-8233359f4d0e
Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/v1/users/9d547312-b4cd-4837-9e07-8233359f4d0e"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
Example response:
Headers
                                                            cache-control
                                                            : no-cache, private
                                                                                                                    content-type
                                                            : application/json
                                                                                                                    access-control-allow-origin
                                                            : *
                                                         
{
    "message": "Unauthenticated."
}

Get User by role.

GET
https://mp-api.michpro.store
/api/admin/v1/users
requires authentication

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json
Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/admin/v1/users"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
Example response:
Headers
                                                            cache-control
                                                            : no-cache, private
                                                                                                                    content-type
                                                            : application/json
                                                                                                                    access-control-allow-origin
                                                            : *
                                                         
{
    "message": "Unauthenticated."
}

Create New Admin User.

POST
https://mp-api.michpro.store
/api/admin/v1/users/admin
requires authentication

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json

Body Parameters

Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/admin/v1/users/admin"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "firstname": "qoccmagqklxyayyprpcmhijg",
    "lastname": "ew",
    "phone": "sed",
    "username": "dolores",
    "email": "kbartoletti@example.com",
    "password": "(`1O{8Xt8?^\/WNT-\"M`",
    "modules": "[\"excepturi\",\"voluptas\"]"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Assign Role to a User.

POST
https://mp-api.michpro.store
/api/admin/v1/users/assign-role/{user_id}
requires authentication

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json

URL Parameters

user_id
string
required

The ID of the user.

Example:
9d547312-b4cd-4837-9e07-8233359f4d0e

Body Parameters

Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/admin/v1/users/assign-role/9d547312-b4cd-4837-9e07-8233359f4d0e"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "role": "admin"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Assign Permissions to a User Role.

POST
https://mp-api.michpro.store
/api/admin/v1/users/permissions
requires authentication

Headers

Content-Type
Example:
application/json
Accept
Example:
application/json

Body Parameters

Example request:
const url = new URL(
    "https://mp-api.michpro.store/api/admin/v1/users/permissions"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "permissions": [
        "enim"
    ]
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());