{
    "variable": [
        {
            "id": "baseUrl",
            "key": "baseUrl",
            "type": "string",
            "name": "string",
            "value": "http:\/\/homzen.test"
        }
    ],
    "info": {
        "name": "Your App API Documentation",
        "_postman_id": "cbda98b1-e464-42b0-a2f7-8c3c094385f7",
        "description": "",
        "schema": "https:\/\/schema.getpostman.com\/json\/collection\/v2.1.0\/collection.json"
    },
    "item": [
        {
            "name": "Ads",
            "description": "",
            "item": [
                {
                    "name": "Get ads",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ads",
                            "query": [
                                {
                                    "key": "keys[0]",
                                    "value": "homepage-banner",
                                    "description": "Array of ad keys to filter by.",
                                    "disabled": false
                                },
                                {
                                    "key": "keys[1]",
                                    "value": "sidebar-banner",
                                    "description": "Array of ad keys to filter by.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/ads?keys[0]=homepage-banner&keys[1]=sidebar-banner"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"keys\":[\"homepage-banner\",\"sidebar-banner\"]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"error\":false,\"data\":[],\"message\":null}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Authentication",
            "description": "",
            "item": [
                {
                    "name": "Register",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/register",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/register"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"first_name\":\"John\",\"last_name\":\"Smith\",\"name\":\"consequatur\",\"email\":\"qkunze@example.com\",\"password\":\"O[2UZ5ij-e\\\/dl4m{o,\",\"phone\":\"consequatur\",\"password_confirmation\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"error\": false,\n\"data\": null,\n\"message\": \"Registered successfully! We emailed you to verify your account!\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n\"message\": \"The given data was invalid.\",\n\"errors\": {\n    \"name\": [\n        \"The name field is required.\"\n    ],\n    \"email\": [\n        \"The email field is required.\"\n    ],\n    \"password\": [\n        \"The password field is required.\"\n    ]\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Login",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/login",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/login"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"qkunze@example.com\",\"password\":\"O[2UZ5ij-e\\\/dl4m{o,\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"error\": false,\n\"data\": {\n   \"token\": \"1|aF5s7p3xxx1lVL8hkSrPN72m4wPVpTvTs...\"\n},\n\"message\": null\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Check email existing or not",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/email\/check",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/email\/check"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"qkunze@example.com\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n \"error\": false,\n \"data\": {\n    \"exists\": true\n },\n \"message\": null\n }",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Forgot password",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/password\/forgot",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/password\/forgot"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"qkunze@example.com\"}"
                        },
                        "description": "Send a reset link to the given user.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Resend email verification",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/resend-verify-account-email",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/resend-verify-account-email"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"qkunze@example.com\"}"
                        },
                        "description": "Resend the email verification notification.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Logout",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/logout",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/logout"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Blog",
            "description": "",
            "item": [
                {
                    "name": "Search post",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/search",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/search"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"q\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"No results found, please try with different keywords.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List posts",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/posts",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/posts"
                        },
                        "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": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[{\"id\":1,\"name\":\"Top 10 Tips for First-time Home Buyers\",\"slug\":\"top-10-tips-for-first-time-home-buyers\",\"description\":\"Soup does very well to say but 'It belongs to the baby, and not to be a Caucus-race.' 'What IS the same thing as \\\"I eat what I say,' the Mock Turtle Soup is made from,' said the Caterpillar.\",\"image\":\"http:\\\/\\\/homzen.test\\\/storage\\\/posts\\\/3.jpg\",\"categories\":[{\"id\":2,\"name\":\"Selling a Home\",\"slug\":\"selling-a-home\",\"url\":\"http:\\\/\\\/homzen.test\\\/news\\\/selling-a-home\",\"description\":\"Molestias fugiat maxime nostrum esse. Exercitationem excepturi molestiae enim eius. Qui corrupti autem minus nostrum.\"},{\"id\":4,\"name\":\"Home Improvement\",\"slug\":\"home-improvement\",\"url\":\"http:\\\/\\\/homzen.test\\\/news\\\/home-improvement\",\"description\":\"Non incidunt perspiciatis nisi sunt itaque et possimus. Porro et natus unde voluptas mollitia maxime. Animi nemo et ut repellat dicta. Ea numquam reiciendis architecto quae.\"}],\"tags\":[{\"id\":2,\"name\":\"Investing\",\"slug\":\"investing\",\"description\":null},{\"id\":3,\"name\":\"Market Analysis\",\"slug\":\"market-analysis\",\"description\":null},{\"id\":8,\"name\":\"Renovation\",\"slug\":\"renovation\",\"description\":null}],\"created_at\":\"2025-06-29T03:29:47.000000Z\",\"updated_at\":\"2025-06-29T03:29:47.000000Z\"},{\"id\":2,\"name\":\"How to Stage Your Home for a Quick Sale\",\"slug\":\"how-to-stage-your-home-for-a-quick-sale\",\"description\":\"WAS a narrow escape!' said Alice, as the rest of my own. I'm a hatter.' Here the other side. The further off from England the nearer is to find that her idea of the players to be a walrus or.\",\"image\":\"http:\\\/\\\/homzen.test\\\/storage\\\/posts\\\/2.jpg\",\"categories\":[{\"id\":6,\"name\":\"Neighborhood Guides\",\"slug\":\"neighborhood-guides\",\"url\":\"http:\\\/\\\/homzen.test\\\/news\\\/neighborhood-guides\",\"description\":\"Et ut molestiae quos hic molestiae sunt. Facilis quia in perspiciatis perferendis rerum. Pariatur maiores corrupti tenetur similique neque.\"}],\"tags\":[{\"id\":1,\"name\":\"Tips\",\"slug\":\"tips\",\"description\":null},{\"id\":5,\"name\":\"Luxury Homes\",\"slug\":\"luxury-homes\",\"description\":null},{\"id\":6,\"name\":\"First-time Buyers\",\"slug\":\"first-time-buyers\",\"description\":null}],\"created_at\":\"2025-06-29T03:29:47.000000Z\",\"updated_at\":\"2025-06-29T03:29:47.000000Z\"},{\"id\":3,\"name\":\"Understanding the Current Real Estate Market Trends\",\"slug\":\"understanding-the-current-real-estate-market-trends\",\"description\":\"Alice, in a tone of delight, and rushed at the March Hare took the hookah into its nest. Alice crouched down among the trees, a little feeble, squeaking voice, ('That's Bill,' thought Alice,) 'Well.\",\"image\":\"http:\\\/\\\/homzen.test\\\/storage\\\/posts\\\/9.jpg\",\"categories\":[{\"id\":4,\"name\":\"Home Improvement\",\"slug\":\"home-improvement\",\"url\":\"http:\\\/\\\/homzen.test\\\/news\\\/home-improvement\",\"description\":\"Non incidunt perspiciatis nisi sunt itaque et possimus. Porro et natus unde voluptas mollitia maxime. Animi nemo et ut repellat dicta. Ea numquam reiciendis architecto quae.\"},{\"id\":5,\"name\":\"Real Estate Investing\",\"slug\":\"real-estate-investing\",\"url\":\"http:\\\/\\\/homzen.test\\\/news\\\/real-estate-investing\",\"description\":\"Et explicabo dolor veritatis a consequuntur eveniet ut. Sed suscipit doloremque fugit suscipit. Qui provident earum in aut quae itaque.\"}],\"tags\":[{\"id\":2,\"name\":\"Investing\",\"slug\":\"investing\",\"description\":null},{\"id\":4,\"name\":\"DIY\",\"slug\":\"diy\",\"description\":null},{\"id\":8,\"name\":\"Renovation\",\"slug\":\"renovation\",\"description\":null}],\"created_at\":\"2025-06-29T03:29:47.000000Z\",\"updated_at\":\"2025-06-29T03:29:47.000000Z\"},{\"id\":4,\"name\":\"DIY Home Improvement Projects That Add Value\",\"slug\":\"diy-home-improvement-projects-that-add-value\",\"description\":\"Alice. 'Oh, don't bother ME,' said Alice loudly. 'The idea of the country is, you know. Come on!' So they couldn't get them out with his nose, you know?' 'It's the thing yourself, some winter day, I.\",\"image\":\"http:\\\/\\\/homzen.test\\\/storage\\\/posts\\\/10.jpg\",\"categories\":[{\"id\":3,\"name\":\"Market Trends\",\"slug\":\"market-trends\",\"url\":\"http:\\\/\\\/homzen.test\\\/news\\\/market-trends\",\"description\":\"Quo maxime non nostrum totam quia sunt sed. Unde nesciunt error qui. Error quo alias voluptatem dolores iste nobis.\"}],\"tags\":[{\"id\":1,\"name\":\"Tips\",\"slug\":\"tips\",\"description\":null},{\"id\":6,\"name\":\"First-time Buyers\",\"slug\":\"first-time-buyers\",\"description\":null}],\"created_at\":\"2025-06-29T03:29:47.000000Z\",\"updated_at\":\"2025-06-29T03:29:47.000000Z\"},{\"id\":5,\"name\":\"A Beginner\\u2019s Guide to Real Estate Investing\",\"slug\":\"a-beginners-guide-to-real-estate-investing\",\"description\":\"Alice timidly. 'Would you like the name: however, it only grinned a little bottle on it, or at any rate, the Dormouse into the roof was thatched with fur. It was so full of soup. 'There's certainly.\",\"image\":\"http:\\\/\\\/homzen.test\\\/storage\\\/posts\\\/8.jpg\",\"categories\":[{\"id\":1,\"name\":\"Buying a Home\",\"slug\":\"buying-a-home\",\"url\":\"http:\\\/\\\/homzen.test\\\/news\\\/buying-a-home\",\"description\":\"Fuga enim quas nobis atque quo accusantium. Et asperiores itaque dolorem qui. Corporis ad voluptas et non numquam. Aliquam ipsa dolor repellendus nihil est enim.\"},{\"id\":6,\"name\":\"Neighborhood Guides\",\"slug\":\"neighborhood-guides\",\"url\":\"http:\\\/\\\/homzen.test\\\/news\\\/neighborhood-guides\",\"description\":\"Et ut molestiae quos hic molestiae sunt. Facilis quia in perspiciatis perferendis rerum. Pariatur maiores corrupti tenetur similique neque.\"}],\"tags\":[{\"id\":2,\"name\":\"Investing\",\"slug\":\"investing\",\"description\":null},{\"id\":4,\"name\":\"DIY\",\"slug\":\"diy\",\"description\":null},{\"id\":7,\"name\":\"Property Management\",\"slug\":\"property-management\",\"description\":null}],\"created_at\":\"2025-06-29T03:29:47.000000Z\",\"updated_at\":\"2025-06-29T03:29:47.000000Z\"},{\"id\":6,\"name\":\"How to Choose the Right Neighborhood for Your Family\",\"slug\":\"how-to-choose-the-right-neighborhood-for-your-family\",\"description\":\"Cheshire Cat,' said Alice: 'allow me to him: She gave me a pair of white kid gloves while she remembered the number of executions the Queen was in a whisper.) 'That would be four thousand miles.\",\"image\":\"http:\\\/\\\/homzen.test\\\/storage\\\/posts\\\/1.jpg\",\"categories\":[{\"id\":5,\"name\":\"Real Estate Investing\",\"slug\":\"real-estate-investing\",\"url\":\"http:\\\/\\\/homzen.test\\\/news\\\/real-estate-investing\",\"description\":\"Et explicabo dolor veritatis a consequuntur eveniet ut. Sed suscipit doloremque fugit suscipit. Qui provident earum in aut quae itaque.\"}],\"tags\":[{\"id\":4,\"name\":\"DIY\",\"slug\":\"diy\",\"description\":null},{\"id\":7,\"name\":\"Property Management\",\"slug\":\"property-management\",\"description\":null}],\"created_at\":\"2025-06-29T03:29:47.000000Z\",\"updated_at\":\"2025-06-29T03:29:47.000000Z\"},{\"id\":7,\"name\":\"Luxury Homes: What to Look For\",\"slug\":\"luxury-homes-what-to-look-for\",\"description\":\"Queen's voice in the house opened, and a large mushroom growing near her, about the whiting!' 'Oh, as to go on. 'And so these three weeks!' 'I'm very sorry you've been annoyed,' said Alice, a little.\",\"image\":\"http:\\\/\\\/homzen.test\\\/storage\\\/posts\\\/8.jpg\",\"categories\":[{\"id\":3,\"name\":\"Market Trends\",\"slug\":\"market-trends\",\"url\":\"http:\\\/\\\/homzen.test\\\/news\\\/market-trends\",\"description\":\"Quo maxime non nostrum totam quia sunt sed. Unde nesciunt error qui. Error quo alias voluptatem dolores iste nobis.\"},{\"id\":5,\"name\":\"Real Estate Investing\",\"slug\":\"real-estate-investing\",\"url\":\"http:\\\/\\\/homzen.test\\\/news\\\/real-estate-investing\",\"description\":\"Et explicabo dolor veritatis a consequuntur eveniet ut. Sed suscipit doloremque fugit suscipit. Qui provident earum in aut quae itaque.\"}],\"tags\":[{\"id\":2,\"name\":\"Investing\",\"slug\":\"investing\",\"description\":null},{\"id\":3,\"name\":\"Market Analysis\",\"slug\":\"market-analysis\",\"description\":null}],\"created_at\":\"2025-06-29T03:29:48.000000Z\",\"updated_at\":\"2025-06-29T03:29:48.000000Z\"},{\"id\":8,\"name\":\"Property Management: Best Practices for Landlords\",\"slug\":\"property-management-best-practices-for-landlords\",\"description\":\"Who ever saw in another moment that it would be worth the trouble of getting up and ran off, thinking while she remembered that she had never been so much surprised, that for two reasons. First.\",\"image\":\"http:\\\/\\\/homzen.test\\\/storage\\\/posts\\\/7.jpg\",\"categories\":[{\"id\":3,\"name\":\"Market Trends\",\"slug\":\"market-trends\",\"url\":\"http:\\\/\\\/homzen.test\\\/news\\\/market-trends\",\"description\":\"Quo maxime non nostrum totam quia sunt sed. Unde nesciunt error qui. Error quo alias voluptatem dolores iste nobis.\"},{\"id\":4,\"name\":\"Home Improvement\",\"slug\":\"home-improvement\",\"url\":\"http:\\\/\\\/homzen.test\\\/news\\\/home-improvement\",\"description\":\"Non incidunt perspiciatis nisi sunt itaque et possimus. Porro et natus unde voluptas mollitia maxime. Animi nemo et ut repellat dicta. Ea numquam reiciendis architecto quae.\"}],\"tags\":[{\"id\":6,\"name\":\"First-time Buyers\",\"slug\":\"first-time-buyers\",\"description\":null},{\"id\":7,\"name\":\"Property Management\",\"slug\":\"property-management\",\"description\":null},{\"id\":8,\"name\":\"Renovation\",\"slug\":\"renovation\",\"description\":null}],\"created_at\":\"2025-06-29T03:29:48.000000Z\",\"updated_at\":\"2025-06-29T03:29:48.000000Z\"},{\"id\":9,\"name\":\"Renovation Ideas to Increase Your Home\\u2019s Value\",\"slug\":\"renovation-ideas-to-increase-your-homes-value\",\"description\":\"There's no pleasing them!' Alice was silent. The Dormouse shook its head impatiently, and walked a little different. But if I'm Mabel, I'll stay down here with me! There are no mice in the wind, and.\",\"image\":\"http:\\\/\\\/homzen.test\\\/storage\\\/posts\\\/7.jpg\",\"categories\":[{\"id\":2,\"name\":\"Selling a Home\",\"slug\":\"selling-a-home\",\"url\":\"http:\\\/\\\/homzen.test\\\/news\\\/selling-a-home\",\"description\":\"Molestias fugiat maxime nostrum esse. Exercitationem excepturi molestiae enim eius. Qui corrupti autem minus nostrum.\"},{\"id\":5,\"name\":\"Real Estate Investing\",\"slug\":\"real-estate-investing\",\"url\":\"http:\\\/\\\/homzen.test\\\/news\\\/real-estate-investing\",\"description\":\"Et explicabo dolor veritatis a consequuntur eveniet ut. Sed suscipit doloremque fugit suscipit. Qui provident earum in aut quae itaque.\"}],\"tags\":[{\"id\":1,\"name\":\"Tips\",\"slug\":\"tips\",\"description\":null},{\"id\":5,\"name\":\"Luxury Homes\",\"slug\":\"luxury-homes\",\"description\":null}],\"created_at\":\"2025-06-29T03:29:48.000000Z\",\"updated_at\":\"2025-06-29T03:29:48.000000Z\"},{\"id\":10,\"name\":\"The Ultimate Guide to Buying a Vacation Home\",\"slug\":\"the-ultimate-guide-to-buying-a-vacation-home\",\"description\":\"Dodo, 'the best way to hear his history. I must be collected at once took up the conversation a little. ''Tis so,' said Alice. 'I mean what I say--that's the same tone, exactly as if he thought it.\",\"image\":\"http:\\\/\\\/homzen.test\\\/storage\\\/posts\\\/2.jpg\",\"categories\":[{\"id\":1,\"name\":\"Buying a Home\",\"slug\":\"buying-a-home\",\"url\":\"http:\\\/\\\/homzen.test\\\/news\\\/buying-a-home\",\"description\":\"Fuga enim quas nobis atque quo accusantium. Et asperiores itaque dolorem qui. Corporis ad voluptas et non numquam. Aliquam ipsa dolor repellendus nihil est enim.\"},{\"id\":3,\"name\":\"Market Trends\",\"slug\":\"market-trends\",\"url\":\"http:\\\/\\\/homzen.test\\\/news\\\/market-trends\",\"description\":\"Quo maxime non nostrum totam quia sunt sed. Unde nesciunt error qui. Error quo alias voluptatem dolores iste nobis.\"}],\"tags\":[{\"id\":3,\"name\":\"Market Analysis\",\"slug\":\"market-analysis\",\"description\":null},{\"id\":4,\"name\":\"DIY\",\"slug\":\"diy\",\"description\":null},{\"id\":6,\"name\":\"First-time Buyers\",\"slug\":\"first-time-buyers\",\"description\":null}],\"created_at\":\"2025-06-29T03:29:48.000000Z\",\"updated_at\":\"2025-06-29T03:29:48.000000Z\"}],\"links\":{\"first\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/posts?page=1\",\"last\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/posts?page=2\",\"prev\":null,\"next\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/posts?page=2\"},\"meta\":{\"current_page\":1,\"from\":1,\"last_page\":2,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/posts?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/posts?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/posts?page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/posts\",\"per_page\":10,\"to\":10,\"total\":18},\"error\":false,\"message\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List tags",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/tags",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/tags"
                        },
                        "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": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[{\"id\":1,\"name\":\"Tips\",\"slug\":\"tips\",\"description\":null},{\"id\":2,\"name\":\"Investing\",\"slug\":\"investing\",\"description\":null},{\"id\":3,\"name\":\"Market Analysis\",\"slug\":\"market-analysis\",\"description\":null},{\"id\":4,\"name\":\"DIY\",\"slug\":\"diy\",\"description\":null},{\"id\":5,\"name\":\"Luxury Homes\",\"slug\":\"luxury-homes\",\"description\":null},{\"id\":6,\"name\":\"First-time Buyers\",\"slug\":\"first-time-buyers\",\"description\":null},{\"id\":7,\"name\":\"Property Management\",\"slug\":\"property-management\",\"description\":null},{\"id\":8,\"name\":\"Renovation\",\"slug\":\"renovation\",\"description\":null}],\"links\":{\"first\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/tags?page=1\",\"last\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/tags?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":1,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/tags?page=1\",\"label\":\"1\",\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/tags\",\"per_page\":10,\"to\":8,\"total\":8},\"error\":false,\"message\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Filters posts",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/posts\/filters",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "17",
                                    "description": "Current page of the collection. Default: 1",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "17",
                                    "description": "Maximum number of items to be returned in result set.Default: 10",
                                    "disabled": false
                                },
                                {
                                    "key": "search",
                                    "value": "consequatur",
                                    "description": "Limit results to those matching a string.",
                                    "disabled": false
                                },
                                {
                                    "key": "after",
                                    "value": "consequatur",
                                    "description": "Limit response to posts published after a given ISO8601 compliant date.",
                                    "disabled": false
                                },
                                {
                                    "key": "author",
                                    "value": "consequatur",
                                    "description": "Limit result set to posts assigned to specific authors.",
                                    "disabled": false
                                },
                                {
                                    "key": "author_exclude",
                                    "value": "consequatur",
                                    "description": "Ensure result set excludes posts assigned to specific authors.",
                                    "disabled": false
                                },
                                {
                                    "key": "before",
                                    "value": "consequatur",
                                    "description": "Limit response to posts published before a given ISO8601 compliant date.",
                                    "disabled": false
                                },
                                {
                                    "key": "exclude",
                                    "value": "consequatur",
                                    "description": "Ensure result set excludes specific IDs.",
                                    "disabled": false
                                },
                                {
                                    "key": "include",
                                    "value": "consequatur",
                                    "description": "Limit result set to specific IDs.",
                                    "disabled": false
                                },
                                {
                                    "key": "order",
                                    "value": "consequatur",
                                    "description": "Order sort attribute ascending or descending. Default: desc .One of: asc, desc",
                                    "disabled": false
                                },
                                {
                                    "key": "order_by",
                                    "value": "consequatur",
                                    "description": "Sort collection by object attribute. Default: updated_at. One of: author, created_at, updated_at, id,  slug, title",
                                    "disabled": false
                                },
                                {
                                    "key": "categories",
                                    "value": "consequatur",
                                    "description": "Limit result set to all items that have the specified term assigned in the categories taxonomy.",
                                    "disabled": false
                                },
                                {
                                    "key": "categories_exclude",
                                    "value": "consequatur",
                                    "description": "Limit result set to all items except those that have the specified term assigned in the categories taxonomy.",
                                    "disabled": false
                                },
                                {
                                    "key": "tags",
                                    "value": "consequatur",
                                    "description": "Limit result set to all items that have the specified term assigned in the tags taxonomy.",
                                    "disabled": false
                                },
                                {
                                    "key": "tags_exclude",
                                    "value": "consequatur",
                                    "description": "Limit result set to all items except those that have the specified term assigned in the tags taxonomy.",
                                    "disabled": false
                                },
                                {
                                    "key": "featured",
                                    "value": "consequatur",
                                    "description": "Limit result set to items that are sticky.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/posts\/filters?page=17&per_page=17&search=consequatur&after=consequatur&author=consequatur&author_exclude=consequatur&before=consequatur&exclude=consequatur&include=consequatur&order=consequatur&order_by=consequatur&categories=consequatur&categories_exclude=consequatur&tags=consequatur&tags_exclude=consequatur&featured=consequatur"
                        },
                        "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": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/posts\\\/filters?page=1\",\"last\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/posts\\\/filters?page=1\",\"prev\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/posts\\\/filters?page=16\",\"next\":null},\"meta\":{\"current_page\":17,\"from\":null,\"last_page\":1,\"links\":[{\"url\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/posts\\\/filters?page=16\",\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/posts\\\/filters?page=1\",\"label\":\"1\",\"active\":false},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/posts\\\/filters\",\"per_page\":17,\"to\":null,\"total\":0},\"error\":false,\"message\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get post by slug",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/posts\/:slug",
                            "query": [
                                {
                                    "key": "slug",
                                    "value": "consequatur",
                                    "description": "Find by slug of post.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/posts\/:slug?slug=consequatur",
                            "variable": [
                                {
                                    "id": "slug",
                                    "key": "slug",
                                    "value": "consequatur",
                                    "description": "The slug of the post."
                                }
                            ]
                        },
                        "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": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"Not found\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Device Tokens",
            "description": "",
            "item": [
                {
                    "name": "Register or update device token",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/device-tokens",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/device-tokens"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"token\":\"consequatur\",\"platform\":\"consequatur\",\"app_version\":\"consequatur\",\"device_id\":\"consequatur\",\"user_type\":\"consequatur\",\"user_id\":17}"
                        },
                        "description": "Register a new device token or update an existing one for push notifications.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Get user's device tokens",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/device-tokens",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/device-tokens"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve all device tokens for the authenticated user.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update device token",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/device-tokens\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/device-tokens\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1562",
                                    "description": "The ID of the device token."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"platform\":\"consequatur\",\"app_version\":\"consequatur\",\"device_id\":\"consequatur\"}"
                        },
                        "description": "Update an existing device token.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete device token by token value",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/device-tokens\/by-token",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/device-tokens\/by-token"
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"token\":\"consequatur\"}"
                        },
                        "description": "Delete a device token using the token value.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete device token",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/device-tokens\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/device-tokens\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1562",
                                    "description": "The ID of the device token."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Delete a device token to stop receiving push notifications.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Deactivate device token",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/device-tokens\/:id\/deactivate",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/device-tokens\/:id\/deactivate",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1562",
                                    "description": "The ID of the device token."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Deactivate a device token without deleting it.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Endpoints",
            "description": "",
            "item": [
                {
                    "name": "POST api\/v1\/auth\/apple",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/apple",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/apple"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/auth\/google",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/google",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/google"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/auth\/facebook",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/facebook",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/facebook"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/auth\/x",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/x",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/x"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Languages",
            "description": "",
            "item": [
                {
                    "name": "Get list of available languages",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/languages",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/languages"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"error\": false,\n  \"data\": [\n    {\n      \"lang_id\": 1,\n      \"lang_name\": \"English\",\n      \"lang_locale\": \"en\",\n      \"lang_code\": \"en_US\",\n      \"lang_flag\": \"<svg ...>\",\n      \"lang_is_default\": true,\n      \"lang_is_rtl\": false,\n      \"lang_order\": 0\n    },\n    {\n      \"lang_id\": 2,\n      \"lang_name\": \"Vietnamese\",\n      \"lang_locale\": \"vi\",\n      \"lang_code\": \"vi\",\n      \"lang_flag\": \"<svg ...>\",\n      \"lang_is_default\": false,\n      \"lang_is_rtl\": false,\n      \"lang_order\": 1\n    }\n  ],\n  \"message\": null\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get current language",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/languages\/current",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/languages\/current"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"error\": false,\n  \"data\": {\n    \"lang_id\": 1,\n    \"lang_name\": \"English\",\n    \"lang_locale\": \"en\",\n    \"lang_code\": \"en_US\",\n    \"lang_flag\": \"us\",\n    \"lang_is_default\": true,\n    \"lang_is_rtl\": false,\n    \"lang_order\": 0\n  },\n  \"message\": null\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Notifications",
            "description": "",
            "item": [
                {
                    "name": "Get user notifications",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/notifications",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination.",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "20",
                                    "description": "Number of notifications per page (max 50).",
                                    "disabled": false
                                },
                                {
                                    "key": "unread_only",
                                    "value": "",
                                    "description": "Filter to show only unread notifications.",
                                    "disabled": true
                                },
                                {
                                    "key": "type",
                                    "value": "general",
                                    "description": "Filter by notification type.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/notifications?page=1&per_page=20&unread_only=&type=general"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve notifications for the authenticated user.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get notification statistics",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/notifications\/stats",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/notifications\/stats"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get notification statistics for the authenticated user.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Mark all notifications as read",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/notifications\/mark-all-read",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/notifications\/mark-all-read"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Mark all notifications as read for the authenticated user.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Mark notification as read",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/notifications\/:id\/read",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/notifications\/:id\/read",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1562",
                                    "description": "The ID of the notification."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Mark a specific notification as read for the authenticated user.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Mark notification as clicked",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/notifications\/:id\/clicked",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/notifications\/:id\/clicked",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1562",
                                    "description": "The ID of the notification."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Mark a notification as clicked when user taps on it.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete notification",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/notifications\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/notifications\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1562",
                                    "description": "The ID of the notification."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Delete a notification from user's list.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Page",
            "description": "",
            "item": [
                {
                    "name": "List pages",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/pages",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/pages"
                        },
                        "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": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[{\"id\":1,\"name\":\"Homepage 1\",\"slug\":\"homepage-1\",\"description\":null,\"image\":null,\"template\":\"full-width\",\"status\":{\"value\":\"published\",\"label\":\"Published\"},\"created_at\":\"2025-06-29T03:29:52.000000Z\",\"updated_at\":\"2025-06-29T03:29:52.000000Z\"},{\"id\":2,\"name\":\"Homepage 2\",\"slug\":\"homepage-2\",\"description\":null,\"image\":null,\"template\":\"full-width\",\"status\":{\"value\":\"published\",\"label\":\"Published\"},\"created_at\":\"2025-06-29T03:29:52.000000Z\",\"updated_at\":\"2025-06-29T03:29:52.000000Z\"},{\"id\":3,\"name\":\"Homepage 3\",\"slug\":\"homepage-3\",\"description\":null,\"image\":null,\"template\":\"full-width\",\"status\":{\"value\":\"published\",\"label\":\"Published\"},\"created_at\":\"2025-06-29T03:29:52.000000Z\",\"updated_at\":\"2025-06-29T03:29:52.000000Z\"},{\"id\":4,\"name\":\"Homepage 4\",\"slug\":\"homepage-4\",\"description\":null,\"image\":null,\"template\":\"full-width\",\"status\":{\"value\":\"published\",\"label\":\"Published\"},\"created_at\":\"2025-06-29T03:29:52.000000Z\",\"updated_at\":\"2025-06-29T03:29:52.000000Z\"},{\"id\":5,\"name\":\"Homepage 5\",\"slug\":\"homepage-5\",\"description\":null,\"image\":null,\"template\":\"full-width\",\"status\":{\"value\":\"published\",\"label\":\"Published\"},\"created_at\":\"2025-06-29T03:29:52.000000Z\",\"updated_at\":\"2025-06-29T03:29:52.000000Z\"},{\"id\":6,\"name\":\"Blog\",\"slug\":\"blog\",\"description\":null,\"image\":null,\"template\":null,\"status\":{\"value\":\"published\",\"label\":\"Published\"},\"created_at\":\"2025-06-29T03:29:52.000000Z\",\"updated_at\":\"2025-06-29T03:29:52.000000Z\"},{\"id\":7,\"name\":\"Contact Us\",\"slug\":\"contact-us\",\"description\":null,\"image\":null,\"template\":null,\"status\":{\"value\":\"published\",\"label\":\"Published\"},\"created_at\":\"2025-06-29T03:29:52.000000Z\",\"updated_at\":\"2025-06-29T03:29:52.000000Z\"},{\"id\":8,\"name\":\"Our Services\",\"slug\":\"our-services\",\"description\":null,\"image\":null,\"template\":\"full-width\",\"status\":{\"value\":\"published\",\"label\":\"Published\"},\"created_at\":\"2025-06-29T03:29:52.000000Z\",\"updated_at\":\"2025-06-29T03:29:52.000000Z\"},{\"id\":9,\"name\":\"FAQs\",\"slug\":\"faqs\",\"description\":null,\"image\":null,\"template\":null,\"status\":{\"value\":\"published\",\"label\":\"Published\"},\"created_at\":\"2025-06-29T03:29:52.000000Z\",\"updated_at\":\"2025-06-29T03:29:52.000000Z\"},{\"id\":10,\"name\":\"About Us\",\"slug\":\"about-us\",\"description\":null,\"image\":null,\"template\":\"full-width\",\"status\":{\"value\":\"published\",\"label\":\"Published\"},\"created_at\":\"2025-06-29T03:29:52.000000Z\",\"updated_at\":\"2025-06-29T03:29:52.000000Z\"}],\"links\":{\"first\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/pages?page=1\",\"last\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/pages?page=2\",\"prev\":null,\"next\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/pages?page=2\"},\"meta\":{\"current_page\":1,\"from\":1,\"last_page\":2,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/pages?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/pages?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/pages?page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/pages\",\"per_page\":10,\"to\":10,\"total\":16},\"error\":false,\"message\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get page by ID",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/pages\/:id",
                            "query": [
                                {
                                    "key": "id",
                                    "value": "17",
                                    "description": "Find by ID of page.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/pages\/:id?id=17",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1562",
                                    "description": "The ID of the page."
                                }
                            ]
                        },
                        "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": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"Not found\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Profile",
            "description": "",
            "item": [
                {
                    "name": "Get the user profile information.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update profile",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me"
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"first_name\":\"vmqeopfuudtdsufvyvddqamniihfqcoynlazghdtqtqxbajwbpilpmufinllwloauydlsmsjur\",\"last_name\":\"yvojcybzvrbyickznkygloigmkwxphlvazjrcnfbaqywuxhgjjmzuxjubqouzswiwxtrkimfca\",\"name\":\"consequatur\",\"phone\":\"consequatur\",\"dob\":\"consequatur\",\"gender\":\"consequatur\",\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\",\"email\":\"qkunze@example.com\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Update Avatar",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/update\/avatar",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/update\/avatar"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "avatar",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Update password",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/update\/password",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/update\/password"
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"password\":\"O[2UZ5ij-e\\\/dl4m{o,\",\"old_password\":\"consequatur\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Get user settings",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/settings",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/settings"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update user settings",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/settings",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/settings"
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"biometric_enabled\":false,\"notification_enabled\":false,\"language\":\"consequatur\",\"currency\":\"consequatur\",\"theme\":\"consequatur\",\"timezone\":\"Europe\\\/Malta\"}"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Real Estate",
            "description": "",
            "item": [
                {
                    "name": "List categories",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/categories",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "17",
                                    "description": "Current page of the collection. Default: 1",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "17",
                                    "description": "Maximum number of items to be returned in result set. Default: 10",
                                    "disabled": false
                                },
                                {
                                    "key": "search",
                                    "value": "consequatur",
                                    "description": "Limit results to those matching a string.",
                                    "disabled": false
                                },
                                {
                                    "key": "parent_id",
                                    "value": "consequatur",
                                    "description": "Filter by parent category ID.",
                                    "disabled": false
                                },
                                {
                                    "key": "order",
                                    "value": "consequatur",
                                    "description": "Order sort attribute ascending or descending. Default: asc. One of: asc, desc",
                                    "disabled": false
                                },
                                {
                                    "key": "order_by",
                                    "value": "consequatur",
                                    "description": "Sort collection by object attribute. Default: order. One of: created_at, updated_at, name, order",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/categories?page=17&per_page=17&search=consequatur&parent_id=consequatur&order=consequatur&order_by=consequatur"
                        },
                        "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": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/categories?page=1\",\"last\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/categories?page=1\",\"prev\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/categories?page=16\",\"next\":null},\"meta\":{\"current_page\":17,\"from\":null,\"last_page\":1,\"links\":[{\"url\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/categories?page=16\",\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/categories?page=1\",\"label\":\"1\",\"active\":false},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/categories\",\"per_page\":17,\"to\":null,\"total\":6},\"error\":false,\"message\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get category filters",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/categories\/filters",
                            "query": [
                                {
                                    "key": "parent_id",
                                    "value": "consequatur",
                                    "description": "Filter by parent category ID.",
                                    "disabled": false
                                },
                                {
                                    "key": "order",
                                    "value": "consequatur",
                                    "description": "Order sort attribute ascending or descending. Default: asc. One of: asc, desc",
                                    "disabled": false
                                },
                                {
                                    "key": "order_by",
                                    "value": "consequatur",
                                    "description": "Sort collection by object attribute. Default: order. One of: created_at, updated_at, name, order",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/categories\/filters?parent_id=consequatur&order=consequatur&order_by=consequatur"
                        },
                        "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": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[{\"id\":1,\"name\":\"Apartment\",\"description\":null,\"status\":{\"value\":\"published\",\"label\":\"Published\"},\"order\":0,\"is_default\":1,\"parent_id\":0,\"created_at\":\"2025-06-29T03:29:37.000000Z\",\"updated_at\":\"2025-06-29T03:29:37.000000Z\",\"url\":\"http:\\\/\\\/homzen.test\\\/property-category\\\/apartment\",\"slug\":\"apartment\"},{\"id\":2,\"name\":\"Villa\",\"description\":null,\"status\":{\"value\":\"published\",\"label\":\"Published\"},\"order\":1,\"is_default\":0,\"parent_id\":0,\"created_at\":\"2025-06-29T03:29:37.000000Z\",\"updated_at\":\"2025-06-29T03:29:37.000000Z\",\"url\":\"http:\\\/\\\/homzen.test\\\/property-category\\\/villa\",\"slug\":\"villa\"},{\"id\":3,\"name\":\"Condo\",\"description\":null,\"status\":{\"value\":\"published\",\"label\":\"Published\"},\"order\":2,\"is_default\":0,\"parent_id\":0,\"created_at\":\"2025-06-29T03:29:37.000000Z\",\"updated_at\":\"2025-06-29T03:29:37.000000Z\",\"url\":\"http:\\\/\\\/homzen.test\\\/property-category\\\/condo\",\"slug\":\"condo\"},{\"id\":4,\"name\":\"House\",\"description\":null,\"status\":{\"value\":\"published\",\"label\":\"Published\"},\"order\":3,\"is_default\":0,\"parent_id\":0,\"created_at\":\"2025-06-29T03:29:37.000000Z\",\"updated_at\":\"2025-06-29T03:29:37.000000Z\",\"url\":\"http:\\\/\\\/homzen.test\\\/property-category\\\/house\",\"slug\":\"house\"},{\"id\":5,\"name\":\"Land\",\"description\":null,\"status\":{\"value\":\"published\",\"label\":\"Published\"},\"order\":4,\"is_default\":0,\"parent_id\":0,\"created_at\":\"2025-06-29T03:29:37.000000Z\",\"updated_at\":\"2025-06-29T03:29:37.000000Z\",\"url\":\"http:\\\/\\\/homzen.test\\\/property-category\\\/land\",\"slug\":\"land\"},{\"id\":6,\"name\":\"Commercial property\",\"description\":null,\"status\":{\"value\":\"published\",\"label\":\"Published\"},\"order\":5,\"is_default\":0,\"parent_id\":0,\"created_at\":\"2025-06-29T03:29:37.000000Z\",\"updated_at\":\"2025-06-29T03:29:37.000000Z\",\"url\":\"http:\\\/\\\/homzen.test\\\/property-category\\\/commercial-property\",\"slug\":\"commercial-property\"}],\"error\":false,\"message\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get category by slug",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/categories\/:slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/categories\/:slug",
                            "variable": [
                                {
                                    "id": "slug",
                                    "key": "slug",
                                    "value": "consequatur",
                                    "description": "The slug of the 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": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"Category not found\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List properties",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/properties",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "17",
                                    "description": "Current page of the collection. Default: 1",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "17",
                                    "description": "Maximum number of items to be returned in result set. Default: 10",
                                    "disabled": false
                                },
                                {
                                    "key": "search",
                                    "value": "consequatur",
                                    "description": "Limit results to those matching a string.",
                                    "disabled": false
                                },
                                {
                                    "key": "type",
                                    "value": "consequatur",
                                    "description": "Filter by property type (sale, rent).",
                                    "disabled": false
                                },
                                {
                                    "key": "city_id",
                                    "value": "consequatur",
                                    "description": "Filter by city ID.",
                                    "disabled": false
                                },
                                {
                                    "key": "state_id",
                                    "value": "consequatur",
                                    "description": "Filter by state ID.",
                                    "disabled": false
                                },
                                {
                                    "key": "country_id",
                                    "value": "17",
                                    "description": "Filter by country ID.",
                                    "disabled": false
                                },
                                {
                                    "key": "category_id",
                                    "value": "consequatur",
                                    "description": "Filter by category ID.",
                                    "disabled": false
                                },
                                {
                                    "key": "project_id",
                                    "value": "consequatur",
                                    "description": "Filter by project ID.",
                                    "disabled": false
                                },
                                {
                                    "key": "min_price",
                                    "value": "consequatur",
                                    "description": "Filter by minimum price.",
                                    "disabled": false
                                },
                                {
                                    "key": "max_price",
                                    "value": "consequatur",
                                    "description": "Filter by maximum price.",
                                    "disabled": false
                                },
                                {
                                    "key": "min_square",
                                    "value": "consequatur",
                                    "description": "Filter by minimum square footage.",
                                    "disabled": false
                                },
                                {
                                    "key": "max_square",
                                    "value": "consequatur",
                                    "description": "Filter by maximum square footage.",
                                    "disabled": false
                                },
                                {
                                    "key": "number_bedroom",
                                    "value": "17",
                                    "description": "Filter by number of bedrooms.",
                                    "disabled": false
                                },
                                {
                                    "key": "number_bathroom",
                                    "value": "17",
                                    "description": "Filter by number of bathrooms.",
                                    "disabled": false
                                },
                                {
                                    "key": "number_floor",
                                    "value": "17",
                                    "description": "Filter by number of floors.",
                                    "disabled": false
                                },
                                {
                                    "key": "features",
                                    "value": "consequatur",
                                    "description": "Filter by feature IDs (comma-separated).",
                                    "disabled": false
                                },
                                {
                                    "key": "facilities",
                                    "value": "consequatur",
                                    "description": "Filter by facility IDs (comma-separated).",
                                    "disabled": false
                                },
                                {
                                    "key": "is_featured",
                                    "value": "consequatur",
                                    "description": "Filter by featured properties (1 or 0).",
                                    "disabled": false
                                },
                                {
                                    "key": "order",
                                    "value": "consequatur",
                                    "description": "Order sort attribute ascending or descending. Default: desc. One of: asc, desc",
                                    "disabled": false
                                },
                                {
                                    "key": "order_by",
                                    "value": "consequatur",
                                    "description": "Sort collection by object attribute. Default: created_at. One of: created_at, updated_at, name, price",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/properties?page=17&per_page=17&search=consequatur&type=consequatur&city_id=consequatur&state_id=consequatur&country_id=17&category_id=consequatur&project_id=consequatur&min_price=consequatur&max_price=consequatur&min_square=consequatur&max_square=consequatur&number_bedroom=17&number_bathroom=17&number_floor=17&features=consequatur&facilities=consequatur&is_featured=consequatur&order=consequatur&order_by=consequatur"
                        },
                        "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": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/properties?page=1\",\"last\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/properties?page=4\",\"prev\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/properties?page=16\",\"next\":null},\"meta\":{\"current_page\":17,\"from\":null,\"last_page\":4,\"links\":[{\"url\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/properties?page=16\",\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/properties?page=1\",\"label\":\"1\",\"active\":false},{\"url\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/properties?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/properties?page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/properties?page=4\",\"label\":\"4\",\"active\":false},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/properties\",\"per_page\":17,\"to\":null,\"total\":61},\"error\":false,\"message\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Search properties",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/properties\/search",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/properties\/search"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"q\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 500,
                            "body": "{\n    \"message\": \"Server Error\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get property filters",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/properties\/filters",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "17",
                                    "description": "Current page of the collection. Default: 1",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "17",
                                    "description": "Maximum number of items to be returned in result set. Default: 10",
                                    "disabled": false
                                },
                                {
                                    "key": "search",
                                    "value": "consequatur",
                                    "description": "Limit results to those matching a string.",
                                    "disabled": false
                                },
                                {
                                    "key": "type",
                                    "value": "consequatur",
                                    "description": "Filter by property type (sale, rent).",
                                    "disabled": false
                                },
                                {
                                    "key": "city_id",
                                    "value": "consequatur",
                                    "description": "Filter by city ID.",
                                    "disabled": false
                                },
                                {
                                    "key": "state_id",
                                    "value": "consequatur",
                                    "description": "Filter by state ID.",
                                    "disabled": false
                                },
                                {
                                    "key": "country_id",
                                    "value": "17",
                                    "description": "Filter by country ID.",
                                    "disabled": false
                                },
                                {
                                    "key": "category_id",
                                    "value": "consequatur",
                                    "description": "Filter by category ID.",
                                    "disabled": false
                                },
                                {
                                    "key": "project_id",
                                    "value": "consequatur",
                                    "description": "Filter by project ID.",
                                    "disabled": false
                                },
                                {
                                    "key": "min_price",
                                    "value": "consequatur",
                                    "description": "Filter by minimum price.",
                                    "disabled": false
                                },
                                {
                                    "key": "max_price",
                                    "value": "consequatur",
                                    "description": "Filter by maximum price.",
                                    "disabled": false
                                },
                                {
                                    "key": "min_square",
                                    "value": "consequatur",
                                    "description": "Filter by minimum square footage.",
                                    "disabled": false
                                },
                                {
                                    "key": "max_square",
                                    "value": "consequatur",
                                    "description": "Filter by maximum square footage.",
                                    "disabled": false
                                },
                                {
                                    "key": "number_bedroom",
                                    "value": "17",
                                    "description": "Filter by number of bedrooms.",
                                    "disabled": false
                                },
                                {
                                    "key": "number_bathroom",
                                    "value": "17",
                                    "description": "Filter by number of bathrooms.",
                                    "disabled": false
                                },
                                {
                                    "key": "number_floor",
                                    "value": "17",
                                    "description": "Filter by number of floors.",
                                    "disabled": false
                                },
                                {
                                    "key": "features",
                                    "value": "consequatur",
                                    "description": "Filter by feature IDs (comma-separated).",
                                    "disabled": false
                                },
                                {
                                    "key": "facilities",
                                    "value": "consequatur",
                                    "description": "Filter by facility IDs (comma-separated).",
                                    "disabled": false
                                },
                                {
                                    "key": "is_featured",
                                    "value": "consequatur",
                                    "description": "Filter by featured properties (1 or 0).",
                                    "disabled": false
                                },
                                {
                                    "key": "order",
                                    "value": "consequatur",
                                    "description": "Order sort attribute ascending or descending. Default: desc. One of: asc, desc",
                                    "disabled": false
                                },
                                {
                                    "key": "order_by",
                                    "value": "consequatur",
                                    "description": "Sort collection by object attribute. Default: created_at. One of: created_at, updated_at, name, price",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/properties\/filters?page=17&per_page=17&search=consequatur&type=consequatur&city_id=consequatur&state_id=consequatur&country_id=17&category_id=consequatur&project_id=consequatur&min_price=consequatur&max_price=consequatur&min_square=consequatur&max_square=consequatur&number_bedroom=17&number_bathroom=17&number_floor=17&features=consequatur&facilities=consequatur&is_featured=consequatur&order=consequatur&order_by=consequatur"
                        },
                        "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": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/properties\\\/filters?page=1\",\"last\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/properties\\\/filters?page=4\",\"prev\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/properties\\\/filters?page=16\",\"next\":null},\"meta\":{\"current_page\":17,\"from\":null,\"last_page\":4,\"links\":[{\"url\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/properties\\\/filters?page=16\",\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/properties\\\/filters?page=1\",\"label\":\"1\",\"active\":false},{\"url\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/properties\\\/filters?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/properties\\\/filters?page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/properties\\\/filters?page=4\",\"label\":\"4\",\"active\":false},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/properties\\\/filters\",\"per_page\":17,\"to\":null,\"total\":61},\"error\":false,\"message\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get property by slug",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/properties\/:slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/properties\/:slug",
                            "variable": [
                                {
                                    "id": "slug",
                                    "key": "slug",
                                    "value": "consequatur",
                                    "description": "The slug of the property."
                                }
                            ]
                        },
                        "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": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"Property not found\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get property by ID",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/properties\/id\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/properties\/id\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "17",
                                    "description": "The ID of the property."
                                }
                            ]
                        },
                        "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": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"Property not found\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List projects",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/projects",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "17",
                                    "description": "Current page of the collection. Default: 1",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "17",
                                    "description": "Maximum number of items to be returned in result set. Default: 10",
                                    "disabled": false
                                },
                                {
                                    "key": "search",
                                    "value": "consequatur",
                                    "description": "Limit results to those matching a string.",
                                    "disabled": false
                                },
                                {
                                    "key": "city_id",
                                    "value": "consequatur",
                                    "description": "Filter by city ID.",
                                    "disabled": false
                                },
                                {
                                    "key": "state_id",
                                    "value": "consequatur",
                                    "description": "Filter by state ID.",
                                    "disabled": false
                                },
                                {
                                    "key": "country_id",
                                    "value": "17",
                                    "description": "Filter by country ID.",
                                    "disabled": false
                                },
                                {
                                    "key": "category_id",
                                    "value": "consequatur",
                                    "description": "Filter by category ID.",
                                    "disabled": false
                                },
                                {
                                    "key": "investor_id",
                                    "value": "consequatur",
                                    "description": "Filter by investor ID.",
                                    "disabled": false
                                },
                                {
                                    "key": "min_price",
                                    "value": "consequatur",
                                    "description": "Filter by minimum price.",
                                    "disabled": false
                                },
                                {
                                    "key": "max_price",
                                    "value": "consequatur",
                                    "description": "Filter by maximum price.",
                                    "disabled": false
                                },
                                {
                                    "key": "is_featured",
                                    "value": "consequatur",
                                    "description": "Filter by featured projects (1 or 0).",
                                    "disabled": false
                                },
                                {
                                    "key": "order",
                                    "value": "consequatur",
                                    "description": "Order sort attribute ascending or descending. Default: desc. One of: asc, desc",
                                    "disabled": false
                                },
                                {
                                    "key": "order_by",
                                    "value": "consequatur",
                                    "description": "Sort collection by object attribute. Default: created_at. One of: created_at, updated_at, name, price_from",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/projects?page=17&per_page=17&search=consequatur&city_id=consequatur&state_id=consequatur&country_id=17&category_id=consequatur&investor_id=consequatur&min_price=consequatur&max_price=consequatur&is_featured=consequatur&order=consequatur&order_by=consequatur"
                        },
                        "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": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/projects?page=1\",\"last\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/projects?page=2\",\"prev\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/projects?page=16\",\"next\":null},\"meta\":{\"current_page\":17,\"from\":null,\"last_page\":2,\"links\":[{\"url\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/projects?page=16\",\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/projects?page=1\",\"label\":\"1\",\"active\":false},{\"url\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/projects?page=2\",\"label\":\"2\",\"active\":false},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/projects\",\"per_page\":17,\"to\":null,\"total\":18},\"error\":false,\"message\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Search projects",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/projects\/search",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/projects\/search"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"q\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 500,
                            "body": "{\n    \"message\": \"Server Error\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get project filters",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/projects\/filters",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "17",
                                    "description": "Current page of the collection. Default: 1",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "17",
                                    "description": "Maximum number of items to be returned in result set. Default: 10",
                                    "disabled": false
                                },
                                {
                                    "key": "search",
                                    "value": "consequatur",
                                    "description": "Limit results to those matching a string.",
                                    "disabled": false
                                },
                                {
                                    "key": "city_id",
                                    "value": "consequatur",
                                    "description": "Filter by city ID.",
                                    "disabled": false
                                },
                                {
                                    "key": "state_id",
                                    "value": "consequatur",
                                    "description": "Filter by state ID.",
                                    "disabled": false
                                },
                                {
                                    "key": "country_id",
                                    "value": "17",
                                    "description": "Filter by country ID.",
                                    "disabled": false
                                },
                                {
                                    "key": "category_id",
                                    "value": "consequatur",
                                    "description": "Filter by category ID.",
                                    "disabled": false
                                },
                                {
                                    "key": "investor_id",
                                    "value": "consequatur",
                                    "description": "Filter by investor ID.",
                                    "disabled": false
                                },
                                {
                                    "key": "min_price",
                                    "value": "consequatur",
                                    "description": "Filter by minimum price.",
                                    "disabled": false
                                },
                                {
                                    "key": "max_price",
                                    "value": "consequatur",
                                    "description": "Filter by maximum price.",
                                    "disabled": false
                                },
                                {
                                    "key": "is_featured",
                                    "value": "consequatur",
                                    "description": "Filter by featured projects (1 or 0).",
                                    "disabled": false
                                },
                                {
                                    "key": "order",
                                    "value": "consequatur",
                                    "description": "Order sort attribute ascending or descending. Default: desc. One of: asc, desc",
                                    "disabled": false
                                },
                                {
                                    "key": "order_by",
                                    "value": "consequatur",
                                    "description": "Sort collection by object attribute. Default: created_at. One of: created_at, updated_at, name, price_from",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/projects\/filters?page=17&per_page=17&search=consequatur&city_id=consequatur&state_id=consequatur&country_id=17&category_id=consequatur&investor_id=consequatur&min_price=consequatur&max_price=consequatur&is_featured=consequatur&order=consequatur&order_by=consequatur"
                        },
                        "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": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/projects\\\/filters?page=1\",\"last\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/projects\\\/filters?page=2\",\"prev\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/projects\\\/filters?page=16\",\"next\":null},\"meta\":{\"current_page\":17,\"from\":null,\"last_page\":2,\"links\":[{\"url\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/projects\\\/filters?page=16\",\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/projects\\\/filters?page=1\",\"label\":\"1\",\"active\":false},{\"url\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/projects\\\/filters?page=2\",\"label\":\"2\",\"active\":false},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/projects\\\/filters\",\"per_page\":17,\"to\":null,\"total\":18},\"error\":false,\"message\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get project by slug",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/projects\/:slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/projects\/:slug",
                            "variable": [
                                {
                                    "id": "slug",
                                    "key": "slug",
                                    "value": "consequatur",
                                    "description": "The slug of the project."
                                }
                            ]
                        },
                        "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": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"Project not found\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get project by ID",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/projects\/id\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/projects\/id\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "17",
                                    "description": "The ID of the project."
                                }
                            ]
                        },
                        "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": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"Project not found\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get properties of a project",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/projects\/id\/:id\/properties",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "17",
                                    "description": "Current page of the collection. Default: 1",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "17",
                                    "description": "Maximum number of items to be returned in result set. Default: 10",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/projects\/id\/:id\/properties?page=17&per_page=17",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "17",
                                    "description": "The ID of the project."
                                }
                            ]
                        },
                        "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": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"Project not found\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get category by ID",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/categories\/id\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/categories\/id\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "17",
                                    "description": "The ID of the 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": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"Category not found\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get properties of a category",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/categories\/id\/:id\/properties",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "17",
                                    "description": "Current page of the collection. Default: 1",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "17",
                                    "description": "Maximum number of items to be returned in result set. Default: 10",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/categories\/id\/:id\/properties?page=17&per_page=17",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "17",
                                    "description": "The ID of the 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": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"Category not found\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List features",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/features",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "17",
                                    "description": "Current page of the collection. Default: 1",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "17",
                                    "description": "Maximum number of items to be returned in result set. Default: 10",
                                    "disabled": false
                                },
                                {
                                    "key": "search",
                                    "value": "consequatur",
                                    "description": "Limit results to those matching a string.",
                                    "disabled": false
                                },
                                {
                                    "key": "order",
                                    "value": "consequatur",
                                    "description": "Order sort attribute ascending or descending. Default: asc. One of: asc, desc",
                                    "disabled": false
                                },
                                {
                                    "key": "order_by",
                                    "value": "consequatur",
                                    "description": "Sort collection by object attribute. Default: name. One of: created_at, updated_at, name",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/features?page=17&per_page=17&search=consequatur&order=consequatur&order_by=consequatur"
                        },
                        "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": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/features?page=1\",\"last\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/features?page=1\",\"prev\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/features?page=16\",\"next\":null},\"meta\":{\"current_page\":17,\"from\":null,\"last_page\":1,\"links\":[{\"url\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/features?page=16\",\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/features?page=1\",\"label\":\"1\",\"active\":false},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/features\",\"per_page\":17,\"to\":null,\"total\":12},\"error\":false,\"message\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get all features (without pagination)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/features\/all",
                            "query": [
                                {
                                    "key": "search",
                                    "value": "consequatur",
                                    "description": "Limit results to those matching a string.",
                                    "disabled": false
                                },
                                {
                                    "key": "order",
                                    "value": "consequatur",
                                    "description": "Order sort attribute ascending or descending. Default: asc. One of: asc, desc",
                                    "disabled": false
                                },
                                {
                                    "key": "order_by",
                                    "value": "consequatur",
                                    "description": "Sort collection by object attribute. Default: name. One of: created_at, updated_at, name",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/features\/all?search=consequatur&order=consequatur&order_by=consequatur"
                        },
                        "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": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[{\"id\":1,\"name\":\"Wifi\",\"icon\":\"ti ti-wifi\",\"status\":\"published\",\"created_at\":null,\"updated_at\":null},{\"id\":2,\"name\":\"Parking\",\"icon\":\"ti ti-parking\",\"status\":\"published\",\"created_at\":null,\"updated_at\":null},{\"id\":3,\"name\":\"Swimming pool\",\"icon\":\"ti ti-pool\",\"status\":\"published\",\"created_at\":null,\"updated_at\":null},{\"id\":4,\"name\":\"Balcony\",\"icon\":\"ti ti-building-skyscraper\",\"status\":\"published\",\"created_at\":null,\"updated_at\":null},{\"id\":5,\"name\":\"Garden\",\"icon\":\"ti ti-trees\",\"status\":\"published\",\"created_at\":null,\"updated_at\":null},{\"id\":6,\"name\":\"Security\",\"icon\":\"ti ti-shield-lock\",\"status\":\"published\",\"created_at\":null,\"updated_at\":null},{\"id\":7,\"name\":\"Fitness center\",\"icon\":\"ti ti-stretching\",\"status\":\"published\",\"created_at\":null,\"updated_at\":null},{\"id\":8,\"name\":\"Air Conditioning\",\"icon\":\"ti ti-air-conditioning\",\"status\":\"published\",\"created_at\":null,\"updated_at\":null},{\"id\":9,\"name\":\"Central Heating\",\"icon\":\"ti ti-thermometer\",\"status\":\"published\",\"created_at\":null,\"updated_at\":null},{\"id\":10,\"name\":\"Laundry Room\",\"icon\":\"ti ti-wash-machine\",\"status\":\"published\",\"created_at\":null,\"updated_at\":null},{\"id\":11,\"name\":\"Pets Allow\",\"icon\":\"ti ti-paw\",\"status\":\"published\",\"created_at\":null,\"updated_at\":null},{\"id\":12,\"name\":\"Spa & Massage\",\"icon\":\"ti ti-bath\",\"status\":\"published\",\"created_at\":null,\"updated_at\":null}],\"error\":false,\"message\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get feature by ID",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/features\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/features\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "17",
                                    "description": "The ID of the feature."
                                }
                            ]
                        },
                        "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": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"Feature not found\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List facilities",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/facilities",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "17",
                                    "description": "Current page of the collection. Default: 1",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "17",
                                    "description": "Maximum number of items to be returned in result set. Default: 10",
                                    "disabled": false
                                },
                                {
                                    "key": "search",
                                    "value": "consequatur",
                                    "description": "Limit results to those matching a string.",
                                    "disabled": false
                                },
                                {
                                    "key": "order",
                                    "value": "consequatur",
                                    "description": "Order sort attribute ascending or descending. Default: asc. One of: asc, desc",
                                    "disabled": false
                                },
                                {
                                    "key": "order_by",
                                    "value": "consequatur",
                                    "description": "Sort collection by object attribute. Default: name. One of: created_at, updated_at, name",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/facilities?page=17&per_page=17&search=consequatur&order=consequatur&order_by=consequatur"
                        },
                        "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": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/facilities?page=1\",\"last\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/facilities?page=1\",\"prev\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/facilities?page=16\",\"next\":null},\"meta\":{\"current_page\":17,\"from\":null,\"last_page\":1,\"links\":[{\"url\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/facilities?page=16\",\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/facilities?page=1\",\"label\":\"1\",\"active\":false},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/facilities\",\"per_page\":17,\"to\":null,\"total\":11},\"error\":false,\"message\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get all facilities (without pagination)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/facilities\/all",
                            "query": [
                                {
                                    "key": "search",
                                    "value": "consequatur",
                                    "description": "Limit results to those matching a string.",
                                    "disabled": false
                                },
                                {
                                    "key": "order",
                                    "value": "consequatur",
                                    "description": "Order sort attribute ascending or descending. Default: asc. One of: asc, desc",
                                    "disabled": false
                                },
                                {
                                    "key": "order_by",
                                    "value": "consequatur",
                                    "description": "Sort collection by object attribute. Default: name. One of: created_at, updated_at, name",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/facilities\/all?search=consequatur&order=consequatur&order_by=consequatur"
                        },
                        "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": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[{\"id\":1,\"name\":\"Hospital\",\"icon\":\"ti ti-hospital\",\"status\":{\"value\":\"published\",\"label\":\"Published\"},\"created_at\":null,\"updated_at\":null},{\"id\":2,\"name\":\"Super Market\",\"icon\":\"ti ti-shopping-cart\",\"status\":{\"value\":\"published\",\"label\":\"Published\"},\"created_at\":null,\"updated_at\":null},{\"id\":3,\"name\":\"School\",\"icon\":\"ti ti-school\",\"status\":{\"value\":\"published\",\"label\":\"Published\"},\"created_at\":null,\"updated_at\":null},{\"id\":4,\"name\":\"Entertainment\",\"icon\":\"ti ti-movie\",\"status\":{\"value\":\"published\",\"label\":\"Published\"},\"created_at\":null,\"updated_at\":null},{\"id\":5,\"name\":\"Pharmacy\",\"icon\":\"ti ti-pill\",\"status\":{\"value\":\"published\",\"label\":\"Published\"},\"created_at\":null,\"updated_at\":null},{\"id\":6,\"name\":\"Airport\",\"icon\":\"ti ti-plane-departure\",\"status\":{\"value\":\"published\",\"label\":\"Published\"},\"created_at\":null,\"updated_at\":null},{\"id\":7,\"name\":\"Railways\",\"icon\":\"ti ti-train\",\"status\":{\"value\":\"published\",\"label\":\"Published\"},\"created_at\":null,\"updated_at\":null},{\"id\":8,\"name\":\"Bus Stop\",\"icon\":\"ti ti-bus\",\"status\":{\"value\":\"published\",\"label\":\"Published\"},\"created_at\":null,\"updated_at\":null},{\"id\":9,\"name\":\"Beach\",\"icon\":\"ti ti-beach\",\"status\":{\"value\":\"published\",\"label\":\"Published\"},\"created_at\":null,\"updated_at\":null},{\"id\":10,\"name\":\"Mall\",\"icon\":\"ti ti-shopping-cart\",\"status\":{\"value\":\"published\",\"label\":\"Published\"},\"created_at\":null,\"updated_at\":null},{\"id\":11,\"name\":\"Bank\",\"icon\":\"ti ti-building-bank\",\"status\":{\"value\":\"published\",\"label\":\"Published\"},\"created_at\":null,\"updated_at\":null}],\"error\":false,\"message\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get facility by ID",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/facilities\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/facilities\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "17",
                                    "description": "The ID of the facility."
                                }
                            ]
                        },
                        "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": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"Facility not found\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List agents\/accounts",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/agents",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "17",
                                    "description": "Current page of the collection. Default: 1",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "17",
                                    "description": "Maximum number of items to be returned in result set. Default: 10",
                                    "disabled": false
                                },
                                {
                                    "key": "search",
                                    "value": "consequatur",
                                    "description": "Limit results to those matching a string.",
                                    "disabled": false
                                },
                                {
                                    "key": "is_featured",
                                    "value": "consequatur",
                                    "description": "Filter by featured agents (1 or 0).",
                                    "disabled": false
                                },
                                {
                                    "key": "order",
                                    "value": "consequatur",
                                    "description": "Order sort attribute ascending or descending. Default: desc. One of: asc, desc",
                                    "disabled": false
                                },
                                {
                                    "key": "order_by",
                                    "value": "consequatur",
                                    "description": "Sort collection by object attribute. Default: created_at. One of: created_at, updated_at, first_name, last_name",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/agents?page=17&per_page=17&search=consequatur&is_featured=consequatur&order=consequatur&order_by=consequatur"
                        },
                        "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": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/agents?page=1\",\"last\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/agents?page=1\",\"prev\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/agents?page=16\",\"next\":null},\"meta\":{\"current_page\":17,\"from\":null,\"last_page\":1,\"links\":[{\"url\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/agents?page=16\",\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/agents?page=1\",\"label\":\"1\",\"active\":false},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\\/\\\/homzen.test\\\/api\\\/v1\\\/agents\",\"per_page\":17,\"to\":null,\"total\":2},\"error\":false,\"message\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get account by ID",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/agents\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/agents\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "17",
                                    "description": "The ID of the account."
                                }
                            ]
                        },
                        "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": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"Account not found\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get properties of an account",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/agents\/:id\/properties",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "17",
                                    "description": "Current page of the collection. Default: 1",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "17",
                                    "description": "Maximum number of items to be returned in result set. Default: 10",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/agents\/:id\/properties?page=17&per_page=17",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "17",
                                    "description": "The ID of the account."
                                }
                            ]
                        },
                        "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": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"Account not found\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get projects of an account",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/agents\/:id\/projects",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "17",
                                    "description": "Current page of the collection. Default: 1",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "17",
                                    "description": "Maximum number of items to be returned in result set. Default: 10",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/agents\/:id\/projects?page=17&per_page=17",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "17",
                                    "description": "The ID of the account."
                                }
                            ]
                        },
                        "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": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"Account not found\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List reviews for a property",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/properties\/:property_id\/reviews",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "17",
                                    "description": "Current page of the collection. Default: 1",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "17",
                                    "description": "Maximum number of items to be returned in result set. Default: 10",
                                    "disabled": false
                                },
                                {
                                    "key": "order",
                                    "value": "consequatur",
                                    "description": "Order sort attribute ascending or descending. Default: desc. One of: asc, desc",
                                    "disabled": false
                                },
                                {
                                    "key": "order_by",
                                    "value": "consequatur",
                                    "description": "Sort collection by object attribute. Default: created_at. One of: created_at, updated_at, star",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/properties\/:property_id\/reviews?page=17&per_page=17&order=consequatur&order_by=consequatur",
                            "variable": [
                                {
                                    "id": "property_id",
                                    "key": "property_id",
                                    "value": "17",
                                    "description": "The ID of the property."
                                }
                            ]
                        },
                        "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": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"Property not found\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get review by ID",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/reviews\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/reviews\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "17",
                                    "description": "The ID of the review."
                                }
                            ]
                        },
                        "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": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"Review not found\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Send consultation request",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/consults",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/consults"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"John Doe\",\"email\":\"john@example.com\",\"phone\":\"+1234567890\",\"content\":\"I'm interested in this property.\",\"consult_custom_fields\":[\"consequatur\"],\"type\":\"property\",\"data_id\":1}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Get consultation custom fields",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/consults\/custom-fields",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/consults\/custom-fields"
                        },
                        "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": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[{\"id\":1,\"name\":\"Schedule a Tour (optional)\",\"type\":\"date\",\"options\":[]}],\"error\":false,\"message\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get account profile",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/account\/profile",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/account\/profile"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create a review for a property",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/properties\/:property_id\/reviews",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/properties\/:property_id\/reviews",
                            "variable": [
                                {
                                    "id": "property_id",
                                    "key": "property_id",
                                    "value": "17",
                                    "description": "The ID of the property."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"reviewable_type\":\"Botble\\\\RealEstate\\\\Models\\\\Property\",\"star\":5,\"content\":\"This is an excellent property with great amenities.\",\"comment\":\"Great property!\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Update a review",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/reviews\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/reviews\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "17",
                                    "description": "The ID of the review."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"reviewable_type\":\"Botble\\\\RealEstate\\\\Models\\\\Property\",\"star\":5,\"content\":\"This is an excellent property with great amenities.\",\"comment\":\"Updated review!\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Delete a review",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/reviews\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/reviews\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "17",
                                    "description": "The ID of the review."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                }
            ]
        }
    ],
    "auth": {
        "type": "noauth"
    }
}