{
    "variable": [
        {
            "id": "baseUrl",
            "key": "baseUrl",
            "type": "string",
            "name": "string",
            "value": "http:\/\/knowdrive.techtrovelab.com"
        }
    ],
    "info": {
        "name": "Automotor API Documentation",
        "_postman_id": "47b30a1f-88a6-4e21-a1b3-5a8849e0b181",
        "description": "A description of your API endpoints and their usage.",
        "schema": "https:\/\/schema.getpostman.com\/json\/collection\/v2.1.0\/collection.json"
    },
    "item": [
        {
            "name": "Admin Profile Management",
            "description": "",
            "item": [
                {
                    "name": "Admin: Reset User Password",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/admin\/reset-user-pass",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/admin\/reset-user-pass"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"user@example.com\",\"password\":\"newpassword123\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"message\": \"Password reset successfully. An email has been sent to the user.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\"message\": \"User not found\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Admin: Change User Status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/admin\/user-status\/:user_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/admin\/user-status\/:user_uuid",
                            "variable": [
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "9ecffa6c-824e-499c-b814-9465603fed22",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"status\":\"active\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "The user with updated status.",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 400,
                            "body": "Invalid status provided.",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Authentication",
            "description": "",
            "item": [
                {
                    "name": "User Login",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/auth\/login",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/auth\/login"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"user@example.com\",\"password\":\"secretpassword123\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": {\n    \"id\": 1,\n    \"name\": \"John Doe\",\n    \"email\": \"user@example.com\"\n  },\n  \"meta\": {\n    \"token\": \"your-auth-token\"\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\n  \"error\": \"Token generation failed\"\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Chats",
            "description": "",
            "item": [
                {
                    "name": "Display a listing of the chats.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/admin\/chats",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/admin\/chats"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"search\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":401,\"success\":false,\"error\":{\"code\":\"unauthenticated\",\"message\":\"Please sign in to continue.\"}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Store a newly created chat message.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/admin\/chats\/:receiver",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/admin\/chats\/:receiver",
                            "variable": [
                                {
                                    "id": "receiver",
                                    "key": "receiver",
                                    "value": "9ecffa6c-824e-499c-b814-9465603fed22",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "message",
                                    "value": "vmqeopfuudtdsufvyvddq",
                                    "type": "text",
                                    "description": "Must not be greater than 255 characters."
                                },
                                {
                                    "key": "service",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": "The <code>uuid<\/code> of an existing record in the our_services table."
                                },
                                {
                                    "key": "file",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Get distinct services involved in a user's chats.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/admin\/chats\/user\/:user",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/admin\/chats\/user\/:user",
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "9ecffa6c-824e-499c-b814-9465603fed22",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":401,\"success\":false,\"error\":{\"code\":\"unauthenticated\",\"message\":\"Please sign in to continue.\"}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Display the specified user's chat messages.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/admin\/view-chats\/:user\/:service",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/admin\/view-chats\/:user\/:service",
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "9ecffa6c-824e-499c-b814-9465603fed22",
                                    "description": ""
                                },
                                {
                                    "id": "service",
                                    "key": "service",
                                    "value": "c3bdfc89-ab64-4ebf-b331-305d5ba41783",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":401,\"success\":false,\"error\":{\"code\":\"unauthenticated\",\"message\":\"Please sign in to continue.\"}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Display the specified user's chat messages.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/admin\/my-chats\/:service",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/admin\/my-chats\/:service",
                            "variable": [
                                {
                                    "id": "service",
                                    "key": "service",
                                    "value": "c3bdfc89-ab64-4ebf-b331-305d5ba41783",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":401,\"success\":false,\"error\":{\"code\":\"unauthenticated\",\"message\":\"Please sign in to continue.\"}}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Compliances",
            "description": "",
            "item": [
                {
                    "name": "Store a newly created Compliance in storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/admin\/compliances",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/admin\/compliances"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"consequatur\",\"value\":\"{\\\"title\\\": Oil change}\",\"status\":true}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update an existing Compliances in storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/admin\/compliances\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/admin\/compliances\/:uuid",
                            "variable": [
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "3c9c142e-7f86-4f44-8611-0e09539f2d6a",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"consequatur\",\"value\":\"{\\\"title\\\": Oil change}\",\"status\":true}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Remove the specified Compliances from storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/admin\/compliances\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/admin\/compliances\/:uuid",
                            "variable": [
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "3c9c142e-7f86-4f44-8611-0e09539f2d6a",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Display a listing of the Compliances.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/compliances",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/compliances"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"consequatur\"}"
                        },
                        "description": "Search Compliances by name.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "57"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"status\":200,\"success\":true,\"data\":[]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Display the specified Compliances.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/compliances\/:compliance_uuid\/display",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/compliances\/:compliance_uuid\/display",
                            "variable": [
                                {
                                    "id": "compliance_uuid",
                                    "key": "compliance_uuid",
                                    "value": "3c9c142e-7f86-4f44-8611-0e09539f2d6a",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "56"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"status\":200,\"success\":true,\"data\":{\"id\":1,\"uuid\":\"3c9c142e-7f86-4f44-8611-0e09539f2d6a\",\"name\":\"Terms&Conditions\",\"value\":\"{\\r\\n  \\\"Effective Date\\\": \\\"2025-08-27\\\",\\r\\n  \\\"Introduction\\\": \\\"These Terms and Conditions (\\\\\\\"Terms\\\\\\\") govern your use of the AutoMotor mobile application and services in Nigeria. By accessing or using our platform, you agree to be bound by these Terms. Please read them carefully.\\\",\\r\\n  \\\"1. Car Hire\\\": \\\"AutoMotor offers vehicle hire services for personal and commercial use. All hires are subject to availability, proper identification, and a valid Nigerian driver's licence. Hirers are responsible for the vehicle during the hire period and must return it in the condition it was received. Late returns may attract additional charges.\\\",\\r\\n  \\\"2. Car Sales\\\": \\\"AutoMotor facilitates the sale of new and used vehicles. Listings may be by AutoMotor or third-party sellers. Buyers are responsible for verifying vehicle condition, documents (e.g., proof of ownership, customs papers), and negotiating directly with sellers where applicable. AutoMotor is not liable for disputes arising from sales between third parties.\\\",\\r\\n  \\\"3. Installation Services\\\": \\\"AutoMotor provides installation of automotive parts and accessories, including tyres, batteries, infotainment systems, etc. All installations are carried out by trained technicians. Customers are advised to verify compatibility of parts before installation. Warranty applies only where stated.\\\",\\r\\n  \\\"4. Vehicle Repairs and Servicing\\\": \\\"AutoMotor offers mechanical, electrical, and general servicing for cars. Customers must disclose known vehicle issues accurately. Repair timelines are estimates and may vary based on diagnostic outcomes. AutoMotor is not liable for further faults unrelated to the agreed service scope.\\\",\\r\\n  \\\"5. Consultations\\\": \\\"Expert consultation services include diagnostics, maintenance planning, and automotive advice. Recommendations are based on provided information and inspection findings. AutoMotor is not liable for outcomes resulting from incomplete or inaccurate information provided by the user.\\\",\\r\\n  \\\"6. Payments\\\": \\\"All service charges must be paid via approved payment channels before or upon completion of service. Prices are in Nigerian Naira (\\u20a6) and include applicable taxes. AutoMotor uses secure third-party payment processors and is not responsible for payment delays or failures caused by third-party systems.\\\",\\r\\n  \\\"7. Cancellations and Refunds\\\": \\\"Cancellations must be made at least 24 hours before the scheduled service. Refunds, if approved, will be processed within 5\\u20137 working days. No refunds will be issued for services already rendered or for late cancellations.\\\",\\r\\n  \\\"8. User Conduct\\\": \\\"Users must not misuse the app, submit false information, or engage in fraudulent activities. AutoMotor reserves the right to suspend or terminate accounts involved in misconduct or violation of these Terms.\\\",\\r\\n  \\\"9. Limitation of Liability\\\": \\\"AutoMotor is not liable for direct or indirect losses, including damage to vehicles, loss of income, or disputes arising from third-party transactions. All services are provided 'as is' without warranties beyond those expressly stated.\\\",\\r\\n  \\\"10. Intellectual Property\\\": \\\"All content on the AutoMotor app is the property of AutoMotor or its licensors and is protected under Nigerian intellectual property laws. Unauthorized use, reproduction, or distribution is prohibited.\\\",\\r\\n  \\\"11. Changes to Terms\\\": \\\"AutoMotor may update these Terms at any time. Users will be notified through the app. Continued use after updates constitutes acceptance of the new Terms.\\\",\\r\\n  \\\"12. Governing Law\\\": \\\"These Terms shall be governed by and interpreted in accordance with the laws of the Federal Republic of Nigeria. Any disputes shall be subject to the jurisdiction of Nigerian courts.\\\"\\r\\n}\\r\\n\",\"status\":true,\"created_at\":\"2025-08-27T17:01:10.000000Z\",\"updated_at\":\"2025-08-27T17:01:10.000000Z\"}}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Consultation Booking",
            "description": "",
            "item": [
                {
                    "name": "Display a listing of the consultations.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/admin\/consultations",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/admin\/consultations"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":401,\"success\":false,\"error\":{\"code\":\"unauthenticated\",\"message\":\"Please sign in to continue.\"}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Display the specified consultation.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/admin\/consultations\/view",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/admin\/consultations\/view"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":401,\"success\":false,\"error\":{\"code\":\"unauthenticated\",\"message\":\"Please sign in to continue.\"}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Remove the specified consultation from storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/admin\/consultations",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/admin\/consultations"
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Store a newly created consultation.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/consultations",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/consultations"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"vmqeopfuudtdsufvyvddq\",\"phone\":11613.31890586000008624978363513946533203125,\"email\":\"claire77@example.net\",\"description\":\"Minus voluptatem quisquam quibusdam sed.\",\"priority\":\"consequatur\",\"type\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Coupons",
            "description": "",
            "item": [
                {
                    "name": "Display a listing of the Coupons.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/coupons",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/coupons"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"sort\":\"asc\",\"expiry\":false,\"search\":\"qeopfuudt\",\"range\":{\"from\":\"2025-11-04T09:54:42\",\"to\":\"2025-11-04T09:54:42\"}}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":401,\"success\":false,\"error\":{\"code\":\"unauthenticated\",\"message\":\"Please sign in to continue.\"}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get the current authenticated user's active coupon.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/coupons\/mycoupon",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/coupons\/mycoupon"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":401,\"success\":false,\"error\":{\"code\":\"unauthenticated\",\"message\":\"Please sign in to continue.\"}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Store a newly created Coupon in storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/coupons",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/coupons"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"interval\":\"year\",\"interval_unit\":1,\"percentage_waived\":1,\"name\":\"eopfuudtdsufvyvddqamn\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Mark a coupon as used.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/coupons\/:coupon_uuid\/mark-used",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/coupons\/:coupon_uuid\/mark-used",
                            "variable": [
                                {
                                    "id": "coupon_uuid",
                                    "key": "coupon_uuid",
                                    "value": "8f7dba63-6c3a-4cde-bb8f-111111111111",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Display the specified Coupon.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/coupons\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/coupons\/:uuid",
                            "variable": [
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "8f7dba63-6c3a-4cde-bb8f-111111111111",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":401,\"success\":false,\"error\":{\"code\":\"unauthenticated\",\"message\":\"Please sign in to continue.\"}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Remove the specified Coupon from storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/coupons\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/coupons\/:uuid",
                            "variable": [
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "8f7dba63-6c3a-4cde-bb8f-111111111111",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Endpoints",
            "description": "",
            "item": [
                {
                    "name": "Redirect the user to Google's OAuth page.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/auth\/google",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/auth\/google"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "59"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 500,
                            "body": "{\"status\":500,\"success\":false,\"error\":{\"code\":\"internal_server_error\",\"message\":\"Class \\\"Laravel\\\\Socialite\\\\Facades\\\\Socialite\\\" not found\"}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/auth\/google\/callback",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/auth\/google\/callback",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/auth\/google\/callback"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "58"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 500,
                            "body": "{\"status\":500,\"success\":false,\"error\":{\"code\":\"internal_server_error\",\"message\":\"Class \\\"Laravel\\\\Socialite\\\\Facades\\\\Socialite\\\" not found\"}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/send-message-link",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/send-message-link",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/send-message-link"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "file",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/consultation-type",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/consultation-type",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/consultation-type"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "50"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"status\":200,\"success\":true,\"data\":[\"general\",\"technical\",\"sales\",\"other\"]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/category",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/category",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/category"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "49"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"status\":200,\"success\":true,\"data\":[\"hire\",\"sales\",\"parts\",\"installation\",\"repair\",\"accessories\"]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/car-type",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/car-type",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/car-type"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "48"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"status\":200,\"success\":true,\"data\":[\"all\",\"sedan\",\"suv\",\"coupe\",\"hatchback\",\"convertible\",\"minivan\",\"pickup\",\"wagon\",\"crossover\",\"sports_car\",\"luxury\",\"electric\",\"hybrid\",\"van\",\"roadster\",\"truck\",\"station_wagon\",\"cng\"]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/car-brand",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/car-brand",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/car-brand"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "47"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"status\":200,\"success\":true,\"data\":[\"all\",\"toyota\",\"honda\",\"nissan\",\"mercedes_benz\",\"ford\",\"kia\",\"mazda\",\"chevrolet\",\"bmw\",\"volkswagen\",\"renault\",\"hyundai\",\"lexus\",\"peugeot\",\"land_rover\",\"jeep\",\"subaru\",\"mitsubishi\",\"infiniti\",\"dodge\",\"audi\",\"chrysler\",\"ferrari\",\"porsche\"]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/settings-type",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/settings-type",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/settings-type"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "46"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"status\":200,\"success\":true,\"data\":[\"whatsapp\",\"phone\",\"instagram\",\"payment\",\"address\"]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/user-status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/user-status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/user-status"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "45"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"status\":200,\"success\":true,\"data\":[\"active\",\"disabled\",\"locked\",\"banned\"]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/service-status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/service-status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/service-status"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "44"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"status\":200,\"success\":true,\"data\":[\"available\",\"sold\",\"unavailable\"]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/priority-type",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/priority-type",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/priority-type"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "43"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"status\":200,\"success\":true,\"data\":[\"high\",\"Medium\",\"low\"]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/role-type",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/role-type",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/role-type"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "42"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"status\":200,\"success\":true,\"data\":[\"super admin\",\"staff\",\"member\",\"administrator\"]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/webhook\/flutterwave",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/webhook\/flutterwave",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/webhook\/flutterwave"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/migrate",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/migrate",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/migrate"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "content-type",
                                    "value": "text\/html; charset=UTF-8"
                                },
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "41"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "0",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Notifications",
            "description": "",
            "item": [
                {
                    "name": "Display a listing of the notifications.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/notifications\/user\/:user",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/notifications\/user\/:user",
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "9ecffa6c-824e-499c-b814-9465603fed22",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"is_read\":false}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":401,\"success\":false,\"error\":{\"code\":\"unauthenticated\",\"message\":\"Please sign in to continue.\"}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Store a newly created notification in storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/notifications",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/notifications"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"title\":\"vmqeopfuudtdsufvyvddq\",\"content\":\"consequatur\",\"user\":[11613.31890586000008624978363513946533203125]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/notifications\/{uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/notifications\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/notifications\/:uuid",
                            "variable": [
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "5d300955-d9f0-4ed6-8bd9-f3c2e66a98f1",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":401,\"success\":false,\"error\":{\"code\":\"unauthenticated\",\"message\":\"Please sign in to continue.\"}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "DELETE api\/notifications\/{uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/notifications\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/notifications\/:uuid",
                            "variable": [
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "5d300955-d9f0-4ed6-8bd9-f3c2e66a98f1",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "OurServices",
            "description": "",
            "item": [
                {
                    "name": "Create a new service",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/admin\/services",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/admin\/services"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "category",
                                    "value": "hire",
                                    "type": "text",
                                    "description": "The service category."
                                },
                                {
                                    "key": "brand",
                                    "value": "toyota",
                                    "type": "text",
                                    "description": "optional The car brand."
                                },
                                {
                                    "key": "type",
                                    "value": "suv",
                                    "type": "text",
                                    "description": "optional The car type."
                                },
                                {
                                    "key": "model",
                                    "value": "camry",
                                    "type": "text",
                                    "description": "optional The car model."
                                },
                                {
                                    "key": "fee",
                                    "value": "100.00",
                                    "type": "text",
                                    "description": "nullable."
                                },
                                {
                                    "key": "has_online_payment",
                                    "value": "1",
                                    "type": "text",
                                    "description": "nullable."
                                },
                                {
                                    "key": "location",
                                    "value": "Anywhere, Ibadan",
                                    "type": "text",
                                    "description": "nullable."
                                },
                                {
                                    "key": "description",
                                    "value": "{\"condition\": Oil change}",
                                    "type": "text",
                                    "description": "Description of the service."
                                },
                                {
                                    "key": "status",
                                    "value": "available",
                                    "type": "text",
                                    "description": "The status."
                                },
                                {
                                    "key": "image_file[]",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update a service",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/admin\/services\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/admin\/services\/:uuid",
                            "variable": [
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "c3bdfc89-ab64-4ebf-b331-305d5ba41783",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "description",
                                    "value": "Updated oil change",
                                    "type": "text",
                                    "description": "The new description."
                                },
                                {
                                    "key": "location",
                                    "value": "Anywhere, Ibadan",
                                    "type": "text",
                                    "description": "nullable."
                                },
                                {
                                    "key": "fee",
                                    "value": "100.00",
                                    "type": "text",
                                    "description": "nullable."
                                },
                                {
                                    "key": "has_online_payment",
                                    "value": "1",
                                    "type": "text",
                                    "description": "nullable."
                                },
                                {
                                    "key": "status",
                                    "value": "sold",
                                    "type": "text",
                                    "description": "The updated status."
                                },
                                {
                                    "key": "image_file[]",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete a service",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/admin\/services\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/admin\/services\/:uuid",
                            "variable": [
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "c3bdfc89-ab64-4ebf-b331-305d5ba41783",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update service status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/admin\/services\/:service_uuid\/status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/admin\/services\/:service_uuid\/status",
                            "variable": [
                                {
                                    "id": "service_uuid",
                                    "key": "service_uuid",
                                    "value": "c3bdfc89-ab64-4ebf-b331-305d5ba41783",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"status\":\"sold\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "List all our services",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/services",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "The page number.",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "10",
                                    "description": "Number of items per page.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "desc",
                                    "description": "Sort order. Allowed values: asc, desc.",
                                    "disabled": false
                                },
                                {
                                    "key": "status",
                                    "value": "available",
                                    "description": "Filter by service status.",
                                    "disabled": false
                                },
                                {
                                    "key": "search",
                                    "value": "ford",
                                    "description": "Search keyword.",
                                    "disabled": false
                                },
                                {
                                    "key": "type",
                                    "value": "brand",
                                    "description": "Field to search from. Allowed: category,brand,type,model,description.",
                                    "disabled": false
                                },
                                {
                                    "key": "range%5Bfrom%5D",
                                    "value": "2024-01-01",
                                    "description": "date Start date.",
                                    "disabled": false
                                },
                                {
                                    "key": "range%5Bto%5D",
                                    "value": "2024-12-31",
                                    "description": "date End date.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/services?page=1&per_page=10&sort=desc&status=available&search=ford&type=brand&range%5Bfrom%5D=2024-01-01&range%5Bto%5D=2024-12-31"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "53"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"status\":200,\"success\":true,\"data\":[{\"id\":119,\"uuid\":\"71755105-de11-4ca6-a7df-004c5b26061d\",\"category\":\"Installation\",\"brand\":\"Mercedes_Benz\",\"type\":\"Sedan\",\"model\":\"1977\",\"fee\":1200000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":true,\"description\":\"[{\\\"title\\\":\\\"Tell us your preferred prints or color combinations, and we\\u2019ll bring your vision to life! Whether you want a bold, vibrant change or a sleek, modern finish. We\\u2019ll print and design the wrap to your exact specifications.\\\\nWe provide Premium Quality Vinyl for long-lasting results.\\\\nExpert Installation for a flawless finish\\\\nFull Customization making your car truly one-of-a-kind.\\\\n\\\\n\\ud83d\\udcde Book Your Wrap Today!\\\\nGet in touch now, and let\\u2019s transform your vehicle into a masterpiece.\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1761303354\\\/qrnldav68v7ioe5yyuum.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1761303356\\\/b75obtosmu7rnepspj5d.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1761303358\\\/jzxzrqnekh9yo0jftrrk.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1761303360\\\/maj90rxdqgxkftztcea2.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1761303361\\\/wfeme5rzwm8pje9ovd3j.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1761303362\\\/nvcsgjgx04olsvv5n0ey.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1761303363\\\/jpu71qimjprsdf13po4n.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1761303364\\\/u9vada9xrjjxgkuvbduv.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1761303365\\\/qoqljvmrjpfz6iliaekz.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1761303366\\\/cnksceglru0yjsitpjqa.jpg\"],\"status\":\"available\",\"created_at\":\"2025-10-24T10:54:22.000000Z\",\"updated_at\":\"2025-10-24T10:54:22.000000Z\",\"deleted_at\":null},{\"id\":1,\"uuid\":\"c3bdfc89-ab64-4ebf-b331-305d5ba41783\",\"category\":\"Sales\",\"brand\":\"Lexus\",\"type\":\"Suv\",\"model\":\"Rx350 2011\",\"fee\":18500000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":true,\"description\":\"[{\\\"title\\\":\\\"2011 model, clean and sharp. Powerful engine, smooth ride, leather interior with chilling AC, and plenty of comfort features. Well-maintained, reliable, and ready for the road \\u2014 buy and drive.\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756598778\\\/jwmfelsvl46s9bxxuk37.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756598779\\\/nxrvcjafgvcavgce6fua.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756598779\\\/t6uyniuqdr2vh873c0rg.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756598780\\\/cuauervshqgkki9wghpk.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756598781\\\/xs6bitapknz1kuzxl4ep.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756598782\\\/ir8n9hjiqftad4doxmjx.jpg\"],\"status\":\"available\",\"created_at\":\"2025-08-31T00:05:44.000000Z\",\"updated_at\":\"2025-08-31T00:05:44.000000Z\",\"deleted_at\":null},{\"id\":120,\"uuid\":\"3e300270-6a5c-48f9-a85b-e0d57e5323a3\",\"category\":\"Accessories\",\"brand\":\"Toyota\",\"type\":\"All\",\"model\":\"All Model\",\"fee\":20000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Glittering steering logo for all cars\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1761303695\\\/wvvuzixvc0y9siocxz5h.jpg\"],\"status\":\"available\",\"created_at\":\"2025-10-24T10:59:50.000000Z\",\"updated_at\":\"2025-10-24T10:59:50.000000Z\",\"deleted_at\":null},{\"id\":118,\"uuid\":\"93aea53c-4a42-4e48-aaa8-086fdddb607a\",\"category\":\"Hire\",\"brand\":\"Mercedes_Benz\",\"type\":\"Sedan\",\"model\":\"1977\",\"fee\":70000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Looking for a classic, stylish car for your next photo shoot or movie production? This 1977 Mercedes-Benz is the perfect choice!\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1761303099\\\/oet4vlaiv8ln6jqcc8az.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1761303101\\\/muuodzzgkhkn5grleqcv.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1761303103\\\/s1wru7amgw0sdcl6otxj.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1761303104\\\/vmkw6wkf7uguhhgdcpst.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1761303105\\\/ao9ybrgyxqzuekdbgdqr.jpg\"],\"status\":\"available\",\"created_at\":\"2025-10-24T10:50:02.000000Z\",\"updated_at\":\"2025-10-24T10:50:02.000000Z\",\"deleted_at\":null},{\"id\":117,\"uuid\":\"f538d757-eb04-44f8-aec4-15ea6477275e\",\"category\":\"Parts\",\"brand\":\"All\",\"type\":\"All\",\"model\":\"Lion Power Fuel Pump\",\"fee\":16000,\"location\":\"Anywhere\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"High quality Lion Power Fuel Pump fits for all vehicles \\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1760957827\\\/qpfopskwpf9ki6mg37pj.jpg\"],\"status\":\"available\",\"created_at\":\"2025-10-20T10:55:27.000000Z\",\"updated_at\":\"2025-10-20T10:55:27.000000Z\",\"deleted_at\":null},{\"id\":116,\"uuid\":\"9a2ec340-14d7-4b54-934a-b50bf1b5416a\",\"category\":\"Parts\",\"brand\":\"All\",\"type\":\"All\",\"model\":\"Original Eagle Fuel Pump\",\"fee\":14000,\"location\":\"Anywhere\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"High quality Fuel Pump\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1760957687\\\/dxznewbpgxglrrwcupd3.jpg\"],\"status\":\"available\",\"created_at\":\"2025-10-20T10:53:07.000000Z\",\"updated_at\":\"2025-10-20T10:53:07.000000Z\",\"deleted_at\":null},{\"id\":115,\"uuid\":\"d40628dd-f87c-4aec-a501-dc8d8e729b6c\",\"category\":\"Parts\",\"brand\":\"All\",\"type\":\"All\",\"model\":\"Original Linkage\",\"fee\":10000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Fits for all vehicles \\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1760957478\\\/zvvhzeamgsdr3qteynt2.jpg\"],\"status\":\"available\",\"created_at\":\"2025-10-20T10:49:39.000000Z\",\"updated_at\":\"2025-10-20T10:49:39.000000Z\",\"deleted_at\":null},{\"id\":114,\"uuid\":\"500a0cda-d7fd-4d0a-932c-cf52afb2f535\",\"category\":\"Parts\",\"brand\":\"All\",\"type\":\"All\",\"model\":\"Original Ball Joint\",\"fee\":10000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Fits All Vehicle Types\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1760957135\\\/tjhyeu2viniinkzqnldz.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1760957135\\\/gzxhqvh4x9bo2qbrc7qp.jpg\"],\"status\":\"available\",\"created_at\":\"2025-10-20T10:43:56.000000Z\",\"updated_at\":\"2025-10-20T10:43:56.000000Z\",\"deleted_at\":null},{\"id\":113,\"uuid\":\"8bee9919-4680-4e9b-844b-e0144cdc0f82\",\"category\":\"Parts\",\"brand\":\"All\",\"type\":\"All\",\"model\":\"All Cars\",\"fee\":13000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Original Ignition Coil \\u2013 Fits All Vehicle Types\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1760956685\\\/adiarqetpwfu31hslidr.jpg\"],\"status\":\"available\",\"created_at\":\"2025-10-20T10:36:26.000000Z\",\"updated_at\":\"2025-10-20T10:36:26.000000Z\",\"deleted_at\":null},{\"id\":112,\"uuid\":\"b782f87b-94d7-4b94-b2b8-56b703e5fd8c\",\"category\":\"Parts\",\"brand\":\"All\",\"type\":\"All\",\"model\":\"Water Pump\",\"fee\":13000,\"location\":\"Anywhere\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"High-Quality Genuine Water Pump \\u2013 Fits All Car Makes and Models\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1760956385\\\/zzmpymzqz5cylf1ukwzq.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1760956386\\\/r3btc7xebmcvmyexiucu.jpg\"],\"status\":\"available\",\"created_at\":\"2025-10-20T10:31:27.000000Z\",\"updated_at\":\"2025-10-20T10:31:27.000000Z\",\"deleted_at\":null},{\"id\":111,\"uuid\":\"413f3b9b-fcf5-4a14-a0d4-f4b75437268b\",\"category\":\"Parts\",\"brand\":\"Toyota\",\"type\":\"All\",\"model\":\"All Toyota Brand\",\"fee\":8500,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Original Toyota Automatic Transmission Fluid (ATF) WS - 1 Liter\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1760955978\\\/telu0lj60lwkkmozupaq.jpg\"],\"status\":\"available\",\"created_at\":\"2025-10-20T10:24:38.000000Z\",\"updated_at\":\"2025-10-20T10:24:38.000000Z\",\"deleted_at\":null},{\"id\":110,\"uuid\":\"a4b7f869-5f8b-41b9-b12f-ff3fbb62f380\",\"category\":\"Parts\",\"brand\":\"All\",\"type\":\"All\",\"model\":\"T4 Transmission Oil\",\"fee\":9000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"T4 Transmission Oil\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1760955236\\\/lkk7iavpdlcibwdrt1np.jpg\"],\"status\":\"available\",\"created_at\":\"2025-10-20T10:12:16.000000Z\",\"updated_at\":\"2025-10-20T10:12:16.000000Z\",\"deleted_at\":null},{\"id\":109,\"uuid\":\"d11f71c6-d2e8-421d-a7d7-dfd4827a3f3d\",\"category\":\"Sales\",\"brand\":\"Ford\",\"type\":\"Truck\",\"model\":\"2016\",\"fee\":40000000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"2016 Ford f150 lariat edition, push start, panoramic roof, v6 engine, ecoboost system, and fuel efficient\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1760440847\\\/x6mden2xbdhb1jompxxu.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1760440848\\\/m8cap6qu1rdhnt2loqpn.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1760440849\\\/xpdc5kodyfyar8bpoauj.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1760440850\\\/ekdgbwpd2wbrfzawnrd4.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1760440851\\\/trixeee1noeheq1ql4zi.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1760440852\\\/ompjlowhkr9jhjqtlsyu.jpg\"],\"status\":\"available\",\"created_at\":\"2025-10-14T11:19:20.000000Z\",\"updated_at\":\"2025-10-14T11:19:20.000000Z\",\"deleted_at\":null},{\"id\":108,\"uuid\":\"fe3326de-5b5f-4b62-b50b-f771124a30ab\",\"category\":\"Sales\",\"brand\":\"Hyundai\",\"type\":\"Sedan\",\"model\":\"2011 Sonata\",\"fee\":7000000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Sharp and clean Hyundai 2011 sonata,keyless entry with clean leathered interior,untampered engine and gear,chilling AC.\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1758961924\\\/ktwsolaet8qoe6cj6igx.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1758961925\\\/fl8k0rmn8bucc19xjrrl.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1758961925\\\/d6ghecfdwyymm8u73hib.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1758961926\\\/brfzwie6zvigmkpblmzp.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-27T08:30:55.000000Z\",\"updated_at\":\"2025-09-27T08:30:55.000000Z\",\"deleted_at\":null},{\"id\":107,\"uuid\":\"abd669e3-a4b8-461d-bfb4-24ea544e1546\",\"category\":\"Parts\",\"brand\":\"Lexus\",\"type\":\"Sedan\",\"model\":\"2008 To 2012 Is250\",\"fee\":60000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"All 2008 to 2012 model manifold available for sale \\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1758440831\\\/trtebuv3lrcx5b4ozlcl.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-21T07:46:06.000000Z\",\"updated_at\":\"2025-09-21T07:46:06.000000Z\",\"deleted_at\":null},{\"id\":106,\"uuid\":\"d4709f45-f423-4a91-a721-67fd403572f5\",\"category\":\"Hire\",\"brand\":\"Toyota\",\"type\":\"Van\",\"model\":\"2022 Hiace\",\"fee\":240000,\"location\":\"Anywhere\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Travel safely and comfortably with a professional driver and a vehicle you can trust.(Price varies with location)\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757504042\\\/zpqllptfjdbfkzsf6kbv.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-10T11:33:11.000000Z\",\"updated_at\":\"2025-09-10T11:33:11.000000Z\",\"deleted_at\":null},{\"id\":105,\"uuid\":\"c9f4cac7-9789-4cf9-99e5-dd071be19be6\",\"category\":\"Hire\",\"brand\":\"Toyota\",\"type\":\"Suv\",\"model\":\"2018 Land Cruiser\",\"fee\":200000,\"location\":\"Lagos\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Make every journey comfortable and memorable with our 2018 Toyota Land Cruiser. Perfect for family trips, corporate events, airport pickups, and special occasions. Enjoy spacious seating, smooth ride, strong AC, and reliable performance.(Price varies with location) Escorts available on request.\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757503724\\\/txrc6bmgmrjabr48ukez.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757503725\\\/dmykiewidfjlkhqv8fuz.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757503726\\\/xgdsq9xhv2sna9yzfhkl.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-10T11:27:55.000000Z\",\"updated_at\":\"2025-09-10T11:27:55.000000Z\",\"deleted_at\":null},{\"id\":104,\"uuid\":\"555707b5-35d7-4da9-86d8-003244f3c2b7\",\"category\":\"Hire\",\"brand\":\"Toyota\",\"type\":\"Sedan\",\"model\":\"2009 Camry\",\"fee\":100000,\"location\":\"Anywhere\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Comfortable, reliable, and smooth ride. Perfect for airport transfers, events, or daily trips. Travel safely with a professional driver.(Price varies with location)\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757503459\\\/y2ceotdosrfsomfwuahb.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757503460\\\/hxiypvbjbaysbt0wgrf7.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757503461\\\/xzyrlpcwoocdi9epeum4.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-10T11:23:30.000000Z\",\"updated_at\":\"2025-09-10T11:23:30.000000Z\",\"deleted_at\":null},{\"id\":103,\"uuid\":\"691bd0f0-47fc-474d-9545-b83c4f639f89\",\"category\":\"Hire\",\"brand\":\"Toyota\",\"type\":\"Suv\",\"model\":\"2015\",\"fee\":150000,\"location\":\"Lagos\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Perfect for weddings, corporate outings, airport transfers, and long-distance travel. Enjoy a safe, comfortable, and classy ride with a professional driver.(Price varies with location)\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757503246\\\/sththikyehhnzwd036s1.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757503247\\\/rtwtbllffsnmgdza0ay5.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757503248\\\/wtkpsqkat4r8rt1in2ih.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-10T11:19:57.000000Z\",\"updated_at\":\"2025-09-10T11:19:57.000000Z\",\"deleted_at\":null},{\"id\":102,\"uuid\":\"7abc4526-878f-41df-8dc7-d096dbc9ca04\",\"category\":\"Hire\",\"brand\":\"Toyota\",\"type\":\"Minivan\",\"model\":\"2006 Sienna\",\"fee\":150000,\"location\":\"Anywhere\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Need a reliable ride for your trips, events, or family outings? Our Toyota Sienna is available for hire, offering maximum comfort, spacious 3-row seating, and strong air conditioning. Perfect for airport pickups, weddings, road trips, and group transportation.(Price vary with location)\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757500649\\\/gic7wiy8gyutq5lqxgqy.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757500650\\\/vlkzqgi9uu2l9vsybnll.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757500651\\\/tbgsudvd2pr46vqcpdfy.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757500652\\\/asxbvov2wnevh9aghb0g.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757500653\\\/n3lu1kxfajy6fxzai2qt.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-10T10:36:41.000000Z\",\"updated_at\":\"2025-09-10T10:36:41.000000Z\",\"deleted_at\":null},{\"id\":101,\"uuid\":\"43a1f6da-8626-4e59-8472-006ba0367f31\",\"category\":\"Hire\",\"brand\":\"Honda\",\"type\":\"Minivan\",\"model\":\"2010 Odyssey\",\"fee\":150000,\"location\":\"Anywhere\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Looking for a reliable and spacious ride for family outings, events, or airport transfers? Our 2010 Honda Odyssey offers roomy 3-row seating, smooth suspension, strong AC, and a comfortable interior. Perfect for small groups, road trips, and special occasions.\\\\n\\\\nTravel in style, comfort, and safety with a professional driver at your service.( Price varies with location)\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757500374\\\/w57qcoor9pooxwwsypqr.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757500375\\\/prrgvb2cgo07ykvqfxum.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757500376\\\/zqnaefq64lohogs4yza2.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-10T10:32:05.000000Z\",\"updated_at\":\"2025-09-10T10:32:05.000000Z\",\"deleted_at\":null},{\"id\":100,\"uuid\":\"20e426b7-d1bf-4386-bdaf-376976c13824\",\"category\":\"Hire\",\"brand\":\"Toyota\",\"type\":\"Van\",\"model\":\"Hiace\",\"fee\":150000,\"location\":\"Anywhere\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Need a comfortable and dependable vehicle for group travel or events? Our Toyota Hiace is available for hire, offering ample seating for 12\\u201315 passengers, strong air conditioning, and a smooth ride. Perfect for airport transfers, corporate trips, school outings, and group tours.\\\\n\\\\nTravel safely and comfortably with a professional driver and a vehicle you can trust(price varies with location) escorts available on request. \\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757500103\\\/ysw5gnxebpdntum0z6n7.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757500103\\\/yryze7k613xolzvat8gx.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757500104\\\/zk4fxw7qbgytw3andrvj.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-10T10:27:33.000000Z\",\"updated_at\":\"2025-09-10T10:27:33.000000Z\",\"deleted_at\":null},{\"id\":99,\"uuid\":\"279407fd-5827-4260-830f-9dfc4624dd91\",\"category\":\"Hire\",\"brand\":\"Toyota\",\"type\":\"Suv\",\"model\":\"2018 Prado\",\"fee\":170000,\"location\":\"Anywhere\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Looking for a premium SUV for your trips, events, or business needs? Our 2018 Toyota Prado is available for hire. Spacious, stylish, and reliable, it comes with luxury interior, strong AC, smooth suspension, and top-class comfort.\\\\n\\\\nPerfect for weddings, corporate outings, airport transfers, and long-distance travel. Enjoy a safe, comfortable, and classy ride with a professional driver.(Price varies with location). Escort available on request. \\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757499926\\\/nqwcgr0cavrgsmhliizd.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757499927\\\/jas8mbjbunwoijqyglyo.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757499928\\\/ymybasmogly37hgrgsmt.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757499929\\\/w4dde2k75ddb5eqeavvj.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-10T10:24:38.000000Z\",\"updated_at\":\"2025-09-10T10:24:38.000000Z\",\"deleted_at\":null},{\"id\":98,\"uuid\":\"39efff36-ccf4-49ba-ba9a-23a0fc24944d\",\"category\":\"Hire\",\"brand\":\"Toyota\",\"type\":\"Minivan\",\"model\":\"2008\",\"fee\":150000,\"location\":\"Anywhere\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Need a reliable ride for your trips, events, or family outings? Our Toyota Sienna is available for hire, offering maximum comfort, spacious 3-row seating, and strong air conditioning. Perfect for airport pickups, weddings, road trips, and group transportation.\\\\n\\\\nEnjoy a smooth and safe journey with a professional driver and a vehicle you can trust.(Price varies with location and comfortability)\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757499671\\\/xmcqscijp4behuloe5qo.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757499672\\\/o45stsrcs9kwzbyojstj.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757499673\\\/ckhetz7eem5kj5zkjxji.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-10T10:20:22.000000Z\",\"updated_at\":\"2025-09-10T10:20:22.000000Z\",\"deleted_at\":null},{\"id\":97,\"uuid\":\"aa298304-92df-40a9-abf2-cbec7ed84a1f\",\"category\":\"Sales\",\"brand\":\"Lexus\",\"type\":\"Sedan\",\"model\":\"2012 Gx350\",\"fee\":23500000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Freshly imported, very clean and well-maintained. Equipped with All-Wheel Drive for smooth handling on all roads. Neat interior, chilling factory AC, strong engine and transmission, and reliable suspension. Luxury, comfort, and durability all in one.\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757499332\\\/pgsxlik9mvkskfajshr1.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757499333\\\/zthm4qjh2zjd7ubgfmji.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757499334\\\/nhtbfl8x2fbmg02mbwoq.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757499336\\\/chakw1beffu6zmylee2w.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757499337\\\/cuef8fiyfuj03rxq3s16.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757499338\\\/uyjs5d5dmshgnobvyvu9.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757499339\\\/zuyj6q93chjinjlesugq.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-10T10:14:48.000000Z\",\"updated_at\":\"2025-09-10T10:14:48.000000Z\",\"deleted_at\":null},{\"id\":96,\"uuid\":\"9e5648dd-52e9-484b-b973-7a84c99a7ab0\",\"category\":\"Sales\",\"brand\":\"Toyota\",\"type\":\"Suv\",\"model\":\"2020 Rav4 Adventure Edition\",\"fee\":50000000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Fresh arrival, clean inside and out with no issues. Adventure trim, giving you rugged styling, top comfort, and advanced features. Smooth engine and gear, neat interior, factory AC cooling, and modern tech features. Strong suspension and ready for any terrain.\\\\n\\\\nPerfect for those who want reliability, style, and performance in one package.\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757498973\\\/d4xjj8m0rrnj0megkfk6.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757498974\\\/fppxfeeh144vje3jl6xf.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757498976\\\/jfnj1fh1icqyjdzbcvzh.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757498977\\\/bdddmoxwvdspdyefk40q.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757498978\\\/ykjwkpfyiltdxn90i9pg.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757498980\\\/b3gmej5px2woosuzphjn.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757498982\\\/nis4qekloufuxjlkx5lp.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-10T10:08:53.000000Z\",\"updated_at\":\"2025-09-10T10:08:53.000000Z\",\"deleted_at\":null},{\"id\":95,\"uuid\":\"a9049bae-4ff6-4b5d-907f-a2dcf756e113\",\"category\":\"Parts\",\"brand\":\"All\",\"type\":\"All\",\"model\":\"All Model\",\"fee\":14000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Eagle fuel pump for all car model. \\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757496094\\\/aivpeu7u3kzcipo5668s.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-10T09:20:43.000000Z\",\"updated_at\":\"2025-09-10T09:20:43.000000Z\",\"deleted_at\":null},{\"id\":94,\"uuid\":\"6217514d-9cab-42de-949b-d2fdb0e17b2a\",\"category\":\"Parts\",\"brand\":\"Nissan\",\"type\":\"Sedan\",\"model\":\"1999 To 2008 Micra\",\"fee\":5500,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Super fit Brake pad for Nissan micra. All year model \\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757496007\\\/hplrzijyt36yfxkhecgc.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-10T09:19:16.000000Z\",\"updated_at\":\"2025-09-10T09:19:16.000000Z\",\"deleted_at\":null},{\"id\":93,\"uuid\":\"34e97970-6b16-415a-ba0e-355a0809b825\",\"category\":\"Parts\",\"brand\":\"Toyota\",\"type\":\"Sedan\",\"model\":\"2003 To 2009 Camry\",\"fee\":7000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Super fit Brake pad for Toyota Camry and Lexus ES models \\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757495915\\\/nslsom3f90brfpektvw4.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-10T09:17:44.000000Z\",\"updated_at\":\"2025-09-10T09:17:44.000000Z\",\"deleted_at\":null},{\"id\":92,\"uuid\":\"2d3bc707-2df1-4173-b50f-ee03e5225416\",\"category\":\"Sales\",\"brand\":\"Toyota\",\"type\":\"Sedan\",\"model\":\"2013 Camry Le\",\"fee\":14000000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Premium quality foreign used spider available for new owner. Car is spotless and in top condition. \\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757444996\\\/xaimoxvsemwrsnkl3s2i.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757444997\\\/ypyvclc9cnnorwi4xffm.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757444998\\\/dzytrp5fzvuey7vrkmjo.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757444999\\\/pigbgj0kjug2obqaezw3.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757445000\\\/gbevtvohrjkuszpaddik.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757445001\\\/fqmjz7f1cohwboyz7wqw.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757445002\\\/hu5ozqpfyavygduqkmuq.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757445003\\\/lwnwnqrmmt3fywn5xsht.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T19:09:12.000000Z\",\"updated_at\":\"2025-09-09T19:09:12.000000Z\",\"deleted_at\":null},{\"id\":91,\"uuid\":\"14dd9792-13e5-4e12-a15f-1879bc075d4f\",\"category\":\"Sales\",\"brand\":\"Lexus\",\"type\":\"Suv\",\"model\":\"2013 Rx350\",\"fee\":27000000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Clean foreign used rx350 available for new home. Sharp clean and healthy  \\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757444839\\\/mrjl8pqqormojqp6puej.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757444840\\\/cxgm1gpxuu0d1ytr7yid.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757444841\\\/akzezqchq7ga9w5roxor.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757444841\\\/zcf4ulgqnvgbntchezzi.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757444842\\\/ylrwijfnr8omub2rhdpc.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757444844\\\/gwqa0vtgj364tnbtupkw.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757444845\\\/gyg6wkltqk42buk5na1r.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T19:06:34.000000Z\",\"updated_at\":\"2025-09-09T19:06:34.000000Z\",\"deleted_at\":null},{\"id\":90,\"uuid\":\"a0180306-a4f2-4cb5-8ce7-82226cf96b70\",\"category\":\"Sales\",\"brand\":\"Ford\",\"type\":\"Suv\",\"model\":\"2013 Explorer\",\"fee\":15000000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Foreign used explorer ready for new home. Clean and healthy like new. \\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757444696\\\/b5dh9jorjtvzr6csdzrm.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757444697\\\/dezqzxppeifpuex7we9g.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757444698\\\/ncsje0clakidadk5dxvn.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757444700\\\/lypcimtfljsiijrrc0ee.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757444701\\\/ovyjkti85jc4eshzhepw.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757444703\\\/jpzhdldruxpikcxajzyk.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757444704\\\/tja2tityqjx2vquy4stv.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757444706\\\/vbzebsq9olhgy7ahhot8.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757444709\\\/gds5yqaznlsyfmorge6r.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T19:04:19.000000Z\",\"updated_at\":\"2025-09-09T19:04:19.000000Z\",\"deleted_at\":null},{\"id\":89,\"uuid\":\"4cb8cb89-2340-4bd0-b756-39dcaa547816\",\"category\":\"Sales\",\"brand\":\"Kia\",\"type\":\"Sedan\",\"model\":\"2019 Optima Sport\",\"fee\":19000000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Foreign used optima in top condition. Complete duty paid,no dent no scratches. Absolute buy and drive. \\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757444537\\\/nvf2ti258sbtsxxiktfi.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757444538\\\/ekmp7bhntpitm5pqyxsb.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757444540\\\/png8yl1hssjgcitv3abo.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757444541\\\/tpiytqgbreexftnxj603.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757444542\\\/wdzmw9ype5momgoveind.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757444543\\\/y5l30neb5rllumyprxv5.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757444544\\\/yxyvruclx6v8lxu3u2lg.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757444545\\\/n2sjlarvcxhwgyfrqedz.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T19:01:34.000000Z\",\"updated_at\":\"2025-09-09T19:01:34.000000Z\",\"deleted_at\":null},{\"id\":88,\"uuid\":\"a713e598-1fa8-43bd-b39d-6c15f42e1550\",\"category\":\"Sales\",\"brand\":\"Toyota\",\"type\":\"Sedan\",\"model\":\"2015 Avalon\",\"fee\":22500000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"New entry limited Avalon with all components intact. Car is still and healthy like new. Ready for new garage. Get in touch. \\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757444325\\\/ulu0rna3etvcafjcjgmn.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757444326\\\/uqjwd4wltqlyacbqy1qv.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757444328\\\/om7kenxobb1z68kfesxw.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757444329\\\/hzmc1mljhkpi1zc0ef8d.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757444330\\\/spn04mb9bn9pyirpbwnm.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757444332\\\/rhyxsycpcup8jshmkgtg.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757444333\\\/jvpuqrlgtkighacyoz7v.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757444334\\\/fbvbfu751g93vkpsbljt.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757444335\\\/kzq6hvcm2qq21lzambvg.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T18:58:05.000000Z\",\"updated_at\":\"2025-09-09T18:58:05.000000Z\",\"deleted_at\":null},{\"id\":87,\"uuid\":\"7b14632b-094c-48d7-b67a-84cc7acad289\",\"category\":\"Sales\",\"brand\":\"Mercedes_Benz\",\"type\":\"Sedan\",\"model\":\"2018 C300\",\"fee\":32500000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Very sharp and clean  foreign used 2018 c300. Total accident free. Complete duty paid. Clean interior with Ac chilling. Absolute buy and drive condition. \\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757444093\\\/izrshicz1hpalkxjsqdj.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757444094\\\/mmlvwemsvtd0ofxvqnoi.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757444095\\\/lh9uqpc8uufxtecfn2zk.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757444096\\\/jjwe91didruomcodncjp.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757444098\\\/mno15oousckugucv1e8p.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757444099\\\/pxgda98eicyecfnvvjqq.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757444099\\\/mf2fmcrmvgqtwoytnurl.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757444100\\\/azvowqlagzpgaxaxmkfh.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T18:54:10.000000Z\",\"updated_at\":\"2025-09-09T18:54:10.000000Z\",\"deleted_at\":null},{\"id\":86,\"uuid\":\"d540e4a0-7fff-416d-a7ed-226f83ac4f44\",\"category\":\"Sales\",\"brand\":\"Toyota\",\"type\":\"Sedan\",\"model\":\"2014 Camry Sports\",\"fee\":15000000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"New arrival 2014 Camry sport. Sharp clean and healthy. Total accident free with low mileage. Ac chilling. Good legs good tyres. \\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757443840\\\/dl8w1welsewpzslee0eq.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757443841\\\/zq7lfniw7tp5vxtihc4e.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757443842\\\/stfw29zb5jqxwlj0ms4l.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757443843\\\/l8xuno14gjyxma0x3kka.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757443844\\\/cbdnr5gnnsrxyhch7h7c.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757443845\\\/nllfst4sa0kafaccp16n.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757443846\\\/mxtqu0j6i6okh0kpnjni.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T18:49:55.000000Z\",\"updated_at\":\"2025-09-09T18:49:55.000000Z\",\"deleted_at\":null},{\"id\":85,\"uuid\":\"dbbc284b-8e6b-423e-b3b5-8dbcc7549319\",\"category\":\"Sales\",\"brand\":\"Toyota\",\"type\":\"Sedan\",\"model\":\"2013 Corolla Sport\",\"fee\":13500000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Foreign used Toyota Corolla direct 2013\\\\nFirst body \\ud83d\\udcaf Accident free \\u2705\\\\n\\u26d4\\ufe0f *Engine is unscrewed (Factory fitted)*\\\\n\\u26d4\\ufe0f *Gear is working perfectly (Factory fitted)*\\\\n\\u26d4\\ufe0f *Ac is super chilling \\ud83e\\udd76*\\\\n2025 On custom \\ud83d\\udcda  May entry\\u2705\\\\nEverything are working perfectly \\ud83d\\udcaf\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757441923\\\/gbyrgxpjdezqpr0pueub.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757441924\\\/x3smswqx3ditgy3i88ib.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757441925\\\/nbklzkcaiumryhttpw5l.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757441926\\\/tkf0pjyy9xqtorhystn7.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757441927\\\/lneeooee2omr9glyboip.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757441928\\\/ktoruiswjwa5qqn6mbff.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T18:17:57.000000Z\",\"updated_at\":\"2025-09-09T18:17:57.000000Z\",\"deleted_at\":null},{\"id\":84,\"uuid\":\"e3f23c96-575a-47fb-8ed5-ec3455953811\",\"category\":\"Installation\",\"brand\":\"\",\"type\":\"\",\"model\":\"All Models\",\"fee\":300000,\"location\":\"Anywhere\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Fancy Tokunbo alloy rims, neat, durable and top condition. Price varies with type. \\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757441658\\\/fkwbqktynjdg2ijyhkoy.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757441659\\\/k7hexasjmjff8uqbz6xj.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T18:13:29.000000Z\",\"updated_at\":\"2025-09-09T18:13:29.000000Z\",\"deleted_at\":null},{\"id\":83,\"uuid\":\"523ecee1-ad59-47b4-9da5-d7ca1228e69a\",\"category\":\"Consultation\",\"brand\":\"Lexus\",\"type\":\"Sedan\",\"model\":\"2008\",\"fee\":10000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Full scanning for Lexus es350\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757441506\\\/elczsioiqo3tihoxgoco.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T18:10:56.000000Z\",\"updated_at\":\"2025-09-09T18:10:56.000000Z\",\"deleted_at\":null},{\"id\":82,\"uuid\":\"f2cef687-5826-4657-9773-3f054113529e\",\"category\":\"Parts\",\"brand\":\"\",\"type\":\"\",\"model\":\"All Models\",\"fee\":60000,\"location\":\"Anywhere\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"All Tokunbo tyre sizes available for sale. \\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757441421\\\/a5ulcc9hm6s1qatmouak.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T18:09:31.000000Z\",\"updated_at\":\"2025-09-09T18:09:31.000000Z\",\"deleted_at\":null},{\"id\":81,\"uuid\":\"a4ff8832-fd67-44fa-8225-77e229432148\",\"category\":\"Parts\",\"brand\":\"\",\"type\":\"\",\"model\":\"All Models\",\"fee\":130000,\"location\":\"Anywhere\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Brand new tyre with all sizes available for sale. \\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757441329\\\/kyowxr749uqfdun4vfqa.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T18:07:59.000000Z\",\"updated_at\":\"2025-09-09T18:07:59.000000Z\",\"deleted_at\":null},{\"id\":80,\"uuid\":\"15454d49-733c-462a-b4c6-97779bed46d9\",\"category\":\"Consultation\",\"brand\":\"Honda\",\"type\":\"Sedan\",\"model\":\"2022\",\"fee\":20000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Full car scanning for 2021 Honda Accord \\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757441224\\\/eezhs4i5c8pmtwiugmyj.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T18:06:14.000000Z\",\"updated_at\":\"2025-09-09T18:06:14.000000Z\",\"deleted_at\":null},{\"id\":79,\"uuid\":\"ab690b2b-6d3f-4b49-b8fb-8b63ecd0aa9a\",\"category\":\"Parts\",\"brand\":\"Hyundai\",\"type\":\"Sedan\",\"model\":\"2008 To 2011 Sonata\",\"fee\":1550000,\"location\":\"Anywhere\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Tokunbo Hyundai sonata engines available for sale \\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757441083\\\/mrelqwjdp9lo8yxy6pli.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T18:03:53.000000Z\",\"updated_at\":\"2025-09-09T18:03:53.000000Z\",\"deleted_at\":null},{\"id\":78,\"uuid\":\"f7a49e53-3d61-4d77-a70c-0d208202f366\",\"category\":\"Sales\",\"brand\":\"Honda\",\"type\":\"Sedan\",\"model\":\"2019 Accord\",\"fee\":28000000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Foreign used Accord sport for sale. In top condition with high performance engine, clean in and out. Moscow standard ac. Rust free and absolute buy and drive. \\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757440917\\\/w1pjaylbu9bbciijdzr9.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757440918\\\/jvrhb5ketcz2tfip6eto.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757440919\\\/egadylrci4fc4zhalcvz.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757440920\\\/ad3xb6avoc5b2bkm78nn.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757440922\\\/mehscrxh3vizwt4p9qef.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757440923\\\/mrep5mld6zeheh77behf.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757440925\\\/oidoqfbxbdg93xeixqzy.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T18:01:14.000000Z\",\"updated_at\":\"2025-09-09T18:01:14.000000Z\",\"deleted_at\":null},{\"id\":77,\"uuid\":\"f4e261e2-b7fc-431a-a24b-cd9bdb1bbe8a\",\"category\":\"Hire\",\"brand\":\"Toyota\",\"type\":\"Sedan\",\"model\":\"2004 Camry\",\"fee\":80000,\"location\":\"Anywhere\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Available for interstate travels and airport pickup or dropoff. Price differs with location \\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757440630\\\/kngitgwumthqzpamndeo.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757440632\\\/fuzhnxvuxyhwl7s4v8vk.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757440633\\\/qt9tgbdqhml1rva1vlmv.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757440634\\\/yvw4hpeavvwqdgveqni4.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T17:56:24.000000Z\",\"updated_at\":\"2025-09-09T17:56:24.000000Z\",\"deleted_at\":null},{\"id\":76,\"uuid\":\"f44d381f-a32b-4b4f-8c6b-fbcf16551a5b\",\"category\":\"Parts\",\"brand\":\"\",\"type\":\"\",\"model\":\"All Models\",\"fee\":20000,\"location\":\"Anywhere\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Grade one Tokunbo absorber for all vehicles. Price varies with year and model type  \\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757440412\\\/pdp4xmmit58ta0bataet.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T17:52:41.000000Z\",\"updated_at\":\"2025-09-09T17:52:41.000000Z\",\"deleted_at\":null},{\"id\":75,\"uuid\":\"8d3b22d7-613a-4dd4-8d46-01ab18a5e7ed\",\"category\":\"Installation\",\"brand\":\"\",\"type\":\"\",\"model\":\"All Model\",\"fee\":15000,\"location\":\"Anywhere\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Fancy Car stickers and accessories available. \\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757440320\\\/fpkbmxoitj0juwxzkcs6.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757440322\\\/ydh8xsh7zsbq8j1ou9uz.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T17:51:12.000000Z\",\"updated_at\":\"2025-09-09T17:51:12.000000Z\",\"deleted_at\":null},{\"id\":74,\"uuid\":\"33fdb86f-5a6e-42aa-bb26-005318e700d1\",\"category\":\"Hire\",\"brand\":\"Honda\",\"type\":\"Sedan\",\"model\":\"2000\",\"fee\":100000,\"location\":\"Anywhere\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Available for hire services within ibadan and interstate travels \\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757440211\\\/kdayet5sqxemvsml4baa.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757440212\\\/e31uynkhfws5jjughtdu.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757440214\\\/b3ym2liywrziskakcp1v.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757440215\\\/top2xi1fmtndwbrlxgjq.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T17:49:25.000000Z\",\"updated_at\":\"2025-09-09T17:49:25.000000Z\",\"deleted_at\":null},{\"id\":73,\"uuid\":\"c61af306-c4e8-44a6-82c7-2a994e6bbfc1\",\"category\":\"Sales\",\"brand\":\"Toyota\",\"type\":\"Minivan\",\"model\":\"2008 Sienna\",\"fee\":6500000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Toks standard 2008 sienna LE with very clean interior with first body paint, chilling ac, power booth, reverse camera. Untampered engine and gear. Absolute buy and drive condition \\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757440065\\\/kvrq6hf7uuqglm40syyj.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757440066\\\/uo8nfhv5afm53tskmfe8.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757440067\\\/trlyi9awltrff0zhtuhy.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757440069\\\/htzuasxo5wapeus0ivns.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757440070\\\/jlx0wlxqqoqeanhehxr2.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T17:47:00.000000Z\",\"updated_at\":\"2025-09-09T17:47:00.000000Z\",\"deleted_at\":null},{\"id\":72,\"uuid\":\"b0cf2c0b-b046-4401-986e-53667c204c8b\",\"category\":\"Repair\",\"brand\":\"Toyota\",\"type\":\"Suv\",\"model\":\"2007 Highlander\",\"fee\":15000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Injector cleaning and servicing. Price varies with year,model type and fault noticed. \\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757438830\\\/epw3nujeq1dfipqypore.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T17:26:20.000000Z\",\"updated_at\":\"2025-09-09T17:26:20.000000Z\",\"deleted_at\":null},{\"id\":71,\"uuid\":\"3d92d2aa-5265-4fae-b274-913a854c0b20\",\"category\":\"Repair\",\"brand\":\"Mercedes_Benz\",\"type\":\"Sedan\",\"model\":\"E350\",\"fee\":15000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Call for proper car repair services \\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757438652\\\/avcdu74mbg2s5pflyh3v.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T17:23:22.000000Z\",\"updated_at\":\"2025-09-09T17:23:22.000000Z\",\"deleted_at\":null},{\"id\":70,\"uuid\":\"9a9fe87a-3d60-43de-81c1-628df1120a8a\",\"category\":\"Installation\",\"brand\":\"Hyundai\",\"type\":\"All\",\"model\":\"All Models\",\"fee\":150000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Hyundai extra car key installation. \\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757438502\\\/stsu6dyuegcierm29s6v.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T17:20:52.000000Z\",\"updated_at\":\"2025-09-09T17:20:52.000000Z\",\"deleted_at\":null},{\"id\":69,\"uuid\":\"7823700c-2eed-46c2-98ff-aec35f37755a\",\"category\":\"Repair\",\"brand\":\"\",\"type\":\"\",\"model\":\"All Models\",\"fee\":100000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"We specialize in fixing leaking AC evaporators and expert dashboard refitting. Our technicians ensure your air conditioning system is fully restored while keeping your dashboard neat and perfectly aligned. Price differs with model type and year \\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757438276\\\/jwwg5kss66wntgfjerrq.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757438277\\\/bmt57ftbyajzqo5lxrxu.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T17:17:07.000000Z\",\"updated_at\":\"2025-09-09T17:17:07.000000Z\",\"deleted_at\":null},{\"id\":68,\"uuid\":\"4cad383f-c046-42c1-8b11-17aedfb0a9d8\",\"category\":\"Consultation\",\"brand\":\"Lexus\",\"type\":\"All\",\"model\":\"All Models\",\"fee\":15000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Get expert care for your Lexus with our specialized consultation and diagnostic scanning. We provide accurate fault detection, performance checks, and tailored solutions to keep your vehicle running at its best. Price varies with model type and year. \\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757438068\\\/hkpw8p5qd2kgghlg2smn.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T17:13:37.000000Z\",\"updated_at\":\"2025-09-09T17:13:37.000000Z\",\"deleted_at\":null},{\"id\":67,\"uuid\":\"22b15ad9-59d2-4440-a1fb-55cfbfe488bc\",\"category\":\"Parts\",\"brand\":\"\",\"type\":\"\",\"model\":\"2010 To 2017\",\"fee\":1500000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"2AR direct Tokunbo engines available for sale. Price is negotiable. \\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757437872\\\/blxamkmjnv69xkn6hvpr.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757437873\\\/qalmu75vsbxis9lepcck.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T17:10:23.000000Z\",\"updated_at\":\"2025-09-09T17:10:23.000000Z\",\"deleted_at\":null},{\"id\":66,\"uuid\":\"ebcc0fee-2605-404b-bc5f-02387263a123\",\"category\":\"Repair\",\"brand\":\"\",\"type\":\"\",\"model\":\"All Model\",\"fee\":10000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Book your oil change and service today \\u2013 your car deserves the best care!\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757436863\\\/cdb0ldmv1stm5vfprzkv.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757436864\\\/v8kvfxxt5poiofpauvqx.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T16:53:34.000000Z\",\"updated_at\":\"2025-09-09T16:53:34.000000Z\",\"deleted_at\":null},{\"id\":65,\"uuid\":\"0aef859f-f80f-45eb-b47a-bc91e7365cd1\",\"category\":\"Repair\",\"brand\":\"\",\"type\":\"\",\"model\":\"2013 Toyota Corolla Sports\",\"fee\":500000,\"location\":\"Anywhere\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Bring your Car back to perfect shape with our professional reassembly service. Whether after accident repair, major maintenance, or part replacement, we carefully rebuild and refit every component to factory standard. Price differ with year and model type.\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757436586\\\/qdqzz2rtyc5zz8l9hepj.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757436587\\\/vusufa2xgfp0rxizxkng.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757436588\\\/gktcow4zqourmp0ihhuu.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757436589\\\/xi4u9s9cup66bagbuxhb.jpg\"],\"status\":\"unavailable\",\"created_at\":\"2025-09-09T16:48:59.000000Z\",\"updated_at\":\"2025-09-09T16:48:59.000000Z\",\"deleted_at\":null},{\"id\":63,\"uuid\":\"e17a4c18-430c-4ccc-b4f5-f984cfc1dddc\",\"category\":\"Sales\",\"brand\":\"Toyota\",\"type\":\"Sedan\",\"model\":\"2005 And Newer\",\"fee\":10000000,\"location\":\"Anywhere\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Now taking preorders for clean Tokunbo cars from 2005 models and newer. Wide selection of Toyota, Lexus, Honda, and more\\u2014direct import, neatly used, and in excellent condition. Secure your choice today for reliable, high-quality vehicles at the best value. Price differs with year and model type \\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757434942\\\/vtvc7m5nroeohcetdib5.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T16:21:32.000000Z\",\"updated_at\":\"2025-09-09T16:21:32.000000Z\",\"deleted_at\":null},{\"id\":62,\"uuid\":\"5fae344a-908d-4ee4-a8e2-d8229fc93a2c\",\"category\":\"Repair\",\"brand\":\"All\",\"type\":\"Sedan\",\"model\":\"2008 To 2024 Lexus And Toyota Smart Key Replacement.\",\"fee\":1200000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Smart key replacement and programming available for Lexus and Toyota models (2008\\u20132024). Neat and reliable sensor keys with perfect compatibility for push-to-start and keyless entry.\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757434491\\\/sjker4nhvzbbcadladmq.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T16:14:01.000000Z\",\"updated_at\":\"2025-09-09T16:14:01.000000Z\",\"deleted_at\":null},{\"id\":60,\"uuid\":\"d09618bf-4e82-479e-b7c8-ed6437f2f6f8\",\"category\":\"Consultation\",\"brand\":\"\",\"type\":\"\",\"model\":\"All Model Consultation And Vehicle Diagnostics And Scanning Services Advertisement\",\"fee\":15000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Professional consultation and vehicle diagnostics services available for all car models. Advanced scanning tools to detect engine, gearbox, ABS, airbag, and electrical issues. Quick, accurate, and reliable checks to keep your car in top condition. Perfect for Toyota, Lexus, Honda, and other brands.\\\\nPrices differs from year,model type and location \\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757433813\\\/tc2f7fdwedfv9bktekgx.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T16:02:43.000000Z\",\"updated_at\":\"2025-09-09T16:02:43.000000Z\",\"deleted_at\":null},{\"id\":59,\"uuid\":\"d8eb6b77-8a9e-471b-8de6-dd439f7947ac\",\"category\":\"Consultation\",\"brand\":\"\",\"type\":\"\",\"model\":\"2005 And Newer Models Consultation And Vehicle Diagnostics And Scanning\",\"fee\":15000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Professional consultation and vehicle diagnostics services available for all car models. Advanced scanning tools to detect engine, gearbox, ABS, airbag, and electrical issues. Quick, accurate, and reliable checks to keep your car in top condition. Perfect for Toyota, Lexus, Honda, and other brands.( Price varies with year,model and car location)\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757433706\\\/ffccof3lhjmpki4jf82y.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T16:00:56.000000Z\",\"updated_at\":\"2025-09-09T16:00:56.000000Z\",\"deleted_at\":null},{\"id\":58,\"uuid\":\"76211827-4d39-4b4c-8f00-7e77caa08b34\",\"category\":\"Parts\",\"brand\":\"\",\"type\":\"\",\"model\":\"All Model Tokunbo Car Tyre Sizes\",\"fee\":30000,\"location\":\"Anywhere\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Wide range of clean Tokunbo car tyres available for all models \\u2014 durable, balanced, and long-lasting for smooth driving. Different sizes in stock, including **215\\\/55R17, 225\\\/65R17, 205\\\/60R16, 245\\\/45R19**, and more. Perfect fit for Toyota, Lexus, Honda, and other brands.\\\\n(Price varies with sizes and grade. \\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757432488\\\/va7m6mcetszxpbjnctfs.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T15:40:38.000000Z\",\"updated_at\":\"2025-09-09T15:40:38.000000Z\",\"deleted_at\":null},{\"id\":57,\"uuid\":\"0675b92a-9831-43f0-92e1-40592316c731\",\"category\":\"Parts\",\"brand\":\"\",\"type\":\"\",\"model\":\"2004 To 2024 Toyota Camry Shock Absorber\",\"fee\":15000,\"location\":\"Anywhere\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Strong and durable Tokunbo shock absorbers available for Toyota Camry 2004\\u20132024 models. Provides smooth ride, stability, and comfort on all roads. Perfect replacement with original quality for long-lasting performance.\\\\n(Price ranges with year and model type)\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757431968\\\/tcfqqs7wjygwnkj2ki0j.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T15:31:58.000000Z\",\"updated_at\":\"2025-09-09T15:31:58.000000Z\",\"deleted_at\":null},{\"id\":56,\"uuid\":\"152dca46-4741-4d91-b929-0cf23d1b9a0f\",\"category\":\"Parts\",\"brand\":\"\",\"type\":\"\",\"model\":\"2003 To 2024 Toyota Highlander Mirror\",\"fee\":30000,\"location\":\"Anywhere\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Clean Tokunbo side mirrors available for Toyota Highlander 2003\\u20132024 models. Durable and original with perfect fit, providing clear visibility and reliable performance. Ideal replacement to keep your SUV looking neat and functional. (Price varies with year and model type)\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757431713\\\/dven1v0e2dsk0dmmt8ni.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T15:27:42.000000Z\",\"updated_at\":\"2025-09-09T15:27:42.000000Z\",\"deleted_at\":null},{\"id\":55,\"uuid\":\"a7cd578f-26c1-4632-a34e-cbcfc37f0246\",\"category\":\"Sales\",\"brand\":\"\",\"type\":\"\",\"model\":\"2005 To Newer Car Preorders\",\"fee\":10000000,\"location\":\"Anywhere\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Now taking preorders for clean Tokunbo cars from 2005 models and newer. Wide selection of Toyota, Lexus, Honda, and more\\u2014direct import, neatly used, and in excellent condition. Secure your choice today for reliable, high-quality vehicles at the best value.( Price varies with year and model type)\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757430789\\\/leyht6mn5hlkwbgcpham.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T15:12:19.000000Z\",\"updated_at\":\"2025-09-09T15:12:19.000000Z\",\"deleted_at\":null},{\"id\":54,\"uuid\":\"d0b8176d-090c-43c1-bf8d-fe5944d6d953\",\"category\":\"Repair\",\"brand\":\"Lexus\",\"type\":\"Suv\",\"model\":\"2006 To 2024 Abs Sensor And Abs Light Correction\",\"fee\":30000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Reliable ABS sensors and ABS light correction service available for Toyota, Lexus, Honda, and more (2006\\u20132024 models). Ensures proper braking system performance, restores safety, and clears dashboard warning lights. Durable parts and professional fixing for smooth, safe driving.(Price varies with car year and model type)\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757430500\\\/wgb1giyo9xmiwttbgjny.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757430502\\\/omtijyyqkxzweofi7mhs.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757430503\\\/oiavqekbowozjivd1xvq.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T15:07:32.000000Z\",\"updated_at\":\"2025-09-09T15:07:32.000000Z\",\"deleted_at\":null},{\"id\":53,\"uuid\":\"a023c2ab-ef3c-4380-80fb-f35dec66acc2\",\"category\":\"Parts\",\"brand\":\"\",\"type\":\"\",\"model\":\"2010 To 2018 Rx350 Spare Key Or Replacement\",\"fee\":140000,\"location\":\"Anywhere\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Spare and replacement keys available for Lexus RX350 (2010\\u20132018). Neat and reliable, programmed to fit perfectly for smooth usage. Ideal solution for lost, damaged, or extra key needs.( Price varies on year and model type)\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757430145\\\/qgx4mvzszetqlytm2mga.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T15:01:35.000000Z\",\"updated_at\":\"2025-09-09T15:01:35.000000Z\",\"deleted_at\":null},{\"id\":52,\"uuid\":\"36ea13e3-7096-46a8-a3f6-fdf1063e80ea\",\"category\":\"Parts\",\"brand\":\"\",\"type\":\"\",\"model\":\"2000 To 2024 Neat Tokunbo Side Fenders\",\"fee\":50000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Neat Tokunbo side fenders available for Toyota, Lexus, Honda, and more, covering models from 2000 to 2024. Clean and durable, perfect fit for replacement with original quality. Strong, reliable, and ready to give your car a fresh look.\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757428702\\\/x31gy0iwmwzgftqac9wr.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757428704\\\/nut1vlhw3ccdtbf8lstt.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T14:37:34.000000Z\",\"updated_at\":\"2025-09-09T14:37:34.000000Z\",\"deleted_at\":null},{\"id\":51,\"uuid\":\"47a21569-a900-4568-9c16-3d91b66a09aa\",\"category\":\"Repair\",\"brand\":\"\",\"type\":\"\",\"model\":\"All Models\",\"fee\":2000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Professional wheel alignment and balancing service available to keep your car running smoothly. Ensures even tire wear, better fuel efficiency, improved handling, and safer driving. Quick, reliable, and handled with modern equipment for the best results. Perfect for all car models.\\\\n\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757428099\\\/cgwvh0u46cstgxjzptvg.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T14:27:29.000000Z\",\"updated_at\":\"2025-09-09T14:27:29.000000Z\",\"deleted_at\":null},{\"id\":50,\"uuid\":\"15ff09ba-01d3-4859-a0d5-8cf952cc2359\",\"category\":\"Parts\",\"brand\":\"\",\"type\":\"\",\"model\":\"Available Different Kind Of Toyota And Honda Engines And Gearbox's\",\"fee\":100000,\"location\":\"Anywhere\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Wide range of clean Tokunbo Toyota and Honda engines and gearboxes available. Strong, durable, and reliable options for different models, including 4-cylinder and V6. Perfect replacements to keep your car running smoothly.\\\\n*Note* prices varies by type of model \\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757423752\\\/vj9s658syfw09fdwjo91.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T13:15:02.000000Z\",\"updated_at\":\"2025-09-09T13:15:02.000000Z\",\"deleted_at\":null},{\"id\":49,\"uuid\":\"937cdee8-77f0-4db5-bf0a-cf3c9d8ed31b\",\"category\":\"Hire\",\"brand\":\"Toyota\",\"type\":\"Van\",\"model\":\"Toyota Coaster Bus\",\"fee\":150000,\"location\":\"Anywhere\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Clean and spacious Toyota Coaster bus available for hire, ideal for group trips, weddings, church programs, staff transportation, and events. Comfortable 30-seater capacity with reliable performance and smooth ride. Perfect choice for safe and convenient travel. Escort available on request. *Please note* Hire service price varies per location. \\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757423361\\\/amb1iv5xpdesimhqvsel.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757423362\\\/rmu8e2ip1nnb0jxum9id.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757423363\\\/z3v5udhx5slbwz8hpl2c.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757423364\\\/fiwuouwthxx7fed16wuf.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757423364\\\/c4tpc2h5ohymkrgeedxg.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757423365\\\/mgg3ibwgc2agqkhabr82.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T13:08:36.000000Z\",\"updated_at\":\"2025-09-09T13:08:36.000000Z\",\"deleted_at\":null},{\"id\":48,\"uuid\":\"3578f94b-f898-45e2-9d08-bf6705981800\",\"category\":\"Parts\",\"brand\":\"\",\"type\":\"\",\"model\":\"Corolla Engine 2000-2007\",\"fee\":1200000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Tokunbo Toyota Corolla engine (2000\\u20132007), 4-cylinder, fuel efficient and reliable. Clean and durable, delivers smooth performance and long-lasting power. Perfect replacement option for Corolla models within this range.\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757422665\\\/vu1dcxqt21ya2sjcvfut.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T12:56:55.000000Z\",\"updated_at\":\"2025-09-09T12:56:55.000000Z\",\"deleted_at\":null},{\"id\":47,\"uuid\":\"5b1f049d-83bf-4e30-9cea-3b1fe059a789\",\"category\":\"Parts\",\"brand\":\"\",\"type\":\"\",\"model\":\"V6 22Pin Gearbox\",\"fee\":2000000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Here are the main car models that use the Tokunbo V6 gearbox:\\\\n\\\\nToyota models\\\\n\\\\nToyota Camry V6 (2007\\u20132011)\\\\n\\\\nToyota Avalon (2005\\u20132012)\\\\n\\\\nToyota Sienna (2007\\u20132016)\\\\n\\\\nToyota Highlander V6 (2008\\u20132019)\\\\n\\\\nToyota RAV4 V6 (2006\\u20132012)\\\\n\\\\nLexus models\\\\n\\\\nLexus ES350 (2007\\u20132015)\\\\n\\\\nLexus RX350 (2007\\u20132015)\\\\n\\\\nLexus IS350 (2006\\u20132015)\\\\n\\\\nLexus GS350 (2006\\u20132015)\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757422540\\\/gei7trohytelip50xo3d.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T12:54:50.000000Z\",\"updated_at\":\"2025-09-09T12:54:50.000000Z\",\"deleted_at\":null},{\"id\":46,\"uuid\":\"8d2b9c98-f7b6-47d3-9779-9f90fd4721f4\",\"category\":\"Parts\",\"brand\":\"\",\"type\":\"\",\"model\":\"Tokunbo 2Gr Engine For Toyota And Lexus\",\"fee\":1500000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Tokunbo 2GR engine, 3.5L V6, powerful and reliable for top performance. Perfect fit for Toyota Camry V6 (2007\\u20132011), Avalon (2005\\u20132012), Sienna (2007\\u20132016), Highlander (2008\\u20132019), and RAV4 V6 (2006\\u20132012). Also compatible with Lexus ES350 (2007\\u20132015), RX350 (2007\\u20132015), IS350 (2006\\u20132015), and GS350 (2006\\u20132015). Strong, durable, and in excellent condition.\\\",\\\"value\\\":\\\"\\\"},{\\\"title\\\":\\\"Slightly negotiable. \\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757421913\\\/e6rwzgs4cwnpixret39b.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T12:44:23.000000Z\",\"updated_at\":\"2025-09-09T12:44:23.000000Z\",\"deleted_at\":null},{\"id\":45,\"uuid\":\"ee52b4ae-dbc7-4b99-84c3-d1d6b5ef3325\",\"category\":\"Parts\",\"brand\":\"\",\"type\":\"\",\"model\":\"Fourplug 22Pin Gearbox\",\"fee\":1700000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Tokunbo 4-plug 22-pin gearbox, reliable and efficient for smooth driving performance. Perfect fit for Toyota Camry 2007\\u20132011 (2.4L), Toyota RAV4 2006\\u20132010 (2.4L), and selected Lexus ES models. Strong, durable, and ready for use.\\\\n\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757421657\\\/di17d1vr6vqcprmkngdc.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T12:40:07.000000Z\",\"updated_at\":\"2025-09-09T12:40:07.000000Z\",\"deleted_at\":null},{\"id\":44,\"uuid\":\"9fbf1bba-8ac0-4839-a560-9fd6a05a668c\",\"category\":\"Parts\",\"brand\":\"\",\"type\":\"\",\"model\":\"Lexus Is 250,350 Gearbox\",\"fee\":900000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Tokunbo Lexus IS250\\\/IS350 gearbox, strong and reliable with smooth performance.\\\\n\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757421468\\\/zftvsupiedpeareietyd.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T12:36:58.000000Z\",\"updated_at\":\"2025-09-09T12:36:58.000000Z\",\"deleted_at\":null},{\"id\":43,\"uuid\":\"f9272a55-c593-4ff1-afcf-0ccf7adbed8e\",\"category\":\"Parts\",\"brand\":\"\",\"type\":\"\",\"model\":\"Corolla 5Pin Gearbox\",\"fee\":650000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Condition \\\",\\\"value\\\":\\\"Excellent \\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757421365\\\/xdmayssvdkpghjbe0xul.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T12:35:16.000000Z\",\"updated_at\":\"2025-09-09T12:35:16.000000Z\",\"deleted_at\":null},{\"id\":42,\"uuid\":\"fbfef3ad-b61c-444d-9a95-a3c5144fd9ad\",\"category\":\"Parts\",\"brand\":\"\",\"type\":\"\",\"model\":\"Sea Horse 4Litre\",\"fee\":15000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Sea Horse premium engine oil,reliable for optimal engine performance.\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757420510\\\/lpzkxwthc0jkcygdg7fz.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T12:21:00.000000Z\",\"updated_at\":\"2025-09-09T12:21:00.000000Z\",\"deleted_at\":null},{\"id\":41,\"uuid\":\"dcc4ba8b-3428-4be6-aeec-59c27cd9eebf\",\"category\":\"Parts\",\"brand\":\"\",\"type\":\"\",\"model\":\"3Mz Engine \\nFor Toyotas And Lexus\",\"fee\":1300000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Tokunbo 3MZ engine, suitable for Toyota and Lexus models. Powerful, reliable, and in excellent working condition.\\\\n\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757420331\\\/rcnwie4jphiuon0sybad.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T12:18:01.000000Z\",\"updated_at\":\"2025-09-09T12:18:01.000000Z\",\"deleted_at\":null},{\"id\":40,\"uuid\":\"3a2722e1-855f-427b-8424-94a24d372809\",\"category\":\"Parts\",\"brand\":\"\",\"type\":\"\",\"model\":\"Brake Pad For Toyota Camry,Rav4,Highlander And Others\",\"fee\":7000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Super fit Brake pad \\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757419885\\\/gpwhrudtcweqzx3pq6em.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T12:10:35.000000Z\",\"updated_at\":\"2025-09-09T12:10:35.000000Z\",\"deleted_at\":null},{\"id\":39,\"uuid\":\"b0baabdd-e76a-48cf-9187-293e7368cd86\",\"category\":\"Parts\",\"brand\":\"\",\"type\":\"\",\"model\":\"Tokunbo Power Steering Pump \\nFor Camry,Lexus,Rav4, Corolla.\",\"fee\":70000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Tokunbo power steering pump, compatible with Toyota Camry, Corolla, RAV4, and Lexus. Strong and reliable performance.\\\\n\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757419378\\\/hrizlm0zint9okgggn8e.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T12:02:08.000000Z\",\"updated_at\":\"2025-09-09T12:02:08.000000Z\",\"deleted_at\":null},{\"id\":38,\"uuid\":\"8a950f5c-0a80-47b9-b4de-07cd95a4d3b9\",\"category\":\"Parts\",\"brand\":\"\",\"type\":\"\",\"model\":\"2Az Engine For Toyota Camry 2003 To 2009\",\"fee\":1300000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Tokunbo 2AZ engine, suitable for Toyota Camry 2003\\u20132009. Strong, reliable and in good condition.\\\\n\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757418937\\\/x0ozljuhanjgrsefmmhh.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T11:54:47.000000Z\",\"updated_at\":\"2025-09-09T11:54:47.000000Z\",\"deleted_at\":null},{\"id\":37,\"uuid\":\"44ed145d-b4b6-4730-9df9-e499f97fafcc\",\"category\":\"Parts\",\"brand\":\"\",\"type\":\"\",\"model\":\"Tokunbo Kick Starter For Toyota Corolla 1999 To 2007\",\"fee\":38000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Tokunbo kick starter, perfect fit for Toyota Corolla 1999\\u20132007. Strong and reliable performance.\\\\n\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757418556\\\/wpqxbyuruumewgvhixsq.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T11:48:26.000000Z\",\"updated_at\":\"2025-09-09T11:48:26.000000Z\",\"deleted_at\":null},{\"id\":36,\"uuid\":\"33936313-ad12-4ee2-b4ad-4cb62e0181c2\",\"category\":\"Parts\",\"brand\":\"\",\"type\":\"\",\"model\":\"Kick Starter For Toyota Camry,Sienna,Lexus And More\",\"fee\":40000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Durable kick starter, reliable fit for Toyota Camry, Sienna, Lexus, and other compatible models. Ensures smooth and efficient engine start.\\\\n\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757417975\\\/pgqnvbrhajlez7dxowzu.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-09T11:38:46.000000Z\",\"updated_at\":\"2025-09-09T11:38:46.000000Z\",\"deleted_at\":null},{\"id\":35,\"uuid\":\"704f6945-2647-415f-b4ab-cce488cb1856\",\"category\":\"Sales\",\"brand\":\"Toyota\",\"type\":\"Sedan\",\"model\":\"2014 Camry\",\"fee\":14500000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Tokunbo 2014 Toyota Camry SE with reverse camera, new entry, total duty paid,clean in and out.\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757335099\\\/kd9az1wog3ppfbd2gwup.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757335100\\\/xysusohzwwcdocg2e1rf.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757335101\\\/nv52ckgn9btxzdtr1ipo.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757335102\\\/i1zavlqurwcsddeqabno.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757335103\\\/xhg4io3khpy4tmmqv03k.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757335104\\\/b09zum8g9so4lchiuiun.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-08T12:37:36.000000Z\",\"updated_at\":\"2025-09-08T12:37:36.000000Z\",\"deleted_at\":null},{\"id\":34,\"uuid\":\"a2ff3b9f-0ba0-43f4-b115-f88d3ca7b909\",\"category\":\"Sales\",\"brand\":\"Lexus\",\"type\":\"Suv\",\"model\":\"Rx330\",\"fee\":14000000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Tokunbo 2006 Lexus rx330\\\\nFull options, buy and drive condition \\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757334835\\\/mvf2a4eiaapkvyuc3o2q.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757334836\\\/qrmexda7nac8vzxht9ew.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757334838\\\/qlshgo8oz1afkacbfejh.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757334839\\\/pf59xekvrsjdewdcj1iw.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757334840\\\/zgubdetn6ixzysvtfswg.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757334841\\\/kitx8g7mutixqiyhmhxz.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757334843\\\/p4ctfislweh0kujcqhpt.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-08T12:33:14.000000Z\",\"updated_at\":\"2025-09-08T12:33:14.000000Z\",\"deleted_at\":null},{\"id\":33,\"uuid\":\"48705e62-5e58-4a65-b25c-be50bf477024\",\"category\":\"Sales\",\"brand\":\"Lexus\",\"type\":\"Suv\",\"model\":\"Rx350\",\"fee\":14000000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Tokunbo 2008 rx350,absolute nothing to fix \\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757334710\\\/aoqqxn8qmisvxyy8cpld.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757334711\\\/gb25otum2lbrmshoxwrk.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757334712\\\/ucqcuew57eystqw8sbnh.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757334713\\\/rqaumaf357nzpmr17o0h.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757334715\\\/p6nz8ytad8ocptncapbx.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1757334715\\\/bh82uj2dcrh6hdhybn07.jpg\"],\"status\":\"available\",\"created_at\":\"2025-09-08T12:31:07.000000Z\",\"updated_at\":\"2025-09-08T12:31:07.000000Z\",\"deleted_at\":null},{\"id\":7,\"uuid\":\"772db59e-3dd5-4b28-9004-3f370410d41e\",\"category\":\"Parts\",\"brand\":\"\",\"type\":\"\",\"model\":\"Polar Alva Oil\",\"fee\":15700,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Polar Alva 5000XP 20W-50 Extra High Performance Multigrade Oil 5L \\u2013 Advanced engine oil that delivers strong protection, reduced wear, and reliable performance for high-demand engines.\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756643768\\\/iy3kbedb9zasfkkmfgyo.jpg\"],\"status\":\"available\",\"created_at\":\"2025-08-31T12:35:29.000000Z\",\"updated_at\":\"2025-08-31T12:35:29.000000Z\",\"deleted_at\":null},{\"id\":6,\"uuid\":\"24f2b1a5-ea31-406a-98d8-14ea160aeac4\",\"category\":\"Parts\",\"brand\":\"\",\"type\":\"\",\"model\":\"Automatic Transmission Fluid\",\"fee\":17000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Toyota ATF Type T-IV  4L\\u2013 Genuine Toyota automatic transmission fluid specially formulated for smooth shifting, reliable performance, and enhanced transmission protection.\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756643515\\\/rmriavzofyulnzzy2vhf.jpg\"],\"status\":\"available\",\"created_at\":\"2025-08-31T12:31:16.000000Z\",\"updated_at\":\"2025-08-31T12:31:16.000000Z\",\"deleted_at\":null},{\"id\":5,\"uuid\":\"4af980c8-1861-453b-9846-2e419034d32c\",\"category\":\"Parts\",\"brand\":\"\",\"type\":\"\",\"model\":\"Super Gold Lubricant\",\"fee\":11000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Super Gold Lubricant ATF Dexron III D 4L \\u2013 High-quality automatic transmission fluid that provides smooth gear shifts, dependable lubrication, and lasting protection.\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756643156\\\/twgnxi27keaqjydjp5j0.jpg\"],\"status\":\"available\",\"created_at\":\"2025-08-31T12:25:18.000000Z\",\"updated_at\":\"2025-08-31T12:25:18.000000Z\",\"deleted_at\":null},{\"id\":4,\"uuid\":\"00d206e9-eec8-4ba3-a6da-1ca06860af08\",\"category\":\"Parts\",\"brand\":\"\",\"type\":\"\",\"model\":\"Automatic Transmission Fluid\",\"fee\":6000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Toyota WS AT Fluid 1L \\u2013 Genuine automatic transmission fluid engineered for Toyota vehicles, ensuring smooth shifting, reliable performance, and long-lasting protection.\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756642602\\\/ggkhatxoyrwvtsiz72qd.jpg\"],\"status\":\"available\",\"created_at\":\"2025-08-31T12:16:03.000000Z\",\"updated_at\":\"2025-08-31T12:16:03.000000Z\",\"deleted_at\":null},{\"id\":3,\"uuid\":\"862a337f-3716-4b8f-806b-37e3732d6e4e\",\"category\":\"Parts\",\"brand\":\"\",\"type\":\"\",\"model\":\"Lubcon Adrenalin Oil\",\"fee\":17800,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Lubcon Adrenalin 20W-50 Premium Multigrade Lubricant 5L \\u2013 High-quality oil formulated for both turbo and non-turbo engines, delivering strong protection, reduced wear, and reliable performance.\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756642163\\\/xbuernajfjs7lzmr72qd.jpg\"],\"status\":\"available\",\"created_at\":\"2025-08-31T12:08:44.000000Z\",\"updated_at\":\"2025-08-31T12:08:44.000000Z\",\"deleted_at\":null},{\"id\":2,\"uuid\":\"ce468057-761c-4666-b5ee-f80127f591f1\",\"category\":\"Parts\",\"brand\":\"\",\"type\":\"\",\"model\":\"Golden Super Oil\",\"fee\":15000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Conoil Golden Super Motor Oil SAE 40 4L \\u2013 Reliable monograde oil that provides solid engine protection, reduced wear, and smooth performance for petrol and diesel engines.\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756641863\\\/zawtvm1o565ixzyca0mk.jpg\"],\"status\":\"available\",\"created_at\":\"2025-08-31T12:03:44.000000Z\",\"updated_at\":\"2025-08-31T12:03:44.000000Z\",\"deleted_at\":null},{\"id\":31,\"uuid\":\"50ef8592-f317-48d0-8673-e369b6c82f14\",\"category\":\"Parts\",\"brand\":\"\",\"type\":\"\",\"model\":\"Ammasco Vital 2000Sl\",\"fee\":17500,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Ammasco Vital 2000SL Extra High Performance Multigrade Oil 5L \\u2013 Premium engine oil that offers strong protection, cleaner engine performance, and reliable durability for modern engines.\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756641717\\\/m6vkw8exwfr6bv6iiw1y.jpg\"],\"status\":\"available\",\"created_at\":\"2025-08-31T12:01:18.000000Z\",\"updated_at\":\"2025-08-31T12:01:18.000000Z\",\"deleted_at\":null},{\"id\":25,\"uuid\":\"2dabee3e-1446-4992-ac4d-7d792642c4a2\",\"category\":\"Parts\",\"brand\":\"\",\"type\":\"\",\"model\":\"Golden Super Oil\",\"fee\":4000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Conoil Golden Super Motor Oil SAE 40 1L \\u2013 Quality monograde oil that delivers dependable protection and smooth performance for petrol and diesel engines.\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756641543\\\/hl6xnkwds9sjyxrmbehl.jpg\"],\"status\":\"available\",\"created_at\":\"2025-08-31T11:58:24.000000Z\",\"updated_at\":\"2025-08-31T11:58:24.000000Z\",\"deleted_at\":null},{\"id\":24,\"uuid\":\"7fc26ada-3448-4ea0-b95f-592de6c86f03\",\"category\":\"Parts\",\"brand\":\"\",\"type\":\"\",\"model\":\"Automatic Transmission Fluid Dexron-Ii\",\"fee\":4200,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"NNPC ATF Dexron II 1L \\u2013 Automatic transmission and power steering fluid that provides smooth shifting, reliable lubrication, and long-lasting system protection.\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756641348\\\/kmqlclkyxrewkhxxwtgi.jpg\"],\"status\":\"available\",\"created_at\":\"2025-08-31T11:55:09.000000Z\",\"updated_at\":\"2025-08-31T11:55:09.000000Z\",\"deleted_at\":null},{\"id\":23,\"uuid\":\"f0616407-542b-433b-806d-457f4fd2ef23\",\"category\":\"Parts\",\"brand\":\"\",\"type\":\"\",\"model\":\"Polar Elite Oil\",\"fee\":12500,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Polar Elite Petrol Engine SAE 50 4L \\u2013 Extra high-performance oil that ensures strong protection, reduced wear, and reliable performance for petrol engines.\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756641170\\\/joels27gdyffp6ossdhf.jpg\"],\"status\":\"available\",\"created_at\":\"2025-08-31T11:52:11.000000Z\",\"updated_at\":\"2025-08-31T11:52:11.000000Z\",\"deleted_at\":null},{\"id\":22,\"uuid\":\"df022dfa-83b5-447b-ae07-8797c84b19f8\",\"category\":\"Parts\",\"brand\":\"\",\"type\":\"\",\"model\":\"Mobil Special Oil\",\"fee\":18000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Mobil Special 20W-50 High Performance Motor Oil 4L \\u2013 Durable motor oil that provides strong protection, reduces wear, and supports reliable engine performance.\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756640944\\\/sq4imqzrhzjvto2xh2nf.jpg\"],\"status\":\"available\",\"created_at\":\"2025-08-31T11:48:25.000000Z\",\"updated_at\":\"2025-08-31T11:48:25.000000Z\",\"deleted_at\":null},{\"id\":21,\"uuid\":\"8004f86f-f2e7-4d43-a72b-f1a7cf8423aa\",\"category\":\"Parts\",\"brand\":\"\",\"type\":\"\",\"model\":\"Mobil Special Oil\",\"fee\":4800,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Mobil Special 20W-50 High Performance Motor Oil 1L \\u2013 Durable motor oil that provides strong protection, reduces wear, and supports reliable engine performance.\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756640796\\\/gz0l3emlmec2vvmw68tu.jpg\"],\"status\":\"available\",\"created_at\":\"2025-08-31T11:45:57.000000Z\",\"updated_at\":\"2025-08-31T11:45:57.000000Z\",\"deleted_at\":null},{\"id\":20,\"uuid\":\"c79722bd-db26-4860-a82a-0557345d55c0\",\"category\":\"Parts\",\"brand\":\"\",\"type\":\"\",\"model\":\"Mobil 1 Fully Synthetic\",\"fee\":70000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Mobil 1 Extended Performance Advanced Full Synthetic Motor Oil 4.7L \\u2013 High-quality synthetic oil designed for ultimate engine protection, longer drain intervals, and smooth performance.\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756640181\\\/afdfyx68ym3zz3swk3cf.jpg\"],\"status\":\"available\",\"created_at\":\"2025-08-31T11:35:42.000000Z\",\"updated_at\":\"2025-08-31T11:35:42.000000Z\",\"deleted_at\":null},{\"id\":19,\"uuid\":\"24c9f00e-db0b-493f-ace8-3f3b83333539\",\"category\":\"Parts\",\"brand\":\"\",\"type\":\"\",\"model\":\"Mobil 1 Motor Oil\",\"fee\":15500,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Mobil 1 Extended Performance Advanced Full Synthetic Motor Oil 1L \\u2013 Premium synthetic oil engineered for long-lasting protection, extended drain intervals, and maximum engine performance.\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756638664\\\/lqmxzfo65gnnu1jmn1uv.jpg\"],\"status\":\"available\",\"created_at\":\"2025-08-31T11:10:25.000000Z\",\"updated_at\":\"2025-08-31T11:10:25.000000Z\",\"deleted_at\":null},{\"id\":18,\"uuid\":\"a219a828-5dab-4e4b-98d8-36fbc3de8b1f\",\"category\":\"Parts\",\"brand\":\"\",\"type\":\"\",\"model\":\"Total Classic Oil\",\"fee\":5000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Total Classic 5 SF-CF SAE 40 1L \\u2013 Monograde engine oil that delivers dependable protection and reliable performance for both petrol and diesel engines.\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756638279\\\/b8lcivhmrut6kn64qw1m.jpg\"],\"status\":\"available\",\"created_at\":\"2025-08-31T11:04:00.000000Z\",\"updated_at\":\"2025-08-31T11:04:00.000000Z\",\"deleted_at\":null},{\"id\":17,\"uuid\":\"1401e77c-3934-41f7-b6a8-33aff74233da\",\"category\":\"Parts\",\"brand\":\"\",\"type\":\"\",\"model\":\"Oleum Super Crankcase Oil\",\"fee\":14200,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"NNPC Oleum Super SAE 40 Monograde Crankcase Oil 4L \\u2013 Reliable engine oil for petrol and diesel engines, providing solid protection and dependable performance.\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756638037\\\/rwk2p8twx5gikrcmbrec.jpg\"],\"status\":\"available\",\"created_at\":\"2025-08-31T10:59:58.000000Z\",\"updated_at\":\"2025-08-31T10:59:58.000000Z\",\"deleted_at\":null},{\"id\":16,\"uuid\":\"816b4a4b-cbf1-406f-b3cc-f77d95c2a2c3\",\"category\":\"Parts\",\"brand\":\"\",\"type\":\"\",\"model\":\"Oleum Super Crankcase Oil\",\"fee\":3900,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"NNPC Oleum Super SAE 40 Monograde Crankcase Oil 1L \\u2013 Reliable engine oil for petrol and diesel engines, providing solid protection and dependable performance.\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756636985\\\/srhlgtr5vdposvta6mit.jpg\"],\"status\":\"available\",\"created_at\":\"2025-08-31T10:42:26.000000Z\",\"updated_at\":\"2025-08-31T10:42:26.000000Z\",\"deleted_at\":null},{\"id\":15,\"uuid\":\"c8f85126-d660-4d20-b33f-eeefe061df02\",\"category\":\"Parts\",\"brand\":\"\",\"type\":\"\",\"model\":\"Mobil Super 1000 Engine Oil\",\"fee\":23500,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Mobil Super 1000 20W-50 Extra High Performance Engine Oil 5L \\u2013 Mineral engine oil offering enhanced protection, reduced wear, and reliable performance for everyday driving.\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756636497\\\/wxw9i5ra7poo46j1smzl.jpg\"],\"status\":\"available\",\"created_at\":\"2025-08-31T10:34:19.000000Z\",\"updated_at\":\"2025-08-31T10:34:19.000000Z\",\"deleted_at\":null},{\"id\":14,\"uuid\":\"fd428278-0cf6-40c6-9ccb-06bcc6402b1c\",\"category\":\"Parts\",\"brand\":\"\",\"type\":\"\",\"model\":\"Mobil Super 1000 Xhp Oil\",\"fee\":19000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Mobil Super 1000 20W-50 High Performance Engine Oil 4L \\u2013 Quality mineral oil that provides dependable protection, reduces engine wear, and supports smooth everyday performance.\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756633354\\\/ctirgjpm7et8uevujqdu.jpg\"],\"status\":\"available\",\"created_at\":\"2025-08-31T09:41:55.000000Z\",\"updated_at\":\"2025-08-31T09:41:55.000000Z\",\"deleted_at\":null},{\"id\":13,\"uuid\":\"8c3652ad-a10e-4552-a2ab-64a0a2b44f75\",\"category\":\"Parts\",\"brand\":\"\",\"type\":\"\",\"model\":\"Total Quartz Oil\",\"fee\":19000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Total Quartz 5000 SL 20W-50 4L \\u2013 Durable engine oil that ensures reliable protection, reduced wear, and consistent performance for older and high-mileage engines.\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756633082\\\/ekmatmdxuifu1wrgeo2e.jpg\"],\"status\":\"available\",\"created_at\":\"2025-08-31T09:37:23.000000Z\",\"updated_at\":\"2025-08-31T09:37:23.000000Z\",\"deleted_at\":null},{\"id\":12,\"uuid\":\"d87c67e7-3f8f-47e1-8f52-ec24d7aa1add\",\"category\":\"Parts\",\"brand\":\"\",\"type\":\"\",\"model\":\"Mobil Super 2000 Oil\",\"fee\":28000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Mobil Super 2000 Semi Synthetic Motor Oil 4L \\u2013 Reliable engine oil that delivers strong protection, reduced wear, and smooth performance for everyday driving.\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756632642\\\/ckjkehumxbppixdfyrb6.jpg\"],\"status\":\"available\",\"created_at\":\"2025-08-31T09:30:03.000000Z\",\"updated_at\":\"2025-08-31T09:30:03.000000Z\",\"deleted_at\":null},{\"id\":11,\"uuid\":\"c7bbd7c7-d8a9-4261-ae39-3e07fa98c2a8\",\"category\":\"Parts\",\"brand\":\"\",\"type\":\"\",\"model\":\"Hardex Gold Oil\",\"fee\":31000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Hardex Gold SAE 5W-30 Fully Synthetic Engine Oil 5L \\u2013 Premium engine oil designed for maximum protection, improved fuel efficiency, and smooth engine performance.\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756632449\\\/js1eugmmtairqekzg7ch.jpg\"],\"status\":\"available\",\"created_at\":\"2025-08-31T09:26:50.000000Z\",\"updated_at\":\"2025-08-31T09:26:50.000000Z\",\"deleted_at\":null},{\"id\":10,\"uuid\":\"14bdde8c-fb2e-4f7e-ad0c-b01a9dc482da\",\"category\":\"Parts\",\"brand\":\"\",\"type\":\"\",\"model\":\"Mobil Super 3000\",\"fee\":32500,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Mobil Super 3000 Full Synthetic Motor Oil 5L \\u2013 High-performance engine oil that provides excellent protection, smooth performance, and long-lasting engine life.\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756632220\\\/lbgcxh7k2fyz0khchntp.jpg\"],\"status\":\"available\",\"created_at\":\"2025-08-31T09:23:02.000000Z\",\"updated_at\":\"2025-08-31T09:23:02.000000Z\",\"deleted_at\":null},{\"id\":9,\"uuid\":\"7aef2892-b394-489f-805a-995c3d95e769\",\"category\":\"Sales\",\"brand\":\"Toyota\",\"type\":\"Sedan\",\"model\":\"Camry Se 2014\",\"fee\":13000000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"2014 model, very clean and sharp with reverse camera. Smooth drive, neat interior, chilling AC, and good fuel efficiency. Recent entry, nothing to fix \\u2014 buy and drive.\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756599471\\\/fa7vsushtd0nokp1ogfc.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756599472\\\/tnydzx1tfyl5rcxhugw9.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756599474\\\/yag7ox0zy4qjlasxxelw.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756599475\\\/sra4uqlfv69nadu5hnhf.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756599476\\\/o1qvowzm8sxymo8k7a0c.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756599477\\\/cp7ezsfznm56xd7g6soq.jpg\"],\"status\":\"available\",\"created_at\":\"2025-08-31T00:17:18.000000Z\",\"updated_at\":\"2025-08-31T00:17:18.000000Z\",\"deleted_at\":null},{\"id\":8,\"uuid\":\"60930809-8550-4a66-982a-41d2a36454a6\",\"category\":\"Sales\",\"brand\":\"Lexus\",\"type\":\"Sedan\",\"model\":\"Is250 2014\",\"fee\":26000000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"2014 model, recent entry, very clean inside and out. Smooth drive, powerful and reliable engine, luxury interior with leather seats, chilling AC, and modern features. Buy and drive, nothing to fix.\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756599287\\\/fmhmhfop0czye9gwn0au.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756599288\\\/kgae4thogzf1igpk7iiv.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756599289\\\/van5fhfzeyjmsdpmy9y9.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756599290\\\/cbzpbnsw1mwi9nyo21lc.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756599291\\\/t7iv8u9t7zdrs8odddsi.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756599292\\\/seyi3ailtyipg3cbxjrl.jpg\"],\"status\":\"available\",\"created_at\":\"2025-08-31T00:14:14.000000Z\",\"updated_at\":\"2025-08-31T00:14:14.000000Z\",\"deleted_at\":null},{\"id\":32,\"uuid\":\"476fd567-0967-4c52-b30a-e00c63dcd2d6\",\"category\":\"Sales\",\"brand\":\"Toyota\",\"type\":\"Sedan\",\"model\":\"Camry Se 2013\",\"fee\":14500000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"2013 model SE, clean and sharp with thumbstart. Smooth drive, fuel efficient, sporty look with neat interior and chilling AC. Well-maintained and ready to drive.\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756599020\\\/av4bgvqhfqtsht7h41dh.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756599021\\\/oon3klzjkgdbeg8fbfv6.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756599022\\\/k0wgggdra2wlsrxfa9sl.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756599024\\\/mv1pbsrqgn1o0ijb1f8x.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756599025\\\/ttiay4pv1zqk0c78ry4b.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756599026\\\/gp3hlgpdiw4i2nvydben.jpg\"],\"status\":\"available\",\"created_at\":\"2025-08-31T00:09:47.000000Z\",\"updated_at\":\"2025-08-31T00:09:47.000000Z\",\"deleted_at\":null},{\"id\":30,\"uuid\":\"a16e1117-df81-4e3d-bfd3-2333c9b35075\",\"category\":\"Sales\",\"brand\":\"Toyota\",\"type\":\"Suv\",\"model\":\"Rav4 Le 2010\",\"fee\":13500000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"2010 model, very neat and well-maintained. Smooth drive, good fuel economy, spacious interior with chilling AC. Reliable and ready to hit the road \\u2014 buy and drive.\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756598524\\\/h1fep3rl31plk2al6602.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756598526\\\/iealxluislceg4jyy7fo.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756598527\\\/d28tjm1q9rmt8dkf51ci.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756598528\\\/jweqjzpvnsxzez1jptwg.jpg\"],\"status\":\"available\",\"created_at\":\"2025-08-31T00:01:30.000000Z\",\"updated_at\":\"2025-08-31T00:01:30.000000Z\",\"deleted_at\":null},{\"id\":29,\"uuid\":\"4134d41c-af6b-4e86-974c-622d0bfa2d7f\",\"category\":\"Sales\",\"brand\":\"Toyota\",\"type\":\"Suv\",\"model\":\"Venza Xle 2012\",\"fee\":17000000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"2012 XLE, 4-plug engine, very clean and sharp. Strong engine, good fuel economy, smooth drive with comfortable interior. Buy and drive, nothing to fix.\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756598119\\\/pyssb4tzsnmksbs5aauq.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756598121\\\/v5vmosnrxdwfvya0w2hw.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756598122\\\/jem9doy2yspa92vkqezy.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756598123\\\/zpc33pcl5ilkjxhlnecw.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756598124\\\/l8yuxcmtdhzum51eev3r.jpg\"],\"status\":\"available\",\"created_at\":\"2025-08-30T23:54:46.000000Z\",\"updated_at\":\"2025-08-30T23:54:46.000000Z\",\"deleted_at\":null},{\"id\":28,\"uuid\":\"b845323c-d041-427b-a9ae-17a28dc7faf5\",\"category\":\"Sales\",\"brand\":\"Toyota\",\"type\":\"Sedan\",\"model\":\"Camry Se 2016\",\"fee\":15500000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Sporty styling with everyday practicality, this model features a refined exterior design, a comfortable and well-appointed cabin, and advanced safety features. Its efficient powertrain delivers a smooth balance of performance and fuel economy, while sport-tuned suspension and responsive handling add a dynamic driving experience. With a reputation for reliability, comfort, and value, it remains a standout choice for drivers seeking both style and dependability in a daily driver.\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756597853\\\/csumvsjtxny3qwvnpgmg.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756597854\\\/ow8uczi8vsdmd0oadrnq.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756597855\\\/kcrfxty7libos7ipopz3.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756597856\\\/cds3dimsw6d5l4dcxp4o.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756597857\\\/rkbdqj8vykjfwufhehgb.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756597858\\\/cqlziszfg3tateav5mtd.jpg\"],\"status\":\"available\",\"created_at\":\"2025-08-30T23:50:20.000000Z\",\"updated_at\":\"2025-08-30T23:50:20.000000Z\",\"deleted_at\":null},{\"id\":27,\"uuid\":\"0707b19c-b639-4abb-bc3b-a2c3f19d1e3b\",\"category\":\"Sales\",\"brand\":\"Lexus\",\"type\":\"Suv\",\"model\":\"Rx350 2010\",\"fee\":21500000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Experience luxury and performance with this 2010 Lexus RX350 Full Option. Equipped with top-of-the-line features, this vehicle offers a smooth and powerful drive, combined with a stylish design and a host of premium amenities. From its luxurious leather interiors to the advanced tech features, every detail has been designed for comfort and convenience. The 3.5L V6 engine delivers impressive power while maintaining excellent fuel efficiency. With its untampered engine and gearbox, this SUV promises reliability and long-term performance. Fully loaded with all the options, it\\u2019s perfect for those who demand sophistication and practicality.\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756578364\\\/zniioub3ff6dtrwahsow.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756578365\\\/spc0ciizljivrzl8fyur.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756578367\\\/kui8zdtjsqg4yp4clfxd.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756578367\\\/j4fhk63bhgxhijlgoowl.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756578368\\\/woucahnsfothfoynrdrx.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756578369\\\/n9kqueq3lmcahtwtyeou.jpg\"],\"status\":\"available\",\"created_at\":\"2025-08-30T18:25:31.000000Z\",\"updated_at\":\"2025-08-30T18:25:31.000000Z\",\"deleted_at\":null},{\"id\":26,\"uuid\":\"ec926401-bcf0-4310-9d1b-d3f21da5c2af\",\"category\":\"Sales\",\"brand\":\"Toyota\",\"type\":\"Sedan\",\"model\":\"2015 Corolla\",\"fee\":15800000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Foreign used, in excellent condition, and completely clean. No repairs or fixes required\\u2014everything is in perfect working order. The engine and gearbox are untampered, offering optimal performance. Entry date: August 2025.\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756577971\\\/lyannzjcy8et7phihjej.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756577972\\\/sywsvaqy8epmapzenuc9.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756577973\\\/jaddrbpxqrxfx3rkdsos.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756577975\\\/rm9ks9s29jz5qagaap2c.jpg\"],\"status\":\"available\",\"created_at\":\"2025-08-30T18:18:57.000000Z\",\"updated_at\":\"2025-08-30T18:18:57.000000Z\",\"deleted_at\":null}]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get recent services",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/services\/recent",
                            "query": [
                                {
                                    "key": "limit",
                                    "value": "5",
                                    "description": "Limit number of recent services.",
                                    "disabled": false
                                },
                                {
                                    "key": "status",
                                    "value": "available",
                                    "description": "Filter by status.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/services\/recent?limit=5&status=available"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "52"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"status\":200,\"success\":true,\"data\":[{\"id\":120,\"uuid\":\"3e300270-6a5c-48f9-a85b-e0d57e5323a3\",\"category\":\"Accessories\",\"brand\":\"Toyota\",\"type\":\"All\",\"model\":\"All Model\",\"fee\":20000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Glittering steering logo for all cars\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1761303695\\\/wvvuzixvc0y9siocxz5h.jpg\"],\"status\":\"available\",\"created_at\":\"2025-10-24T10:59:50.000000Z\",\"updated_at\":\"2025-10-24T10:59:50.000000Z\",\"deleted_at\":null},{\"id\":119,\"uuid\":\"71755105-de11-4ca6-a7df-004c5b26061d\",\"category\":\"Installation\",\"brand\":\"Mercedes_Benz\",\"type\":\"Sedan\",\"model\":\"1977\",\"fee\":1200000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":true,\"description\":\"[{\\\"title\\\":\\\"Tell us your preferred prints or color combinations, and we\\u2019ll bring your vision to life! Whether you want a bold, vibrant change or a sleek, modern finish. We\\u2019ll print and design the wrap to your exact specifications.\\\\nWe provide Premium Quality Vinyl for long-lasting results.\\\\nExpert Installation for a flawless finish\\\\nFull Customization making your car truly one-of-a-kind.\\\\n\\\\n\\ud83d\\udcde Book Your Wrap Today!\\\\nGet in touch now, and let\\u2019s transform your vehicle into a masterpiece.\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1761303354\\\/qrnldav68v7ioe5yyuum.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1761303356\\\/b75obtosmu7rnepspj5d.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1761303358\\\/jzxzrqnekh9yo0jftrrk.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1761303360\\\/maj90rxdqgxkftztcea2.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1761303361\\\/wfeme5rzwm8pje9ovd3j.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1761303362\\\/nvcsgjgx04olsvv5n0ey.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1761303363\\\/jpu71qimjprsdf13po4n.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1761303364\\\/u9vada9xrjjxgkuvbduv.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1761303365\\\/qoqljvmrjpfz6iliaekz.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1761303366\\\/cnksceglru0yjsitpjqa.jpg\"],\"status\":\"available\",\"created_at\":\"2025-10-24T10:54:22.000000Z\",\"updated_at\":\"2025-10-24T10:54:22.000000Z\",\"deleted_at\":null},{\"id\":118,\"uuid\":\"93aea53c-4a42-4e48-aaa8-086fdddb607a\",\"category\":\"Hire\",\"brand\":\"Mercedes_Benz\",\"type\":\"Sedan\",\"model\":\"1977\",\"fee\":70000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"Looking for a classic, stylish car for your next photo shoot or movie production? This 1977 Mercedes-Benz is the perfect choice!\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1761303099\\\/oet4vlaiv8ln6jqcc8az.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1761303101\\\/muuodzzgkhkn5grleqcv.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1761303103\\\/s1wru7amgw0sdcl6otxj.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1761303104\\\/vmkw6wkf7uguhhgdcpst.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1761303105\\\/ao9ybrgyxqzuekdbgdqr.jpg\"],\"status\":\"available\",\"created_at\":\"2025-10-24T10:50:02.000000Z\",\"updated_at\":\"2025-10-24T10:50:02.000000Z\",\"deleted_at\":null},{\"id\":117,\"uuid\":\"f538d757-eb04-44f8-aec4-15ea6477275e\",\"category\":\"Parts\",\"brand\":\"All\",\"type\":\"All\",\"model\":\"Lion Power Fuel Pump\",\"fee\":16000,\"location\":\"Anywhere\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"High quality Lion Power Fuel Pump fits for all vehicles \\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1760957827\\\/qpfopskwpf9ki6mg37pj.jpg\"],\"status\":\"available\",\"created_at\":\"2025-10-20T10:55:27.000000Z\",\"updated_at\":\"2025-10-20T10:55:27.000000Z\",\"deleted_at\":null},{\"id\":116,\"uuid\":\"9a2ec340-14d7-4b54-934a-b50bf1b5416a\",\"category\":\"Parts\",\"brand\":\"All\",\"type\":\"All\",\"model\":\"Original Eagle Fuel Pump\",\"fee\":14000,\"location\":\"Anywhere\",\"has_online_payment\":false,\"featured\":false,\"description\":\"[{\\\"title\\\":\\\"High quality Fuel Pump\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1760957687\\\/dxznewbpgxglrrwcupd3.jpg\"],\"status\":\"available\",\"created_at\":\"2025-10-20T10:53:07.000000Z\",\"updated_at\":\"2025-10-20T10:53:07.000000Z\",\"deleted_at\":null}]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "View a service",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/services\/:service_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/services\/:service_uuid",
                            "variable": [
                                {
                                    "id": "service_uuid",
                                    "key": "service_uuid",
                                    "value": "c3bdfc89-ab64-4ebf-b331-305d5ba41783",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "51"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"status\":200,\"success\":true,\"data\":{\"id\":1,\"uuid\":\"c3bdfc89-ab64-4ebf-b331-305d5ba41783\",\"category\":\"Sales\",\"brand\":\"Lexus\",\"type\":\"Suv\",\"model\":\"Rx350 2011\",\"fee\":18500000,\"location\":\"Ibadan\",\"has_online_payment\":false,\"featured\":true,\"description\":\"[{\\\"title\\\":\\\"2011 model, clean and sharp. Powerful engine, smooth ride, leather interior with chilling AC, and plenty of comfort features. Well-maintained, reliable, and ready for the road \\u2014 buy and drive.\\\",\\\"value\\\":\\\"\\\"}]\",\"image_urls\":[\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756598778\\\/jwmfelsvl46s9bxxuk37.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756598779\\\/nxrvcjafgvcavgce6fua.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756598779\\\/t6uyniuqdr2vh873c0rg.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756598780\\\/cuauervshqgkki9wghpk.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756598781\\\/xs6bitapknz1kuzxl4ep.jpg\",\"https:\\\/\\\/res.cloudinary.com\\\/da5xtmva0\\\/image\\\/upload\\\/v1756598782\\\/ir8n9hjiqftad4doxmjx.jpg\"],\"status\":\"available\",\"created_at\":\"2025-08-31T00:05:44.000000Z\",\"updated_at\":\"2025-08-31T00:05:44.000000Z\",\"deleted_at\":null}}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "PasswordReset",
            "description": "Send a password reset link to the user's email.",
            "item": [
                {
                    "name": "Send Password Reset token",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/auth\/request-password",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/auth\/request-password"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"user@example.com\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Change Password",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/auth\/change-password",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/auth\/change-password"
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"user@techtrovlab.com\",\"hash\":\"123456\",\"password\":\"MyNewPass123!\",\"password_confirmation\":\"MyNewPass123!\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Verify Reset Token",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/auth\/verify-token",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/auth\/verify-token"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"user@example.com\",\"hash\":\"123456\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Payments",
            "description": "",
            "item": [
                {
                    "name": "List all payments.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/payments",
                            "query": [
                                {
                                    "key": "perPage",
                                    "value": "10",
                                    "description": "Number of records per page.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "desc",
                                    "description": "Sort direction. Allowed values: asc, desc.",
                                    "disabled": false
                                },
                                {
                                    "key": "status",
                                    "value": "successful",
                                    "description": "Filter by status. One of transaction statuses: pending, paid, failed.",
                                    "disabled": false
                                },
                                {
                                    "key": "search",
                                    "value": "REF12345",
                                    "description": "Search keyword.",
                                    "disabled": false
                                },
                                {
                                    "key": "type",
                                    "value": "reference",
                                    "description": "The field to apply the search on. One of: session, reference, method.",
                                    "disabled": false
                                },
                                {
                                    "key": "range%5Bfrom%5D",
                                    "value": "2024-01-01",
                                    "description": "required_with:range Start date (YYYY-MM-DD).",
                                    "disabled": false
                                },
                                {
                                    "key": "range%5Bto%5D",
                                    "value": "2024-12-31",
                                    "description": "required_with:range End date (YYYY-MM-DD).",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/payments?perPage=10&sort=desc&status=successful&search=REF12345&type=reference&range%5Bfrom%5D=2024-01-01&range%5Bto%5D=2024-12-31"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve a paginated list of all transactions with optional filters like status, sort, search, and date range.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"status\": \"success\",\n  \"data\": [\n    {\n      \"id\": 1,\n      \"amount\": 5000,\n      \"status\": \"successful\",\n      \"reference\": \"TRX12345\"\n    }\n  ]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get the most recent payments.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/payments\/recent",
                            "query": [
                                {
                                    "key": "limit",
                                    "value": "5",
                                    "description": "The number of recent transactions to retrieve. Defaults to 10.",
                                    "disabled": false
                                },
                                {
                                    "key": "status",
                                    "value": "pending",
                                    "description": "Optional transaction status filter.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/payments\/recent?limit=5&status=pending"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Fetches the latest N transactions, optionally filtered by status.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"status\": \"success\",\n  \"data\": [\n    {\n      \"id\": 1,\n      \"amount\": 3000,\n      \"status\": \"pending\"\n    }\n  ]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get authenticated user's payments.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/payments\/user\/payments",
                            "query": [
                                {
                                    "key": "perPage",
                                    "value": "10",
                                    "description": "Number of records per page.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "asc",
                                    "description": "Sort direction. Allowed values: asc, desc.",
                                    "disabled": false
                                },
                                {
                                    "key": "status",
                                    "value": "successful",
                                    "description": "Filter by status. One of transaction statuses: pending, paid, failed.",
                                    "disabled": false
                                },
                                {
                                    "key": "search",
                                    "value": "CASH-ReceivedAT",
                                    "description": "Search keyword.",
                                    "disabled": false
                                },
                                {
                                    "key": "type",
                                    "value": "method",
                                    "description": "Field to apply the search on. One of: session, reference, method.",
                                    "disabled": false
                                },
                                {
                                    "key": "range%5Bfrom%5D",
                                    "value": "2024-05-01",
                                    "description": "required_with:range Start date (YYYY-MM-DD).",
                                    "disabled": false
                                },
                                {
                                    "key": "range%5Bto%5D",
                                    "value": "2024-05-30",
                                    "description": "required_with:range End date (YYYY-MM-DD).",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/payments\/user\/payments?perPage=10&sort=asc&status=successful&search=CASH-ReceivedAT&type=method&range%5Bfrom%5D=2024-05-01&range%5Bto%5D=2024-05-30"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns a paginated list of transactions belonging to the authenticated user, with optional filters.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"status\": \"success\",\n  \"data\": {\n    \"current_page\": 1,\n    \"data\": [\n      {\n        \"id\": 1,\n        \"amount\": 2000,\n        \"method\": \"cash\"\n      }\n    ]\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "View a specific payment.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/payments\/:payment",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/payments\/:payment",
                            "variable": [
                                {
                                    "id": "payment",
                                    "key": "payment",
                                    "value": "consequatur",
                                    "description": "The payment."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve a single payment transaction by uuid, including associated services and user.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"status\": \"success\",\n  \"data\": {\n    \"id\": 1,\n    \"amount\": 2000,\n    \"status\": \"paid\",\n    \"user\": {\n      \"id\": 5,\n      \"name\": \"John Doe\"\n    },\n    \"services\": [\n      {\n        \"id\": 1,\n        \"name\": \"Document Upload\"\n      }\n    ]\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create a new payment.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/payments\/make",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/payments\/make"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"coupon\":\"COUPON2024\",\"method\":\"online, others\",\"comment\":\"Payment for certificate\",\"service_ids\":[1,2],\"service_ids[]\":1}"
                        },
                        "description": "Initiate a payment transaction for one or more services.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 201,
                            "body": "{\n  \"status\": \"success\",\n  \"data\": {\n    \"url\": \"https:\/\/payment-gateway.com\/redirect?ref=TRX12345\"\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Confirm a pending cash payment.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/payments\/confirm",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/payments\/confirm"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ref\":\"TRX12345\"}"
                        },
                        "description": "Confirms a pending cash transaction using the transaction reference.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"status\": \"success\",\n  \"data\": {\n    \"confirmed\": {\n      \"id\": 1,\n      \"status\": \"paid\",\n      \"session\": \"CASH-ReceivedAT-1720469891\"\n    }\n  }\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Preferences",
            "description": "",
            "item": [
                {
                    "name": "Get all Preferences.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/preferences",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/preferences"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":401,\"success\":false,\"error\":{\"code\":\"unauthenticated\",\"message\":\"Please sign in to continue.\"}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Store a new Preference.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/preferences",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/preferences"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"email\",\"type\":\"chat\",\"value\":true}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "RecentViews",
            "description": "",
            "item": [
                {
                    "name": "Get all RecentViews.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/recent-views",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/recent-views"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"order\":\"asc\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":401,\"success\":false,\"error\":{\"code\":\"unauthenticated\",\"message\":\"Please sign in to continue.\"}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get RecentViews for the authenticated user.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/recent-views\/myviews",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/recent-views\/myviews"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"order\":\"asc\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":401,\"success\":false,\"error\":{\"code\":\"unauthenticated\",\"message\":\"Please sign in to continue.\"}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Store a new RecentView.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/recent-views",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/recent-views"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"service_id\":11613.31890586000008624978363513946533203125}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Remove the specified RecentView item.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/recent-views\/:recent_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/recent-views\/:recent_uuid",
                            "variable": [
                                {
                                    "id": "recent_uuid",
                                    "key": "recent_uuid",
                                    "value": "f3f440b3-a81d-4865-bad8-acab268fe169",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "ReferralRewards",
            "description": "",
            "item": [
                {
                    "name": "Display a listing of Referral Rewards.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/referral-rewards",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/referral-rewards"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"sort\":\"asc\",\"search\":\"consequatur\",\"is_claimed\":false,\"range\":{\"from\":\"2025-11-04T09:54:42\",\"to\":\"2025-11-04T09:54:42\"}}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":401,\"success\":false,\"error\":{\"code\":\"unauthenticated\",\"message\":\"Please sign in to continue.\"}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Store a newly created Referral Reward in storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/referral-rewards",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/referral-rewards"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"user\":\"consequatur\",\"name\":\"mqeopfuudtdsufvyvddqa\",\"type\":\"cash\",\"value\":46,\"is_claimed\":false}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Get the current authenticated user's active referral reward.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/referral-rewards\/user",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/referral-rewards\/user"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":401,\"success\":false,\"error\":{\"code\":\"unauthenticated\",\"message\":\"Please sign in to continue.\"}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Display the specified Referral Reward.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/referral-rewards\/:referralReward_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/referral-rewards\/:referralReward_uuid",
                            "variable": [
                                {
                                    "id": "referralReward_uuid",
                                    "key": "referralReward_uuid",
                                    "value": "",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":401,\"success\":false,\"error\":{\"code\":\"unauthenticated\",\"message\":\"Please sign in to continue.\"}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Mark a referral reward as claimed.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/referral-rewards\/:referralReward_uuid\/claim",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/referral-rewards\/:referralReward_uuid\/claim",
                            "variable": [
                                {
                                    "id": "referralReward_uuid",
                                    "key": "referralReward_uuid",
                                    "value": "",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Remove the specified Referral Reward from storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/referral-rewards\/:referralReward_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/referral-rewards\/:referralReward_uuid",
                            "variable": [
                                {
                                    "id": "referralReward_uuid",
                                    "key": "referralReward_uuid",
                                    "value": "",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Referrals",
            "description": "",
            "item": [
                {
                    "name": "Get top referrers with their referral counts.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/referrals",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/referrals"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":401,\"success\":false,\"error\":{\"code\":\"unauthenticated\",\"message\":\"Please sign in to continue.\"}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get referrals for the authenticated user.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/referrals\/myreferral\/:user",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/referrals\/myreferral\/:user",
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "9ecffa6c-824e-499c-b814-9465603fed22",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":401,\"success\":false,\"error\":{\"code\":\"unauthenticated\",\"message\":\"Please sign in to continue.\"}}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Settings",
            "description": "",
            "item": [
                {
                    "name": "Store a newly created Setting in storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/admin\/settings",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/admin\/settings"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"type\":\"payment\",\"value\":\"flutterwave\",\"status\":true}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update an existing Settings in storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/admin\/settings\/:settings_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/admin\/settings\/:settings_uuid",
                            "variable": [
                                {
                                    "id": "settings_uuid",
                                    "key": "settings_uuid",
                                    "value": "8f7e9354-b1fc-4bb7-ae8e-9c0fbe6503b3",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"type\":\"instagram\",\"value\":\"https:\\\/\\\/instagram.com\\\/yourpage\",\"status\":false}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Remove the specified Settings from storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/admin\/settings\/:settings_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/admin\/settings\/:settings_uuid",
                            "variable": [
                                {
                                    "id": "settings_uuid",
                                    "key": "settings_uuid",
                                    "value": "8f7e9354-b1fc-4bb7-ae8e-9c0fbe6503b3",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Display a listing of the Settings.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/settings",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/settings"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"type\":\"whatsapp\"}"
                        },
                        "description": "Search settings by type.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "55"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"status\":200,\"success\":true,\"data\":[{\"id\":1,\"uuid\":\"8f7e9354-b1fc-4bb7-ae8e-9c0fbe6503b3\",\"type\":\"Whatsapp\",\"value\":\"https:\\\/\\\/wa.me\\\/2347034709902\\r\\n\",\"status\":true,\"created_at\":\"2025-07-20T01:08:24.000000Z\",\"updated_at\":\"2025-07-20T01:08:24.000000Z\"}]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Display the specified Settings.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/settings\/:setting\/view",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/settings\/:setting\/view",
                            "variable": [
                                {
                                    "id": "setting",
                                    "key": "setting",
                                    "value": "consequatur",
                                    "description": "The setting."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "54"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"status\":200,\"success\":true,\"data\":[]}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "User Management",
            "description": "",
            "item": [
                {
                    "name": "Verify user email with OTP.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/verify-email",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/verify-email"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"user@example.com\",\"otp\":\"123456\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": {\n    \"message\": \"Email verified successfully\",\n    \"validity\": true\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": {\n    \"message\": \"Invalid OTP\",\n    \"validity\": false\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List all users.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/users",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/users"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"is_locked\":false}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":401,\"success\":false,\"error\":{\"code\":\"unauthenticated\",\"message\":\"Please sign in to continue.\"}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Show a specific user.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/users\/:user_uuid\/view",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/users\/:user_uuid\/view",
                            "variable": [
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "9ecffa6c-824e-499c-b814-9465603fed22",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":401,\"success\":false,\"error\":{\"code\":\"unauthenticated\",\"message\":\"Please sign in to continue.\"}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update user's profile image.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/users\/profile\/:user_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/users\/profile\/:user_uuid",
                            "variable": [
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "9ecffa6c-824e-499c-b814-9465603fed22",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "profile_img",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update user details.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/users\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/users\/:uuid",
                            "variable": [
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "9ecffa6c-824e-499c-b814-9465603fed22",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"first_name\":\"vmqeopfuudtdsufvyvddq\",\"last_name\":\"amniihfqcoynlazghdtqt\",\"address\":\"qxbajwbpilpmufinllwlo\",\"phone\":11613.31890586000008624978363513946533203125,\"dob\":\"04-11-2025\",\"gender\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete a user.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/users\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/users\/:uuid",
                            "variable": [
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "9ecffa6c-824e-499c-b814-9465603fed22",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Check if authenticated user's profile is complete.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/users\/profile-complete",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/users\/profile-complete"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":401,\"success\":false,\"error\":{\"code\":\"unauthenticated\",\"message\":\"Please sign in to continue.\"}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Change the authenticated user's password.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/security\/change-pass",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/security\/change-pass"
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"current_password\":\"currentPassword123\",\"password\":\"newPassword123\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Show the authenticated user's profile.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/profile",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/profile"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":401,\"success\":false,\"error\":{\"code\":\"unauthenticated\",\"message\":\"Please sign in to continue.\"}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create a new user.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/users",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/users"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"first_name\":\"Abiodun\",\"last_name\":\"Doe\",\"phone\":\"2348012345678\",\"email\":\"Abiodun@techtrovelab.com\",\"referral_code\":\"abiodun123\",\"gender\":\"male\",\"password\":\"securePassword123\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Wishlists",
            "description": "",
            "item": [
                {
                    "name": "Get all wishlists.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/wishlists",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/wishlists"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":401,\"success\":false,\"error\":{\"code\":\"unauthenticated\",\"message\":\"Please sign in to continue.\"}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get wishlists for the authenticated user.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/wishlists\/mywish",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/wishlists\/mywish"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":401,\"success\":false,\"error\":{\"code\":\"unauthenticated\",\"message\":\"Please sign in to continue.\"}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Store a new wishlist.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/wishlists",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/wishlists"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"service_id\":11613.31890586000008624978363513946533203125}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Remove the specified wishlist item.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/wishlists\/:wishlist_uuid\/remove",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/wishlists\/:wishlist_uuid\/remove",
                            "variable": [
                                {
                                    "id": "wishlist_uuid",
                                    "key": "wishlist_uuid",
                                    "value": "51738543-511d-49d4-b030-a6429765da0e",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        }
    ],
    "auth": {
        "type": "noauth"
    }
}