NAV
bash javascript

Info

Welcome to the generated API reference. Get Postman Collection

general

Get Post by ID.

Example request:

curl -X GET "http://mercury-api.imigix.com/api/post/{id}" \
-H "Accept: application/json"
var settings = {
    "async": true,
    "crossDomain": true,
    "url": "http://mercury-api.imigix.com/api/post/{id}",
    "method": "GET",
    "headers": {
        "accept": "application/json"
    }
}

$.ajax(settings).done(function (response) {
    console.log(response);
});

Example response:

{
    "data": {
        "id": 1,
        "date": "14.09.2018",
        "show_in_homepage": 1,
        "image": "http:\/\/localhost\/uploads\/images\/big\/6_news-image.jpg",
        "title_bg": "Комплекс Старлайт е почти готов!",
        "annonce_bg": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.",
        "text_bg": "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Aenean vel elit scelerisque mauris pellentesque. Massa tempor nec feugiat nisl pretium fusce id. At imperdiet dui accumsan sit amet nulla facilisi. Aliquam sem fringilla ut morbi tincidunt augue interdum velit.<\/p>\r\n\r\n<ul>\r\n\t<li>Commodo sed egestas egestas fringilla phasellus faucibus scelerisque. Dictum varius duis at consectetur lorem donec massa sapien faucibus.<\/li>\r\n\t<li>Tortor condimentum lacinia quis vel eros. Amet mauris commodo quis imperdiet. Duis at consectetur lorem donec massa sapien faucibus et molestie.<\/li>\r\n\t<li>Faucibus pulvinar elementum integer enim neque volutpat ac. Iaculis eu non diam phasellus. Lacus sed turpis tincidunt id aliquet risus feugiat in ante.<\/li>\r\n<\/ul>\r\n\r\n<p>Pulvinar pellentesque habitant morbi tristique. At ultrices mi tempus imperdiet nulla malesuada pellentesque. <strong>Diam quis enim lobortis<\/strong> scelerisque fermentum. Viverra adipiscing at in tellus integer. Eget gravida cum sociis natoque penatibus et magnis. <a href=\"http:\/\/test.com\">Cec massa sapien faucibus.<\/a> Tortor condimentum lacinia quis vel eros. Amet mauris commodo quis imperdiet.<\/p>\r\n\r\n<h2 class=\"h2-class\">H2 Duis at consectetur lorem donec massa sapien faucibus et molestie.<\/h2>\r\n\r\n<p>Faucibus pulvinar elementum integer enim neque volutpat ac. Iaculis eu non diam phasellus. Lacus sed turpis tincidunt id aliquet risus feugiat in ante.<\/p>\r\n\r\n<h3 class=\"h3-class\">Quis imperdiet massa tincidunt nunc pulvinar sapien et.<\/h3>\r\n\r\n<p>Porttitor lacus luctus accumsan tortor posuere ac. Eu scelerisque felis imperdiet proin fermentum leo vel orci. Magnis dis parturient montes nascetur ridiculus mus mauris vitae. Faucibus nisl tincidunt eget nullam.<\/p>",
        "slug_bg": "kompleks-starlayt-e-pochti-gotov",
        "seo_title_bg": "Комплекс Старлайт е почти готов! | Меркурий 99",
        "seo_description_bg": null,
        "seo_keywords_bg": null,
        "hide_sitemap_bg": 0,
        "title_en": "Starlight is almost finished!",
        "annonce_en": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua",
        "text_en": "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Aenean vel elit scelerisque mauris pellentesque. Massa tempor nec feugiat nisl pretium fusce id. At imperdiet dui accumsan sit amet nulla facilisi. Aliquam sem fringilla ut morbi tincidunt augue interdum velit.<\/p>\r\n\r\n<ul>\r\n\t<li>Commodo sed egestas egestas fringilla phasellus faucibus scelerisque. Dictum varius duis at consectetur lorem donec massa sapien faucibus.<\/li>\r\n\t<li>Tortor condimentum lacinia quis vel eros. Amet mauris commodo quis imperdiet. Duis at consectetur lorem donec massa sapien faucibus et molestie.<\/li>\r\n\t<li>Faucibus pulvinar elementum integer enim neque volutpat ac. Iaculis eu non diam phasellus. Lacus sed turpis tincidunt id aliquet risus feugiat in ante.<\/li>\r\n<\/ul>\r\n\r\n<p>Pulvinar pellentesque habitant morbi tristique. At ultrices mi tempus imperdiet nulla malesuada pellentesque. <strong>Diam quis enim lobortis<\/strong> scelerisque fermentum. Viverra adipiscing at in tellus integer. Eget gravida cum sociis natoque penatibus et magnis. <a href=\"http:\/\/test.com\">Cec massa sapien faucibus.<\/a> Tortor condimentum lacinia quis vel eros. Amet mauris commodo quis imperdiet.<\/p>\r\n\r\n<h2 class=\"h2-class\">H2 Duis at consectetur lorem donec massa sapien faucibus et molestie.<\/h2>\r\n\r\n<p>Faucibus pulvinar elementum integer enim neque volutpat ac. Iaculis eu non diam phasellus. Lacus sed turpis tincidunt id aliquet risus feugiat in ante.<\/p>\r\n\r\n<h3 class=\"h3-class\">Quis imperdiet massa tincidunt nunc pulvinar sapien et.<\/h3>\r\n\r\n<p>Porttitor lacus luctus accumsan tortor posuere ac. Eu scelerisque felis imperdiet proin fermentum leo vel orci. Magnis dis parturient montes nascetur ridiculus mus mauris vitae. Faucibus nisl tincidunt eget nullam.<\/p>",
        "slug_en": "starlight-is-almost-finished",
        "seo_title_en": "Starlight is almost finished! | Mercury 99",
        "seo_description_en": null,
        "seo_keywords_en": null,
        "hide_sitemap_en": 0
    }
}

HTTP Request

GET api/post/{id}

Get All Posts.

Example request:

curl -X GET "http://mercury-api.imigix.com/api/posts" \
-H "Accept: application/json"
var settings = {
    "async": true,
    "crossDomain": true,
    "url": "http://mercury-api.imigix.com/api/posts",
    "method": "GET",
    "headers": {
        "accept": "application/json"
    }
}

$.ajax(settings).done(function (response) {
    console.log(response);
});

Example response:

{
    "data": [
        {
            "id": 4,
            "date": "04.10.2018",
            "show_in_homepage": 0,
            "image": "http:\/\/localhost\/uploads\/images\/big\/77_news-butterfly.png",
            "title_bg": "Комплекс Бътерфлай",
            "annonce_bg": "Комплекс „BUTTERFLY” се намира на 300 метра от пет звезден хотел „Хелена”",
            "text_bg": "<p>Комплекс&nbsp;<strong>&bdquo;BUTTERFLY&rdquo;<\/strong>&nbsp;се намира на 300 метра от пет звезден хотел &bdquo;Хелена&rdquo; от горната страна на главния път за гр. Свети Влас, в тих&nbsp; и спокоен район с уникален изглед към морето и на 400 метра от плажа.&nbsp;Комплексът разполага с 25 студиа, 46 двустайни апартамента, 24 тристайни апартамента, басейн, паркоместа, целогодишна денонощна охрана и поддръжка.&nbsp;Всички обекти се издават до ключ, което включва:&nbsp;PVC дограма VEKA, Rotto обков, вътрешна MDF дограма, външна немска мазилка, кухня, теракот или ламиниран паркет. Парапети от стъкло и хром &ndash; никелова стомана, климатик, бойлер и аспиратор.<\/p>\r\n\r\n<p>Акт 16<\/p>",
            "slug_bg": "kompleks-bterflay",
            "seo_title_bg": "Комплекс Бътерфлай | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "Complex Butterfly",
            "annonce_en": "Комплекс „BUTTERFLY” се намира на 300 метра от пет звезден хотел „Хелена”",
            "text_en": "<p>Комплекс&nbsp;<strong>&bdquo;BUTTERFLY&rdquo;<\/strong>&nbsp;се намира на 300 метра от пет звезден хотел &bdquo;Хелена&rdquo; от горната страна на главния път за гр. Свети Влас, в тих&nbsp; и спокоен район с уникален изглед към морето и на 400 метра от плажа.&nbsp;Комплексът разполага с 25 студиа, 46 двустайни апартамента, 24 тристайни апартамента, басейн, паркоместа, целогодишна денонощна охрана и поддръжка.&nbsp;Всички обекти се издават до ключ, което включва:&nbsp;PVC дограма VEKA, Rotto обков, вътрешна MDF дограма, външна немска мазилка, кухня, теракот или ламиниран паркет. Парапети от стъкло и хром &ndash; никелова стомана, климатик, бойлер и аспиратор.<\/p>\r\n\r\n<p>Акт 16<\/p>",
            "slug_en": "complex-butterfly",
            "seo_title_en": "Complex Butterfly | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0
        },
        {
            "id": 1,
            "date": "14.09.2018",
            "show_in_homepage": 1,
            "image": "http:\/\/localhost\/uploads\/images\/big\/6_news-image.jpg",
            "title_bg": "Комплекс Старлайт е почти готов!",
            "annonce_bg": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.",
            "text_bg": "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Aenean vel elit scelerisque mauris pellentesque. Massa tempor nec feugiat nisl pretium fusce id. At imperdiet dui accumsan sit amet nulla facilisi. Aliquam sem fringilla ut morbi tincidunt augue interdum velit.<\/p>\r\n\r\n<ul>\r\n\t<li>Commodo sed egestas egestas fringilla phasellus faucibus scelerisque. Dictum varius duis at consectetur lorem donec massa sapien faucibus.<\/li>\r\n\t<li>Tortor condimentum lacinia quis vel eros. Amet mauris commodo quis imperdiet. Duis at consectetur lorem donec massa sapien faucibus et molestie.<\/li>\r\n\t<li>Faucibus pulvinar elementum integer enim neque volutpat ac. Iaculis eu non diam phasellus. Lacus sed turpis tincidunt id aliquet risus feugiat in ante.<\/li>\r\n<\/ul>\r\n\r\n<p>Pulvinar pellentesque habitant morbi tristique. At ultrices mi tempus imperdiet nulla malesuada pellentesque. <strong>Diam quis enim lobortis<\/strong> scelerisque fermentum. Viverra adipiscing at in tellus integer. Eget gravida cum sociis natoque penatibus et magnis. <a href=\"http:\/\/test.com\">Cec massa sapien faucibus.<\/a> Tortor condimentum lacinia quis vel eros. Amet mauris commodo quis imperdiet.<\/p>\r\n\r\n<h2 class=\"h2-class\">H2 Duis at consectetur lorem donec massa sapien faucibus et molestie.<\/h2>\r\n\r\n<p>Faucibus pulvinar elementum integer enim neque volutpat ac. Iaculis eu non diam phasellus. Lacus sed turpis tincidunt id aliquet risus feugiat in ante.<\/p>\r\n\r\n<h3 class=\"h3-class\">Quis imperdiet massa tincidunt nunc pulvinar sapien et.<\/h3>\r\n\r\n<p>Porttitor lacus luctus accumsan tortor posuere ac. Eu scelerisque felis imperdiet proin fermentum leo vel orci. Magnis dis parturient montes nascetur ridiculus mus mauris vitae. Faucibus nisl tincidunt eget nullam.<\/p>",
            "slug_bg": "kompleks-starlayt-e-pochti-gotov",
            "seo_title_bg": "Комплекс Старлайт е почти готов! | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "Starlight is almost finished!",
            "annonce_en": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua",
            "text_en": "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Aenean vel elit scelerisque mauris pellentesque. Massa tempor nec feugiat nisl pretium fusce id. At imperdiet dui accumsan sit amet nulla facilisi. Aliquam sem fringilla ut morbi tincidunt augue interdum velit.<\/p>\r\n\r\n<ul>\r\n\t<li>Commodo sed egestas egestas fringilla phasellus faucibus scelerisque. Dictum varius duis at consectetur lorem donec massa sapien faucibus.<\/li>\r\n\t<li>Tortor condimentum lacinia quis vel eros. Amet mauris commodo quis imperdiet. Duis at consectetur lorem donec massa sapien faucibus et molestie.<\/li>\r\n\t<li>Faucibus pulvinar elementum integer enim neque volutpat ac. Iaculis eu non diam phasellus. Lacus sed turpis tincidunt id aliquet risus feugiat in ante.<\/li>\r\n<\/ul>\r\n\r\n<p>Pulvinar pellentesque habitant morbi tristique. At ultrices mi tempus imperdiet nulla malesuada pellentesque. <strong>Diam quis enim lobortis<\/strong> scelerisque fermentum. Viverra adipiscing at in tellus integer. Eget gravida cum sociis natoque penatibus et magnis. <a href=\"http:\/\/test.com\">Cec massa sapien faucibus.<\/a> Tortor condimentum lacinia quis vel eros. Amet mauris commodo quis imperdiet.<\/p>\r\n\r\n<h2 class=\"h2-class\">H2 Duis at consectetur lorem donec massa sapien faucibus et molestie.<\/h2>\r\n\r\n<p>Faucibus pulvinar elementum integer enim neque volutpat ac. Iaculis eu non diam phasellus. Lacus sed turpis tincidunt id aliquet risus feugiat in ante.<\/p>\r\n\r\n<h3 class=\"h3-class\">Quis imperdiet massa tincidunt nunc pulvinar sapien et.<\/h3>\r\n\r\n<p>Porttitor lacus luctus accumsan tortor posuere ac. Eu scelerisque felis imperdiet proin fermentum leo vel orci. Magnis dis parturient montes nascetur ridiculus mus mauris vitae. Faucibus nisl tincidunt eget nullam.<\/p>",
            "slug_en": "starlight-is-almost-finished",
            "seo_title_en": "Starlight is almost finished! | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0
        },
        {
            "id": 2,
            "date": "12.09.2018",
            "show_in_homepage": 0,
            "image": "http:\/\/localhost\/uploads\/images\/big\/7_news-mages2.jpg",
            "title_bg": "Стартира строежа на Комплекс Бижу!",
            "annonce_bg": "Pulvinar pellentesque habitant morbi tristique.",
            "text_bg": "<p>Mauris sit amet massa vitae tortor. Facilisi morbi tempus iaculis urna id volutpat. Duis ut diam quam nulla porttitor massa id neque. Integer enim neque volutpat ac tincidunt vitae semper quis lectus. Dui accumsan sit amet nulla facilisi morbi tempus iaculis urna. Imperdiet massa tincidunt nunc pulvinar. Hac habitasse platea dictumst vestibulum rhoncus est pellentesque. Interdum velit laoreet id donec ultrices tincidunt arcu. At risus viverra adipiscing at in tellus integer. Ipsum dolor sit amet consectetur adipiscing. Eu scelerisque felis imperdiet proin fermentum leo vel orci porta. Nisi scelerisque eu ultrices vitae auctor eu augue ut lectus. Et leo duis ut diam quam nulla. Et egestas quis ipsum suspendisse ultrices.<\/p>\r\n\r\n<p>Vulputate enim nulla aliquet porttitor lacus luctus accumsan tortor posuere. Lorem ipsum dolor sit amet consectetur adipiscing. Nulla aliquet enim tortor at auctor urna nunc id cursus. Et pharetra pharetra massa massa ultricies mi quis. Nunc eget lorem dolor sed viverra ipsum nunc aliquet bibendum. Nunc lobortis mattis aliquam faucibus purus in massa tempor. Nec feugiat nisl pretium fusce id velit. Ipsum suspendisse ultrices gravida dictum fusce ut. Et netus et malesuada fames ac turpis egestas maecenas. Turpis in eu mi bibendum neque egestas congue quisque egestas. Vel risus commodo viverra maecenas accumsan lacus. Vel elit scelerisque mauris pellentesque pulvinar pellentesque. Iaculis eu non diam phasellus vestibulum lorem sed. Sit amet justo donec enim diam vulputate ut pharetra sit. Feugiat sed lectus vestibulum mattis ullamcorper velit sed ullamcorper morbi. Massa sapien faucibus et molestie ac. Id diam vel quam elementum pulvinar etiam non quam lacus.<\/p>",
            "slug_bg": "startira-stroezha-na-kompleks-bizhu",
            "seo_title_bg": "Стартира строежа на Комплекс Бижу! | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "We are starting to build Complex Jewel",
            "annonce_en": "Pulvinar pellentesque habitant morbi tristique.",
            "text_en": "<p>Mauris sit amet massa vitae tortor. Facilisi morbi tempus iaculis urna id volutpat. Duis ut diam quam nulla porttitor massa id neque. Integer enim neque volutpat ac tincidunt vitae semper quis lectus. Dui accumsan sit amet nulla facilisi morbi tempus iaculis urna. Imperdiet massa tincidunt nunc pulvinar. Hac habitasse platea dictumst vestibulum rhoncus est pellentesque. Interdum velit laoreet id donec ultrices tincidunt arcu. At risus viverra adipiscing at in tellus integer. Ipsum dolor sit amet consectetur adipiscing. Eu scelerisque felis imperdiet proin fermentum leo vel orci porta. Nisi scelerisque eu ultrices vitae auctor eu augue ut lectus. Et leo duis ut diam quam nulla. Et egestas quis ipsum suspendisse ultrices.<\/p>\r\n\r\n<p>Vulputate enim nulla aliquet porttitor lacus luctus accumsan tortor posuere. Lorem ipsum dolor sit amet consectetur adipiscing. Nulla aliquet enim tortor at auctor urna nunc id cursus. Et pharetra pharetra massa massa ultricies mi quis. Nunc eget lorem dolor sed viverra ipsum nunc aliquet bibendum. Nunc lobortis mattis aliquam faucibus purus in massa tempor. Nec feugiat nisl pretium fusce id velit. Ipsum suspendisse ultrices gravida dictum fusce ut. Et netus et malesuada fames ac turpis egestas maecenas. Turpis in eu mi bibendum neque egestas congue quisque egestas. Vel risus commodo viverra maecenas accumsan lacus. Vel elit scelerisque mauris pellentesque pulvinar pellentesque. Iaculis eu non diam phasellus vestibulum lorem sed. Sit amet justo donec enim diam vulputate ut pharetra sit. Feugiat sed lectus vestibulum mattis ullamcorper velit sed ullamcorper morbi. Massa sapien faucibus et molestie ac. Id diam vel quam elementum pulvinar etiam non quam lacus.<\/p>",
            "slug_en": "we-are-starting-to-build-complex-jewel",
            "seo_title_en": "We are starting to build Complex Jewel | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0
        }
    ],
    "links": {
        "self": "link-value"
    }
}

HTTP Request

GET api/posts

Get Page by ID.

Example request:

curl -X GET "http://mercury-api.imigix.com/api/page/{id}" \
-H "Accept: application/json"
var settings = {
    "async": true,
    "crossDomain": true,
    "url": "http://mercury-api.imigix.com/api/page/{id}",
    "method": "GET",
    "headers": {
        "accept": "application/json"
    }
}

$.ajax(settings).done(function (response) {
    console.log(response);
});

Example response:

{
    "data": {
        "id": 1,
        "image": null,
        "title_bg": "Начало",
        "text_bg": null,
        "slug_bg": "",
        "seo_title_bg": "Начало | Меркурий 99",
        "seo_description_bg": null,
        "seo_keywords_bg": null,
        "hide_sitemap_bg": 0,
        "title_en": "Home",
        "text_en": null,
        "slug_en": "",
        "seo_title_en": "Home | Mercury 99",
        "seo_description_en": null,
        "seo_keywords_en": null,
        "hide_sitemap_en": 0,
        "prev_page": null,
        "next_page": {
            "id": 2,
            "image": null,
            "title_bg": "Настоящи проекти",
            "text_bg": null,
            "slug_bg": "nastoyashchi-proekti",
            "seo_title_bg": "Настоящи проекти | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "Current projects",
            "text_en": null,
            "slug_en": "current-projects",
            "seo_title_en": "Current projects | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0,
            "prev_page": null,
            "next_page": null
        }
    }
}

HTTP Request

GET api/page/{id}

Get All Pages.

Example request:

curl -X GET "http://mercury-api.imigix.com/api/pages" \
-H "Accept: application/json"
var settings = {
    "async": true,
    "crossDomain": true,
    "url": "http://mercury-api.imigix.com/api/pages",
    "method": "GET",
    "headers": {
        "accept": "application/json"
    }
}

$.ajax(settings).done(function (response) {
    console.log(response);
});

Example response:

{
    "data": [
        {
            "id": 1,
            "image": null,
            "title_bg": "Начало",
            "text_bg": null,
            "slug_bg": "",
            "seo_title_bg": "Начало | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "Home",
            "text_en": null,
            "slug_en": "",
            "seo_title_en": "Home | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0
        },
        {
            "id": 2,
            "image": null,
            "title_bg": "Настоящи проекти",
            "text_bg": null,
            "slug_bg": "nastoyashchi-proekti",
            "seo_title_bg": "Настоящи проекти | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "Current projects",
            "text_en": null,
            "slug_en": "current-projects",
            "seo_title_en": "Current projects | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0
        },
        {
            "id": 3,
            "image": null,
            "title_bg": "Завършени проекти",
            "text_bg": null,
            "slug_bg": "zavrsheni-proekti",
            "seo_title_bg": "Завършени проекти | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "Finished projects",
            "text_en": null,
            "slug_en": "finished-projects",
            "seo_title_en": "Finished projects | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0
        },
        {
            "id": 4,
            "image": null,
            "title_bg": "Бъдещи проекти",
            "text_bg": null,
            "slug_bg": "bdeshchi-proekti",
            "seo_title_bg": "Бъдещи проекти | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "Future projects",
            "text_en": null,
            "slug_en": "future-projects",
            "seo_title_en": "Future projects | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0
        },
        {
            "id": 5,
            "image": null,
            "title_bg": "Новини",
            "text_bg": null,
            "slug_bg": "novini",
            "seo_title_bg": "Новини | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "News",
            "text_en": null,
            "slug_en": "news",
            "seo_title_en": "News | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0
        },
        {
            "id": 6,
            "image": null,
            "title_bg": "Контакти",
            "text_bg": null,
            "slug_bg": "kontakti",
            "seo_title_bg": "Контакти | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "Contacts",
            "text_en": null,
            "slug_en": "contacts",
            "seo_title_en": "Contacts | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0
        },
        {
            "id": 7,
            "image": null,
            "title_bg": "За нас",
            "text_bg": "<p><strong>Lorem Ipsum<\/strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\/p>",
            "slug_bg": "za-nas",
            "seo_title_bg": "За нас | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "About us",
            "text_en": "<p><strong>Lorem Ipsum<\/strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\/p>",
            "slug_en": "about-us",
            "seo_title_en": "About us | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0
        },
        {
            "id": 8,
            "image": null,
            "title_bg": "Услуги",
            "text_bg": "<p>Услуги текст<\/p>",
            "slug_bg": "uslugi",
            "seo_title_bg": "Услуги | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "Services",
            "text_en": "<p>Services text<\/p>",
            "slug_en": "services",
            "seo_title_en": "Services | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0
        },
        {
            "id": 9,
            "image": null,
            "title_bg": "История",
            "text_bg": "<p>История текст<\/p>",
            "slug_bg": "istoriya",
            "seo_title_bg": "История | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "History",
            "text_en": "<p>History text<\/p>",
            "slug_en": "history",
            "seo_title_en": "History | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0
        }
    ],
    "links": {
        "self": "link-value"
    }
}

HTTP Request

GET api/pages

Get Page by Type.

Example request:

curl -X GET "http://mercury-api.imigix.com/api/page/type/{type}" \
-H "Accept: application/json"
var settings = {
    "async": true,
    "crossDomain": true,
    "url": "http://mercury-api.imigix.com/api/page/type/{type}",
    "method": "GET",
    "headers": {
        "accept": "application/json"
    }
}

$.ajax(settings).done(function (response) {
    console.log(response);
});

Example response:

{
    "message": "Trying to get property 'page_id' of non-object",
    "exception": "ErrorException",
    "file": "D:\\laragon\\www\\mercury\\vendor\\laravel\\framework\\src\\Illuminate\\Http\\Resources\\DelegatesToResource.php",
    "line": 116,
    "trace": [
        {
            "file": "D:\\laragon\\www\\mercury\\vendor\\laravel\\framework\\src\\Illuminate\\Http\\Resources\\DelegatesToResource.php",
            "line": 116,
            "function": "handleError",
            "class": "Illuminate\\Foundation\\Bootstrap\\HandleExceptions",
            "type": "->"
        },
        {
            "file": "D:\\laragon\\www\\mercury\\app\\Http\\Resources\\PageResource.php",
            "line": 18,
            "function": "__get",
            "class": "Illuminate\\Http\\Resources\\Json\\Resource",
            "type": "->"
        },
        {
            "file": "D:\\laragon\\www\\mercury\\vendor\\laravel\\framework\\src\\Illuminate\\Http\\Resources\\Json\\Resource.php",
            "line": 91,
            "function": "toArray",
            "class": "App\\Http\\Resources\\PageResource",
            "type": "->"
        },
        {
            "file": "D:\\laragon\\www\\mercury\\vendor\\laravel\\framework\\src\\Illuminate\\Http\\Resources\\Json\\ResourceResponse.php",
            "line": 39,
            "function": "resolve",
            "class": "Illuminate\\Http\\Resources\\Json\\Resource",
            "type": "->"
        },
        {
            "file": "D:\\laragon\\www\\mercury\\vendor\\laravel\\framework\\src\\Illuminate\\Http\\Resources\\Json\\Resource.php",
            "line": 194,
            "function": "toResponse",
            "class": "Illuminate\\Http\\Resources\\Json\\ResourceResponse",
            "type": "->"
        },
        {
            "file": "D:\\laragon\\www\\mercury\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Router.php",
            "line": 711,
            "function": "toResponse",
            "class": "Illuminate\\Http\\Resources\\Json\\Resource",
            "type": "->"
        },
        {
            "file": "D:\\laragon\\www\\mercury\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Router.php",
            "line": 698,
            "function": "toResponse",
            "class": "Illuminate\\Routing\\Router",
            "type": "::"
        },
        {
            "file": "D:\\laragon\\www\\mercury\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Router.php",
            "line": 658,
            "function": "prepareResponse",
            "class": "Illuminate\\Routing\\Router",
            "type": "->"
        },
        {
            "file": "D:\\laragon\\www\\mercury\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Pipeline.php",
            "line": 30,
            "function": "Illuminate\\Routing\\{closure}",
            "class": "Illuminate\\Routing\\Router",
            "type": "->"
        },
        {
            "file": "D:\\laragon\\www\\mercury\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
            "line": 102,
            "function": "Illuminate\\Routing\\{closure}",
            "class": "Illuminate\\Routing\\Pipeline",
            "type": "->"
        },
        {
            "file": "D:\\laragon\\www\\mercury\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Router.php",
            "line": 660,
            "function": "then",
            "class": "Illuminate\\Pipeline\\Pipeline",
            "type": "->"
        },
        {
            "file": "D:\\laragon\\www\\mercury\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Router.php",
            "line": 635,
            "function": "runRouteWithinStack",
            "class": "Illuminate\\Routing\\Router",
            "type": "->"
        },
        {
            "file": "D:\\laragon\\www\\mercury\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Router.php",
            "line": 601,
            "function": "runRoute",
            "class": "Illuminate\\Routing\\Router",
            "type": "->"
        },
        {
            "file": "D:\\laragon\\www\\mercury\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Router.php",
            "line": 590,
            "function": "dispatchToRoute",
            "class": "Illuminate\\Routing\\Router",
            "type": "->"
        },
        {
            "file": "D:\\laragon\\www\\mercury\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Kernel.php",
            "line": 176,
            "function": "dispatch",
            "class": "Illuminate\\Routing\\Router",
            "type": "->"
        },
        {
            "file": "D:\\laragon\\www\\mercury\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Pipeline.php",
            "line": 30,
            "function": "Illuminate\\Foundation\\Http\\{closure}",
            "class": "Illuminate\\Foundation\\Http\\Kernel",
            "type": "->"
        },
        {
            "file": "D:\\laragon\\www\\mercury\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
            "line": 102,
            "function": "Illuminate\\Routing\\{closure}",
            "class": "Illuminate\\Routing\\Pipeline",
            "type": "->"
        },
        {
            "file": "D:\\laragon\\www\\mercury\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Kernel.php",
            "line": 151,
            "function": "then",
            "class": "Illuminate\\Pipeline\\Pipeline",
            "type": "->"
        },
        {
            "file": "D:\\laragon\\www\\mercury\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Kernel.php",
            "line": 116,
            "function": "sendRequestThroughRouter",
            "class": "Illuminate\\Foundation\\Http\\Kernel",
            "type": "->"
        },
        {
            "file": "D:\\laragon\\www\\mercury\\vendor\\mpociot\\laravel-apidoc-generator\\src\\Mpociot\\ApiDoc\\Generators\\LaravelGenerator.php",
            "line": 89,
            "function": "handle",
            "class": "Illuminate\\Foundation\\Http\\Kernel",
            "type": "->"
        },
        {
            "file": "D:\\laragon\\www\\mercury\\vendor\\mpociot\\laravel-apidoc-generator\\src\\Mpociot\\ApiDoc\\Generators\\AbstractGenerator.php",
            "line": 210,
            "function": "callRoute",
            "class": "Mpociot\\ApiDoc\\Generators\\LaravelGenerator",
            "type": "->"
        },
        {
            "file": "D:\\laragon\\www\\mercury\\vendor\\mpociot\\laravel-apidoc-generator\\src\\Mpociot\\ApiDoc\\Generators\\AbstractGenerator.php",
            "line": 78,
            "function": "getRouteResponse",
            "class": "Mpociot\\ApiDoc\\Generators\\AbstractGenerator",
            "type": "->"
        },
        {
            "file": "D:\\laragon\\www\\mercury\\vendor\\mpociot\\laravel-apidoc-generator\\src\\Mpociot\\ApiDoc\\Commands\\GenerateDocumentation.php",
            "line": 280,
            "function": "processRoute",
            "class": "Mpociot\\ApiDoc\\Generators\\AbstractGenerator",
            "type": "->"
        },
        {
            "file": "D:\\laragon\\www\\mercury\\vendor\\mpociot\\laravel-apidoc-generator\\src\\Mpociot\\ApiDoc\\Commands\\GenerateDocumentation.php",
            "line": 94,
            "function": "processLaravelRoutes",
            "class": "Mpociot\\ApiDoc\\Commands\\GenerateDocumentation",
            "type": "->"
        },
        {
            "function": "handle",
            "class": "Mpociot\\ApiDoc\\Commands\\GenerateDocumentation",
            "type": "->"
        },
        {
            "file": "D:\\laragon\\www\\mercury\\vendor\\laravel\\framework\\src\\Illuminate\\Container\\BoundMethod.php",
            "line": 29,
            "function": "call_user_func_array"
        },
        {
            "file": "D:\\laragon\\www\\mercury\\vendor\\laravel\\framework\\src\\Illuminate\\Container\\BoundMethod.php",
            "line": 87,
            "function": "Illuminate\\Container\\{closure}",
            "class": "Illuminate\\Container\\BoundMethod",
            "type": "::"
        },
        {
            "file": "D:\\laragon\\www\\mercury\\vendor\\laravel\\framework\\src\\Illuminate\\Container\\BoundMethod.php",
            "line": 31,
            "function": "callBoundMethod",
            "class": "Illuminate\\Container\\BoundMethod",
            "type": "::"
        },
        {
            "file": "D:\\laragon\\www\\mercury\\vendor\\laravel\\framework\\src\\Illuminate\\Container\\Container.php",
            "line": 549,
            "function": "call",
            "class": "Illuminate\\Container\\BoundMethod",
            "type": "::"
        },
        {
            "file": "D:\\laragon\\www\\mercury\\vendor\\laravel\\framework\\src\\Illuminate\\Console\\Command.php",
            "line": 183,
            "function": "call",
            "class": "Illuminate\\Container\\Container",
            "type": "->"
        },
        {
            "file": "D:\\laragon\\www\\mercury\\vendor\\symfony\\console\\Command\\Command.php",
            "line": 251,
            "function": "execute",
            "class": "Illuminate\\Console\\Command",
            "type": "->"
        },
        {
            "file": "D:\\laragon\\www\\mercury\\vendor\\laravel\\framework\\src\\Illuminate\\Console\\Command.php",
            "line": 170,
            "function": "run",
            "class": "Symfony\\Component\\Console\\Command\\Command",
            "type": "->"
        },
        {
            "file": "D:\\laragon\\www\\mercury\\vendor\\symfony\\console\\Application.php",
            "line": 946,
            "function": "run",
            "class": "Illuminate\\Console\\Command",
            "type": "->"
        },
        {
            "file": "D:\\laragon\\www\\mercury\\vendor\\symfony\\console\\Application.php",
            "line": 248,
            "function": "doRunCommand",
            "class": "Symfony\\Component\\Console\\Application",
            "type": "->"
        },
        {
            "file": "D:\\laragon\\www\\mercury\\vendor\\symfony\\console\\Application.php",
            "line": 148,
            "function": "doRun",
            "class": "Symfony\\Component\\Console\\Application",
            "type": "->"
        },
        {
            "file": "D:\\laragon\\www\\mercury\\vendor\\laravel\\framework\\src\\Illuminate\\Console\\Application.php",
            "line": 88,
            "function": "run",
            "class": "Symfony\\Component\\Console\\Application",
            "type": "->"
        },
        {
            "file": "D:\\laragon\\www\\mercury\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Console\\Kernel.php",
            "line": 121,
            "function": "run",
            "class": "Illuminate\\Console\\Application",
            "type": "->"
        },
        {
            "file": "D:\\laragon\\www\\mercury\\artisan",
            "line": 37,
            "function": "handle",
            "class": "Illuminate\\Foundation\\Console\\Kernel",
            "type": "->"
        }
    ]
}

HTTP Request

GET api/page/type/{type}

Get Building by ID.

Example request:

curl -X GET "http://mercury-api.imigix.com/api/building/{id}" \
-H "Accept: application/json"
var settings = {
    "async": true,
    "crossDomain": true,
    "url": "http://mercury-api.imigix.com/api/building/{id}",
    "method": "GET",
    "headers": {
        "accept": "application/json"
    }
}

$.ajax(settings).done(function (response) {
    console.log(response);
});

Example response:

{
    "data": {
        "id": 1,
        "image": "http:\/\/localhost\/uploads\/images\/big\/17_build-starlight.jpg",
        "thumb": null,
        "pdf": null,
        "map": "http:\/\/localhost\/uploads\/images\/big\/16_map.jpg",
        "status": 1,
        "google_map": "https:\/\/www.google.com\/maps\/embed?pb=!1m17!1m8!1m3!1d11723.450867031348!2d23.304417599999997!3d42.72779635!3m2!1i1024!2i768!4f13.1!4m6!3e0!4m3!3m2!1d42.7293567!2d23.2992676!4m0!5e0!3m2!1sbg!2sbg!4v1539100876083",
        "use_svg": 0,
        "gallery": [
            "http:\/\/localhost\/uploads\/images\/big\/3_test-news-16x9.jpg",
            "http:\/\/localhost\/uploads\/images\/big\/4_test-building-16x9.jpg"
        ],
        "title_bg": "Старлайт Тестова",
        "annonce_bg": "Lorem Ipsum е елементарен примерен текст, използван в печатарската и типографската индустрия.",
        "text_bg": "<p>A collection of textile samples lay spread out on the table - Samsa was a travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer. Gregor then turned to look out the window at the dull weather.&nbsp;A collection of textile samples lay spread out on the table - Samsa was a travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer. Gregor then turned to look out the window at the dull weather. &nbsp;<\/p>\r\n\r\n<p>A collection of textile samples lay spread out on the table - Samsa was a travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer. Gregor then turned to look out the window at the dull weather.<\/p>",
        "slug_bg": "starlight",
        "seo_title_bg": "Старлайт Тестова | Меркурий 99",
        "seo_description_bg": null,
        "seo_keywords_bg": null,
        "hide_sitemap_bg": 0,
        "title_en": "Starlight Testing",
        "annonce_en": "Gregor then turned to look out the window at the dull weather.",
        "text_en": "<p>A collection of textile samples lay spread out on the table - Samsa was a travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer. Gregor then turned to look out the window at the dull weather.&nbsp;A collection of textile samples lay spread out on the table - Samsa was a travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer. Gregor then turned to look out the window at the dull weather. &nbsp;<\/p>\r\n\r\n<p>A collection of textile samples lay spread out on the table - Samsa was a travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer. Gregor then turned to look out the window at the dull weather.<\/p>",
        "slug_en": "starlight",
        "seo_title_en": "Starlight Testing | Mercury 99",
        "seo_description_en": null,
        "seo_keywords_en": null,
        "hide_sitemap_en": 0,
        "prev_building": {
            "id": 5,
            "image": "http:\/\/localhost\/uploads\/images\/big\/76_starlight-building.jpg",
            "thumb": null,
            "pdf": null,
            "map": "http:\/\/localhost\/uploads\/images\/big\/17_build-starlight.jpg",
            "status": 1,
            "google_map": "https:\/\/www.google.com\/maps\/embed?pb=!1m17!1m8!1m3!1d11723.450867031348!2d23.304417599999997!3d42.72779635!3m2!1i1024!2i768!4f13.1!4m6!3e0!4m3!3m2!1d42.7293567!2d23.2992676!4m0!5e0!3m2!1sbg!2sbg!4v1539100876083",
            "use_svg": 0,
            "gallery": null,
            "title_bg": "Старлайт ОРИГИНАЛ",
            "annonce_bg": "Кратък анонс за заглавие в слайдер",
            "text_bg": "",
            "slug_bg": "starlayt-original",
            "seo_title_bg": "Старлайт ОРИГИНАЛ | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "Startlight original",
            "annonce_en": "EN Кратък анонс за заглавие в слайдер",
            "text_en": "",
            "slug_en": "startlight-original",
            "seo_title_en": "Startlight original | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0,
            "prev_building": null,
            "next_building": null,
            "entrances": {
                "data": [],
                "links": {
                    "self": "link-value"
                }
            },
            "floors": {
                "data": [],
                "links": {
                    "self": "link-value"
                }
            },
            "apartments": {
                "data": [],
                "links": {
                    "self": "link-value"
                }
            }
        },
        "next_building": {
            "id": 3,
            "image": "http:\/\/localhost\/uploads\/images\/big\/6_news-image.jpg",
            "thumb": "http:\/\/localhost\/uploads\/images\/big\/6_news-image.jpg",
            "pdf": null,
            "map": null,
            "status": 3,
            "google_map": "",
            "use_svg": 0,
            "gallery": null,
            "title_bg": "Тестова бъдеща сграда",
            "annonce_bg": "Анонс тестова бъдеща сграда",
            "text_bg": "<p>примеррен текст бг<\/p>",
            "slug_bg": "testova-bdeshcha-sgrada",
            "seo_title_bg": "Тестова бъдеща сграда | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "Test future building",
            "annonce_en": "Annonce test future building",
            "text_en": "<p>test text en<\/p>",
            "slug_en": "test-future-building",
            "seo_title_en": "Test future building | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0,
            "prev_building": null,
            "next_building": null,
            "entrances": {
                "data": [],
                "links": {
                    "self": "link-value"
                }
            },
            "floors": {
                "data": [],
                "links": {
                    "self": "link-value"
                }
            },
            "apartments": {
                "data": [],
                "links": {
                    "self": "link-value"
                }
            }
        },
        "entrances": {
            "data": [
                {
                    "id": 1,
                    "image": null,
                    "coords": "coords",
                    "title_bg": "A",
                    "slug_bg": "a",
                    "seo_title_bg": "A | Меркурий 99",
                    "seo_description_bg": null,
                    "seo_keywords_bg": null,
                    "hide_sitemap_bg": 0,
                    "title_en": "A",
                    "slug_en": "a",
                    "seo_title_en": "A | Mercury 99",
                    "seo_description_en": null,
                    "seo_keywords_en": null,
                    "hide_sitemap_en": 0,
                    "building": {
                        "id": 1,
                        "slug_bg": "starlight",
                        "slug_en": "starlight"
                    },
                    "floors": {
                        "data": [
                            {
                                "id": 1,
                                "image": "http:\/\/localhost\/uploads\/images\/big\/57_floor1.png",
                                "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                                "degrees": 6,
                                "title_bg": "1",
                                "slug_bg": "1",
                                "seo_title_bg": "1 | Меркурий 99",
                                "seo_description_bg": null,
                                "seo_keywords_bg": null,
                                "hide_sitemap_bg": 0,
                                "title_en": "1",
                                "slug_en": "1",
                                "seo_title_en": "1 | Mercury 99",
                                "seo_description_en": null,
                                "seo_keywords_en": null,
                                "hide_sitemap_en": 0,
                                "building": {
                                    "id": 1,
                                    "slug_bg": "starlight",
                                    "slug_en": "starlight"
                                },
                                "entrance": {
                                    "id": 1,
                                    "slug_bg": "a",
                                    "slug_en": "a"
                                },
                                "apartments": {
                                    "data": [
                                        {
                                            "id": 1,
                                            "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                                            "degrees": null,
                                            "status": 1,
                                            "floor_for_filters": null,
                                            "rooms": 2,
                                            "total_area": "68.75",
                                            "living_area": "0",
                                            "price": 100000,
                                            "price_m2": 1455,
                                            "image": null,
                                            "image2": null,
                                            "mezonet": 0,
                                            "panorama": 0,
                                            "pdf": null,
                                            "gallery": null,
                                            "title_bg": "Апартамент 1",
                                            "text_bg": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                                            "details_bg": null,
                                            "slug_bg": "apartament-1",
                                            "seo_title_bg": "Апартамент 1 | Меркурий 99",
                                            "seo_description_bg": null,
                                            "seo_keywords_bg": null,
                                            "hide_sitemap_bg": 0,
                                            "title_en": "Apartment 1",
                                            "text_en": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                                            "details_en": null,
                                            "slug_en": "apartment-1",
                                            "seo_title_en": "Apartment 1 | Mercury 99",
                                            "seo_description_en": null,
                                            "seo_keywords_en": null,
                                            "hide_sitemap_en": 0,
                                            "building": {
                                                "id": 1,
                                                "slug_bg": "starlight",
                                                "slug_en": "starlight"
                                            },
                                            "entrance": {
                                                "id": 1,
                                                "slug_bg": "a",
                                                "slug_en": "a"
                                            },
                                            "floor": {
                                                "id": 1,
                                                "slug_bg": "1",
                                                "slug_en": "1"
                                            }
                                        },
                                        {
                                            "id": 192,
                                            "coords": "",
                                            "degrees": null,
                                            "status": 1,
                                            "floor_for_filters": null,
                                            "rooms": 3,
                                            "total_area": "121.26",
                                            "living_area": "0",
                                            "price": 136000,
                                            "price_m2": 1122,
                                            "image": null,
                                            "image2": null,
                                            "mezonet": 0,
                                            "panorama": 0,
                                            "pdf": null,
                                            "gallery": null,
                                            "title_bg": "Апартамент 2",
                                            "text_bg": "",
                                            "details_bg": null,
                                            "slug_bg": "apartament-2",
                                            "seo_title_bg": "Апартамент 2 | Меркурий 99",
                                            "seo_description_bg": null,
                                            "seo_keywords_bg": null,
                                            "hide_sitemap_bg": 0,
                                            "title_en": "Apartment 2",
                                            "text_en": "",
                                            "details_en": null,
                                            "slug_en": "apartment-2",
                                            "seo_title_en": "Apartment 2 | Mercury 99",
                                            "seo_description_en": null,
                                            "seo_keywords_en": null,
                                            "hide_sitemap_en": 0,
                                            "building": {
                                                "id": 1,
                                                "slug_bg": "starlight",
                                                "slug_en": "starlight"
                                            },
                                            "entrance": {
                                                "id": 1,
                                                "slug_bg": "a",
                                                "slug_en": "a"
                                            },
                                            "floor": {
                                                "id": 1,
                                                "slug_bg": "1",
                                                "slug_en": "1"
                                            }
                                        }
                                    ],
                                    "links": {
                                        "self": "link-value"
                                    }
                                }
                            },
                            {
                                "id": 44,
                                "image": null,
                                "coords": "125, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                                "degrees": 6,
                                "title_bg": "2",
                                "slug_bg": "2",
                                "seo_title_bg": "2 | Меркурий 99",
                                "seo_description_bg": null,
                                "seo_keywords_bg": null,
                                "hide_sitemap_bg": 0,
                                "title_en": "2",
                                "slug_en": "2",
                                "seo_title_en": "2 | Mercury 99",
                                "seo_description_en": null,
                                "seo_keywords_en": null,
                                "hide_sitemap_en": 0,
                                "building": {
                                    "id": 1,
                                    "slug_bg": "starlight",
                                    "slug_en": "starlight"
                                },
                                "entrance": {
                                    "id": 1,
                                    "slug_bg": "a",
                                    "slug_en": "a"
                                },
                                "apartments": {
                                    "data": [
                                        {
                                            "id": 194,
                                            "coords": "",
                                            "degrees": null,
                                            "status": 1,
                                            "floor_for_filters": null,
                                            "rooms": 1,
                                            "total_area": "80.65",
                                            "living_area": "0",
                                            "price": 122500,
                                            "price_m2": 1519,
                                            "image": null,
                                            "image2": null,
                                            "mezonet": 0,
                                            "panorama": 0,
                                            "pdf": null,
                                            "gallery": null,
                                            "title_bg": "Апартамент 3",
                                            "text_bg": "",
                                            "details_bg": null,
                                            "slug_bg": "apartament-3",
                                            "seo_title_bg": "Апартамент 3 | Меркурий 99",
                                            "seo_description_bg": null,
                                            "seo_keywords_bg": null,
                                            "hide_sitemap_bg": 0,
                                            "title_en": "Apartment 3",
                                            "text_en": "",
                                            "details_en": null,
                                            "slug_en": "apartment-3",
                                            "seo_title_en": "Apartment 3 | Mercury 99",
                                            "seo_description_en": null,
                                            "seo_keywords_en": null,
                                            "hide_sitemap_en": 0,
                                            "building": {
                                                "id": 1,
                                                "slug_bg": "starlight",
                                                "slug_en": "starlight"
                                            },
                                            "entrance": {
                                                "id": 1,
                                                "slug_bg": "a",
                                                "slug_en": "a"
                                            },
                                            "floor": {
                                                "id": 1,
                                                "slug_bg": "2",
                                                "slug_en": "2"
                                            }
                                        },
                                        {
                                            "id": 193,
                                            "coords": "",
                                            "degrees": null,
                                            "status": 2,
                                            "floor_for_filters": null,
                                            "rooms": 1,
                                            "total_area": "80.65",
                                            "living_area": "0",
                                            "price": 136000,
                                            "price_m2": 1686,
                                            "image": null,
                                            "image2": null,
                                            "mezonet": 0,
                                            "panorama": 0,
                                            "pdf": null,
                                            "gallery": null,
                                            "title_bg": "Апартамент 4",
                                            "text_bg": "",
                                            "details_bg": null,
                                            "slug_bg": "apartament-4",
                                            "seo_title_bg": "Апартамент 4 | Меркурий 99",
                                            "seo_description_bg": null,
                                            "seo_keywords_bg": null,
                                            "hide_sitemap_bg": 0,
                                            "title_en": "Apartment 4",
                                            "text_en": "",
                                            "details_en": null,
                                            "slug_en": "apartment-4",
                                            "seo_title_en": "Apartment 4 | Mercury 99",
                                            "seo_description_en": null,
                                            "seo_keywords_en": null,
                                            "hide_sitemap_en": 0,
                                            "building": {
                                                "id": 1,
                                                "slug_bg": "starlight",
                                                "slug_en": "starlight"
                                            },
                                            "entrance": {
                                                "id": 1,
                                                "slug_bg": "a",
                                                "slug_en": "a"
                                            },
                                            "floor": {
                                                "id": 1,
                                                "slug_bg": "2",
                                                "slug_en": "2"
                                            }
                                        }
                                    ],
                                    "links": {
                                        "self": "link-value"
                                    }
                                }
                            }
                        ],
                        "links": {
                            "self": "link-value"
                        }
                    }
                },
                {
                    "id": 11,
                    "image": null,
                    "coords": "coords",
                    "title_bg": "Б",
                    "slug_bg": "b",
                    "seo_title_bg": "Б | Меркурий 99",
                    "seo_description_bg": null,
                    "seo_keywords_bg": null,
                    "hide_sitemap_bg": 0,
                    "title_en": "B",
                    "slug_en": "b",
                    "seo_title_en": "B | Mercury 99",
                    "seo_description_en": null,
                    "seo_keywords_en": null,
                    "hide_sitemap_en": 0,
                    "building": {
                        "id": 1,
                        "slug_bg": "starlight",
                        "slug_en": "starlight"
                    },
                    "floors": {
                        "data": [
                            {
                                "id": 45,
                                "image": null,
                                "coords": "225, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                                "degrees": 6,
                                "title_bg": "1",
                                "slug_bg": "1",
                                "seo_title_bg": "1 | Меркурий 99",
                                "seo_description_bg": null,
                                "seo_keywords_bg": null,
                                "hide_sitemap_bg": 0,
                                "title_en": "1",
                                "slug_en": "1",
                                "seo_title_en": "1 | Mercury 99",
                                "seo_description_en": null,
                                "seo_keywords_en": null,
                                "hide_sitemap_en": 0,
                                "building": {
                                    "id": 1,
                                    "slug_bg": "starlight",
                                    "slug_en": "starlight"
                                },
                                "entrance": {
                                    "id": 11,
                                    "slug_bg": "b",
                                    "slug_en": "b"
                                },
                                "apartments": {
                                    "data": [
                                        {
                                            "id": 195,
                                            "coords": "",
                                            "degrees": null,
                                            "status": 1,
                                            "floor_for_filters": null,
                                            "rooms": 3,
                                            "total_area": "150.86",
                                            "living_area": "0",
                                            "price": 141000,
                                            "price_m2": 935,
                                            "image": null,
                                            "image2": null,
                                            "mezonet": 0,
                                            "panorama": 0,
                                            "pdf": null,
                                            "gallery": null,
                                            "title_bg": "Апартамент 5",
                                            "text_bg": "",
                                            "details_bg": null,
                                            "slug_bg": "apartament-5",
                                            "seo_title_bg": "Апартамент 5 | Меркурий 99",
                                            "seo_description_bg": null,
                                            "seo_keywords_bg": null,
                                            "hide_sitemap_bg": 0,
                                            "title_en": "Apartment 5",
                                            "text_en": "",
                                            "details_en": null,
                                            "slug_en": "apartment-5",
                                            "seo_title_en": "Apartment 5 | Mercury 99",
                                            "seo_description_en": null,
                                            "seo_keywords_en": null,
                                            "hide_sitemap_en": 0,
                                            "building": {
                                                "id": 1,
                                                "slug_bg": "starlight",
                                                "slug_en": "starlight"
                                            },
                                            "entrance": {
                                                "id": 11,
                                                "slug_bg": "b",
                                                "slug_en": "b"
                                            },
                                            "floor": {
                                                "id": 11,
                                                "slug_bg": "1",
                                                "slug_en": "1"
                                            }
                                        },
                                        {
                                            "id": 196,
                                            "coords": "",
                                            "degrees": null,
                                            "status": 1,
                                            "floor_for_filters": null,
                                            "rooms": 1,
                                            "total_area": "121.26",
                                            "living_area": "0",
                                            "price": 100000,
                                            "price_m2": 825,
                                            "image": null,
                                            "image2": null,
                                            "mezonet": 0,
                                            "panorama": 0,
                                            "pdf": null,
                                            "gallery": null,
                                            "title_bg": "Апартамент 6",
                                            "text_bg": "",
                                            "details_bg": null,
                                            "slug_bg": "apartament-6",
                                            "seo_title_bg": "Апартамент 6 | Меркурий 99",
                                            "seo_description_bg": null,
                                            "seo_keywords_bg": null,
                                            "hide_sitemap_bg": 0,
                                            "title_en": "Apartment 6",
                                            "text_en": "",
                                            "details_en": null,
                                            "slug_en": "apartment-6",
                                            "seo_title_en": "Apartment 6 | Mercury 99",
                                            "seo_description_en": null,
                                            "seo_keywords_en": null,
                                            "hide_sitemap_en": 0,
                                            "building": {
                                                "id": 1,
                                                "slug_bg": "starlight",
                                                "slug_en": "starlight"
                                            },
                                            "entrance": {
                                                "id": 11,
                                                "slug_bg": "b",
                                                "slug_en": "b"
                                            },
                                            "floor": {
                                                "id": 11,
                                                "slug_bg": "1",
                                                "slug_en": "1"
                                            }
                                        }
                                    ],
                                    "links": {
                                        "self": "link-value"
                                    }
                                }
                            },
                            {
                                "id": 46,
                                "image": null,
                                "coords": "325, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                                "degrees": 6,
                                "title_bg": "2",
                                "slug_bg": "2",
                                "seo_title_bg": "2 | Меркурий 99",
                                "seo_description_bg": null,
                                "seo_keywords_bg": null,
                                "hide_sitemap_bg": 0,
                                "title_en": "2",
                                "slug_en": "2",
                                "seo_title_en": "2 | Mercury 99",
                                "seo_description_en": null,
                                "seo_keywords_en": null,
                                "hide_sitemap_en": 0,
                                "building": {
                                    "id": 1,
                                    "slug_bg": "starlight",
                                    "slug_en": "starlight"
                                },
                                "entrance": {
                                    "id": 11,
                                    "slug_bg": "b",
                                    "slug_en": "b"
                                },
                                "apartments": {
                                    "data": [
                                        {
                                            "id": 197,
                                            "coords": "",
                                            "degrees": null,
                                            "status": 3,
                                            "floor_for_filters": null,
                                            "rooms": 2,
                                            "total_area": "158.17",
                                            "living_area": "0",
                                            "price": 141000,
                                            "price_m2": 891,
                                            "image": null,
                                            "image2": null,
                                            "mezonet": 1,
                                            "panorama": 0,
                                            "pdf": null,
                                            "gallery": null,
                                            "title_bg": "Апартамент 7",
                                            "text_bg": "",
                                            "details_bg": null,
                                            "slug_bg": "apartament-7",
                                            "seo_title_bg": "Апартамент 7 | Меркурий 99",
                                            "seo_description_bg": null,
                                            "seo_keywords_bg": null,
                                            "hide_sitemap_bg": 0,
                                            "title_en": "Apartment 7",
                                            "text_en": "",
                                            "details_en": null,
                                            "slug_en": "apartment-7",
                                            "seo_title_en": "Apartment 7 | Mercury 99",
                                            "seo_description_en": null,
                                            "seo_keywords_en": null,
                                            "hide_sitemap_en": 0,
                                            "building": {
                                                "id": 1,
                                                "slug_bg": "starlight",
                                                "slug_en": "starlight"
                                            },
                                            "entrance": {
                                                "id": 11,
                                                "slug_bg": "b",
                                                "slug_en": "b"
                                            },
                                            "floor": {
                                                "id": 11,
                                                "slug_bg": "2",
                                                "slug_en": "2"
                                            }
                                        }
                                    ],
                                    "links": {
                                        "self": "link-value"
                                    }
                                }
                            }
                        ],
                        "links": {
                            "self": "link-value"
                        }
                    }
                }
            ],
            "links": {
                "self": "link-value"
            }
        },
        "floors": {
            "data": [
                {
                    "id": 1,
                    "image": "http:\/\/localhost\/uploads\/images\/big\/57_floor1.png",
                    "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                    "degrees": 6,
                    "title_bg": "1",
                    "slug_bg": "1",
                    "seo_title_bg": "1 | Меркурий 99",
                    "seo_description_bg": null,
                    "seo_keywords_bg": null,
                    "hide_sitemap_bg": 0,
                    "title_en": "1",
                    "slug_en": "1",
                    "seo_title_en": "1 | Mercury 99",
                    "seo_description_en": null,
                    "seo_keywords_en": null,
                    "hide_sitemap_en": 0,
                    "building": {
                        "id": 1,
                        "slug_bg": "starlight",
                        "slug_en": "starlight"
                    },
                    "entrance": {
                        "id": 1,
                        "slug_bg": "a",
                        "slug_en": "a"
                    },
                    "apartments": {
                        "data": [
                            {
                                "id": 1,
                                "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                                "degrees": null,
                                "status": 1,
                                "floor_for_filters": null,
                                "rooms": 2,
                                "total_area": "68.75",
                                "living_area": "0",
                                "price": 100000,
                                "price_m2": 1455,
                                "image": null,
                                "image2": null,
                                "mezonet": 0,
                                "panorama": 0,
                                "pdf": null,
                                "gallery": null,
                                "title_bg": "Апартамент 1",
                                "text_bg": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                                "details_bg": null,
                                "slug_bg": "apartament-1",
                                "seo_title_bg": "Апартамент 1 | Меркурий 99",
                                "seo_description_bg": null,
                                "seo_keywords_bg": null,
                                "hide_sitemap_bg": 0,
                                "title_en": "Apartment 1",
                                "text_en": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                                "details_en": null,
                                "slug_en": "apartment-1",
                                "seo_title_en": "Apartment 1 | Mercury 99",
                                "seo_description_en": null,
                                "seo_keywords_en": null,
                                "hide_sitemap_en": 0,
                                "building": {
                                    "id": 1,
                                    "slug_bg": "starlight",
                                    "slug_en": "starlight"
                                },
                                "entrance": {
                                    "id": 1,
                                    "slug_bg": "a",
                                    "slug_en": "a"
                                },
                                "floor": {
                                    "id": 1,
                                    "slug_bg": "1",
                                    "slug_en": "1"
                                }
                            },
                            {
                                "id": 192,
                                "coords": "",
                                "degrees": null,
                                "status": 1,
                                "floor_for_filters": null,
                                "rooms": 3,
                                "total_area": "121.26",
                                "living_area": "0",
                                "price": 136000,
                                "price_m2": 1122,
                                "image": null,
                                "image2": null,
                                "mezonet": 0,
                                "panorama": 0,
                                "pdf": null,
                                "gallery": null,
                                "title_bg": "Апартамент 2",
                                "text_bg": "",
                                "details_bg": null,
                                "slug_bg": "apartament-2",
                                "seo_title_bg": "Апартамент 2 | Меркурий 99",
                                "seo_description_bg": null,
                                "seo_keywords_bg": null,
                                "hide_sitemap_bg": 0,
                                "title_en": "Apartment 2",
                                "text_en": "",
                                "details_en": null,
                                "slug_en": "apartment-2",
                                "seo_title_en": "Apartment 2 | Mercury 99",
                                "seo_description_en": null,
                                "seo_keywords_en": null,
                                "hide_sitemap_en": 0,
                                "building": {
                                    "id": 1,
                                    "slug_bg": "starlight",
                                    "slug_en": "starlight"
                                },
                                "entrance": {
                                    "id": 1,
                                    "slug_bg": "a",
                                    "slug_en": "a"
                                },
                                "floor": {
                                    "id": 1,
                                    "slug_bg": "1",
                                    "slug_en": "1"
                                }
                            }
                        ],
                        "links": {
                            "self": "link-value"
                        }
                    }
                },
                {
                    "id": 44,
                    "image": null,
                    "coords": "125, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                    "degrees": 6,
                    "title_bg": "2",
                    "slug_bg": "2",
                    "seo_title_bg": "2 | Меркурий 99",
                    "seo_description_bg": null,
                    "seo_keywords_bg": null,
                    "hide_sitemap_bg": 0,
                    "title_en": "2",
                    "slug_en": "2",
                    "seo_title_en": "2 | Mercury 99",
                    "seo_description_en": null,
                    "seo_keywords_en": null,
                    "hide_sitemap_en": 0,
                    "building": {
                        "id": 1,
                        "slug_bg": "starlight",
                        "slug_en": "starlight"
                    },
                    "entrance": {
                        "id": 1,
                        "slug_bg": "a",
                        "slug_en": "a"
                    },
                    "apartments": {
                        "data": [
                            {
                                "id": 193,
                                "coords": "",
                                "degrees": null,
                                "status": 2,
                                "floor_for_filters": null,
                                "rooms": 1,
                                "total_area": "80.65",
                                "living_area": "0",
                                "price": 136000,
                                "price_m2": 1686,
                                "image": null,
                                "image2": null,
                                "mezonet": 0,
                                "panorama": 0,
                                "pdf": null,
                                "gallery": null,
                                "title_bg": "Апартамент 4",
                                "text_bg": "",
                                "details_bg": null,
                                "slug_bg": "apartament-4",
                                "seo_title_bg": "Апартамент 4 | Меркурий 99",
                                "seo_description_bg": null,
                                "seo_keywords_bg": null,
                                "hide_sitemap_bg": 0,
                                "title_en": "Apartment 4",
                                "text_en": "",
                                "details_en": null,
                                "slug_en": "apartment-4",
                                "seo_title_en": "Apartment 4 | Mercury 99",
                                "seo_description_en": null,
                                "seo_keywords_en": null,
                                "hide_sitemap_en": 0,
                                "building": {
                                    "id": 1,
                                    "slug_bg": "starlight",
                                    "slug_en": "starlight"
                                },
                                "entrance": {
                                    "id": 1,
                                    "slug_bg": "a",
                                    "slug_en": "a"
                                },
                                "floor": {
                                    "id": 1,
                                    "slug_bg": "2",
                                    "slug_en": "2"
                                }
                            },
                            {
                                "id": 194,
                                "coords": "",
                                "degrees": null,
                                "status": 1,
                                "floor_for_filters": null,
                                "rooms": 1,
                                "total_area": "80.65",
                                "living_area": "0",
                                "price": 122500,
                                "price_m2": 1519,
                                "image": null,
                                "image2": null,
                                "mezonet": 0,
                                "panorama": 0,
                                "pdf": null,
                                "gallery": null,
                                "title_bg": "Апартамент 3",
                                "text_bg": "",
                                "details_bg": null,
                                "slug_bg": "apartament-3",
                                "seo_title_bg": "Апартамент 3 | Меркурий 99",
                                "seo_description_bg": null,
                                "seo_keywords_bg": null,
                                "hide_sitemap_bg": 0,
                                "title_en": "Apartment 3",
                                "text_en": "",
                                "details_en": null,
                                "slug_en": "apartment-3",
                                "seo_title_en": "Apartment 3 | Mercury 99",
                                "seo_description_en": null,
                                "seo_keywords_en": null,
                                "hide_sitemap_en": 0,
                                "building": {
                                    "id": 1,
                                    "slug_bg": "starlight",
                                    "slug_en": "starlight"
                                },
                                "entrance": {
                                    "id": 1,
                                    "slug_bg": "a",
                                    "slug_en": "a"
                                },
                                "floor": {
                                    "id": 1,
                                    "slug_bg": "2",
                                    "slug_en": "2"
                                }
                            }
                        ],
                        "links": {
                            "self": "link-value"
                        }
                    }
                },
                {
                    "id": 45,
                    "image": null,
                    "coords": "225, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                    "degrees": 6,
                    "title_bg": "1",
                    "slug_bg": "1",
                    "seo_title_bg": "1 | Меркурий 99",
                    "seo_description_bg": null,
                    "seo_keywords_bg": null,
                    "hide_sitemap_bg": 0,
                    "title_en": "1",
                    "slug_en": "1",
                    "seo_title_en": "1 | Mercury 99",
                    "seo_description_en": null,
                    "seo_keywords_en": null,
                    "hide_sitemap_en": 0,
                    "building": {
                        "id": 1,
                        "slug_bg": "starlight",
                        "slug_en": "starlight"
                    },
                    "entrance": {
                        "id": 11,
                        "slug_bg": "b",
                        "slug_en": "b"
                    },
                    "apartments": {
                        "data": [
                            {
                                "id": 195,
                                "coords": "",
                                "degrees": null,
                                "status": 1,
                                "floor_for_filters": null,
                                "rooms": 3,
                                "total_area": "150.86",
                                "living_area": "0",
                                "price": 141000,
                                "price_m2": 935,
                                "image": null,
                                "image2": null,
                                "mezonet": 0,
                                "panorama": 0,
                                "pdf": null,
                                "gallery": null,
                                "title_bg": "Апартамент 5",
                                "text_bg": "",
                                "details_bg": null,
                                "slug_bg": "apartament-5",
                                "seo_title_bg": "Апартамент 5 | Меркурий 99",
                                "seo_description_bg": null,
                                "seo_keywords_bg": null,
                                "hide_sitemap_bg": 0,
                                "title_en": "Apartment 5",
                                "text_en": "",
                                "details_en": null,
                                "slug_en": "apartment-5",
                                "seo_title_en": "Apartment 5 | Mercury 99",
                                "seo_description_en": null,
                                "seo_keywords_en": null,
                                "hide_sitemap_en": 0,
                                "building": {
                                    "id": 1,
                                    "slug_bg": "starlight",
                                    "slug_en": "starlight"
                                },
                                "entrance": {
                                    "id": 11,
                                    "slug_bg": "b",
                                    "slug_en": "b"
                                },
                                "floor": {
                                    "id": 11,
                                    "slug_bg": "1",
                                    "slug_en": "1"
                                }
                            },
                            {
                                "id": 196,
                                "coords": "",
                                "degrees": null,
                                "status": 1,
                                "floor_for_filters": null,
                                "rooms": 1,
                                "total_area": "121.26",
                                "living_area": "0",
                                "price": 100000,
                                "price_m2": 825,
                                "image": null,
                                "image2": null,
                                "mezonet": 0,
                                "panorama": 0,
                                "pdf": null,
                                "gallery": null,
                                "title_bg": "Апартамент 6",
                                "text_bg": "",
                                "details_bg": null,
                                "slug_bg": "apartament-6",
                                "seo_title_bg": "Апартамент 6 | Меркурий 99",
                                "seo_description_bg": null,
                                "seo_keywords_bg": null,
                                "hide_sitemap_bg": 0,
                                "title_en": "Apartment 6",
                                "text_en": "",
                                "details_en": null,
                                "slug_en": "apartment-6",
                                "seo_title_en": "Apartment 6 | Mercury 99",
                                "seo_description_en": null,
                                "seo_keywords_en": null,
                                "hide_sitemap_en": 0,
                                "building": {
                                    "id": 1,
                                    "slug_bg": "starlight",
                                    "slug_en": "starlight"
                                },
                                "entrance": {
                                    "id": 11,
                                    "slug_bg": "b",
                                    "slug_en": "b"
                                },
                                "floor": {
                                    "id": 11,
                                    "slug_bg": "1",
                                    "slug_en": "1"
                                }
                            }
                        ],
                        "links": {
                            "self": "link-value"
                        }
                    }
                },
                {
                    "id": 46,
                    "image": null,
                    "coords": "325, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                    "degrees": 6,
                    "title_bg": "2",
                    "slug_bg": "2",
                    "seo_title_bg": "2 | Меркурий 99",
                    "seo_description_bg": null,
                    "seo_keywords_bg": null,
                    "hide_sitemap_bg": 0,
                    "title_en": "2",
                    "slug_en": "2",
                    "seo_title_en": "2 | Mercury 99",
                    "seo_description_en": null,
                    "seo_keywords_en": null,
                    "hide_sitemap_en": 0,
                    "building": {
                        "id": 1,
                        "slug_bg": "starlight",
                        "slug_en": "starlight"
                    },
                    "entrance": {
                        "id": 11,
                        "slug_bg": "b",
                        "slug_en": "b"
                    },
                    "apartments": {
                        "data": [
                            {
                                "id": 197,
                                "coords": "",
                                "degrees": null,
                                "status": 3,
                                "floor_for_filters": null,
                                "rooms": 2,
                                "total_area": "158.17",
                                "living_area": "0",
                                "price": 141000,
                                "price_m2": 891,
                                "image": null,
                                "image2": null,
                                "mezonet": 1,
                                "panorama": 0,
                                "pdf": null,
                                "gallery": null,
                                "title_bg": "Апартамент 7",
                                "text_bg": "",
                                "details_bg": null,
                                "slug_bg": "apartament-7",
                                "seo_title_bg": "Апартамент 7 | Меркурий 99",
                                "seo_description_bg": null,
                                "seo_keywords_bg": null,
                                "hide_sitemap_bg": 0,
                                "title_en": "Apartment 7",
                                "text_en": "",
                                "details_en": null,
                                "slug_en": "apartment-7",
                                "seo_title_en": "Apartment 7 | Mercury 99",
                                "seo_description_en": null,
                                "seo_keywords_en": null,
                                "hide_sitemap_en": 0,
                                "building": {
                                    "id": 1,
                                    "slug_bg": "starlight",
                                    "slug_en": "starlight"
                                },
                                "entrance": {
                                    "id": 11,
                                    "slug_bg": "b",
                                    "slug_en": "b"
                                },
                                "floor": {
                                    "id": 11,
                                    "slug_bg": "2",
                                    "slug_en": "2"
                                }
                            }
                        ],
                        "links": {
                            "self": "link-value"
                        }
                    }
                }
            ],
            "links": {
                "self": "link-value"
            }
        },
        "apartments": {
            "data": [
                {
                    "id": 1,
                    "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                    "degrees": null,
                    "status": 1,
                    "floor_for_filters": null,
                    "rooms": 2,
                    "total_area": "68.75",
                    "living_area": "0",
                    "price": 100000,
                    "price_m2": 1455,
                    "image": null,
                    "image2": null,
                    "mezonet": 0,
                    "panorama": 0,
                    "pdf": null,
                    "gallery": null,
                    "title_bg": "Апартамент 1",
                    "text_bg": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                    "details_bg": null,
                    "slug_bg": "apartament-1",
                    "seo_title_bg": "Апартамент 1 | Меркурий 99",
                    "seo_description_bg": null,
                    "seo_keywords_bg": null,
                    "hide_sitemap_bg": 0,
                    "title_en": "Apartment 1",
                    "text_en": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                    "details_en": null,
                    "slug_en": "apartment-1",
                    "seo_title_en": "Apartment 1 | Mercury 99",
                    "seo_description_en": null,
                    "seo_keywords_en": null,
                    "hide_sitemap_en": 0,
                    "building": {
                        "id": 1,
                        "slug_bg": "starlight",
                        "slug_en": "starlight"
                    },
                    "entrance": {
                        "id": 1,
                        "slug_bg": "a",
                        "slug_en": "a"
                    },
                    "floor": {
                        "id": 1,
                        "slug_bg": "1",
                        "slug_en": "1"
                    }
                },
                {
                    "id": 192,
                    "coords": "",
                    "degrees": null,
                    "status": 1,
                    "floor_for_filters": null,
                    "rooms": 3,
                    "total_area": "121.26",
                    "living_area": "0",
                    "price": 136000,
                    "price_m2": 1122,
                    "image": null,
                    "image2": null,
                    "mezonet": 0,
                    "panorama": 0,
                    "pdf": null,
                    "gallery": null,
                    "title_bg": "Апартамент 2",
                    "text_bg": "",
                    "details_bg": null,
                    "slug_bg": "apartament-2",
                    "seo_title_bg": "Апартамент 2 | Меркурий 99",
                    "seo_description_bg": null,
                    "seo_keywords_bg": null,
                    "hide_sitemap_bg": 0,
                    "title_en": "Apartment 2",
                    "text_en": "",
                    "details_en": null,
                    "slug_en": "apartment-2",
                    "seo_title_en": "Apartment 2 | Mercury 99",
                    "seo_description_en": null,
                    "seo_keywords_en": null,
                    "hide_sitemap_en": 0,
                    "building": {
                        "id": 1,
                        "slug_bg": "starlight",
                        "slug_en": "starlight"
                    },
                    "entrance": {
                        "id": 1,
                        "slug_bg": "a",
                        "slug_en": "a"
                    },
                    "floor": {
                        "id": 1,
                        "slug_bg": "1",
                        "slug_en": "1"
                    }
                },
                {
                    "id": 194,
                    "coords": "",
                    "degrees": null,
                    "status": 1,
                    "floor_for_filters": null,
                    "rooms": 1,
                    "total_area": "80.65",
                    "living_area": "0",
                    "price": 122500,
                    "price_m2": 1519,
                    "image": null,
                    "image2": null,
                    "mezonet": 0,
                    "panorama": 0,
                    "pdf": null,
                    "gallery": null,
                    "title_bg": "Апартамент 3",
                    "text_bg": "",
                    "details_bg": null,
                    "slug_bg": "apartament-3",
                    "seo_title_bg": "Апартамент 3 | Меркурий 99",
                    "seo_description_bg": null,
                    "seo_keywords_bg": null,
                    "hide_sitemap_bg": 0,
                    "title_en": "Apartment 3",
                    "text_en": "",
                    "details_en": null,
                    "slug_en": "apartment-3",
                    "seo_title_en": "Apartment 3 | Mercury 99",
                    "seo_description_en": null,
                    "seo_keywords_en": null,
                    "hide_sitemap_en": 0,
                    "building": {
                        "id": 1,
                        "slug_bg": "starlight",
                        "slug_en": "starlight"
                    },
                    "entrance": {
                        "id": 1,
                        "slug_bg": "a",
                        "slug_en": "a"
                    },
                    "floor": {
                        "id": 1,
                        "slug_bg": "2",
                        "slug_en": "2"
                    }
                },
                {
                    "id": 193,
                    "coords": "",
                    "degrees": null,
                    "status": 2,
                    "floor_for_filters": null,
                    "rooms": 1,
                    "total_area": "80.65",
                    "living_area": "0",
                    "price": 136000,
                    "price_m2": 1686,
                    "image": null,
                    "image2": null,
                    "mezonet": 0,
                    "panorama": 0,
                    "pdf": null,
                    "gallery": null,
                    "title_bg": "Апартамент 4",
                    "text_bg": "",
                    "details_bg": null,
                    "slug_bg": "apartament-4",
                    "seo_title_bg": "Апартамент 4 | Меркурий 99",
                    "seo_description_bg": null,
                    "seo_keywords_bg": null,
                    "hide_sitemap_bg": 0,
                    "title_en": "Apartment 4",
                    "text_en": "",
                    "details_en": null,
                    "slug_en": "apartment-4",
                    "seo_title_en": "Apartment 4 | Mercury 99",
                    "seo_description_en": null,
                    "seo_keywords_en": null,
                    "hide_sitemap_en": 0,
                    "building": {
                        "id": 1,
                        "slug_bg": "starlight",
                        "slug_en": "starlight"
                    },
                    "entrance": {
                        "id": 1,
                        "slug_bg": "a",
                        "slug_en": "a"
                    },
                    "floor": {
                        "id": 1,
                        "slug_bg": "2",
                        "slug_en": "2"
                    }
                },
                {
                    "id": 195,
                    "coords": "",
                    "degrees": null,
                    "status": 1,
                    "floor_for_filters": null,
                    "rooms": 3,
                    "total_area": "150.86",
                    "living_area": "0",
                    "price": 141000,
                    "price_m2": 935,
                    "image": null,
                    "image2": null,
                    "mezonet": 0,
                    "panorama": 0,
                    "pdf": null,
                    "gallery": null,
                    "title_bg": "Апартамент 5",
                    "text_bg": "",
                    "details_bg": null,
                    "slug_bg": "apartament-5",
                    "seo_title_bg": "Апартамент 5 | Меркурий 99",
                    "seo_description_bg": null,
                    "seo_keywords_bg": null,
                    "hide_sitemap_bg": 0,
                    "title_en": "Apartment 5",
                    "text_en": "",
                    "details_en": null,
                    "slug_en": "apartment-5",
                    "seo_title_en": "Apartment 5 | Mercury 99",
                    "seo_description_en": null,
                    "seo_keywords_en": null,
                    "hide_sitemap_en": 0,
                    "building": {
                        "id": 1,
                        "slug_bg": "starlight",
                        "slug_en": "starlight"
                    },
                    "entrance": {
                        "id": 11,
                        "slug_bg": "b",
                        "slug_en": "b"
                    },
                    "floor": {
                        "id": 11,
                        "slug_bg": "1",
                        "slug_en": "1"
                    }
                },
                {
                    "id": 196,
                    "coords": "",
                    "degrees": null,
                    "status": 1,
                    "floor_for_filters": null,
                    "rooms": 1,
                    "total_area": "121.26",
                    "living_area": "0",
                    "price": 100000,
                    "price_m2": 825,
                    "image": null,
                    "image2": null,
                    "mezonet": 0,
                    "panorama": 0,
                    "pdf": null,
                    "gallery": null,
                    "title_bg": "Апартамент 6",
                    "text_bg": "",
                    "details_bg": null,
                    "slug_bg": "apartament-6",
                    "seo_title_bg": "Апартамент 6 | Меркурий 99",
                    "seo_description_bg": null,
                    "seo_keywords_bg": null,
                    "hide_sitemap_bg": 0,
                    "title_en": "Apartment 6",
                    "text_en": "",
                    "details_en": null,
                    "slug_en": "apartment-6",
                    "seo_title_en": "Apartment 6 | Mercury 99",
                    "seo_description_en": null,
                    "seo_keywords_en": null,
                    "hide_sitemap_en": 0,
                    "building": {
                        "id": 1,
                        "slug_bg": "starlight",
                        "slug_en": "starlight"
                    },
                    "entrance": {
                        "id": 11,
                        "slug_bg": "b",
                        "slug_en": "b"
                    },
                    "floor": {
                        "id": 11,
                        "slug_bg": "1",
                        "slug_en": "1"
                    }
                },
                {
                    "id": 197,
                    "coords": "",
                    "degrees": null,
                    "status": 3,
                    "floor_for_filters": null,
                    "rooms": 2,
                    "total_area": "158.17",
                    "living_area": "0",
                    "price": 141000,
                    "price_m2": 891,
                    "image": null,
                    "image2": null,
                    "mezonet": 1,
                    "panorama": 0,
                    "pdf": null,
                    "gallery": null,
                    "title_bg": "Апартамент 7",
                    "text_bg": "",
                    "details_bg": null,
                    "slug_bg": "apartament-7",
                    "seo_title_bg": "Апартамент 7 | Меркурий 99",
                    "seo_description_bg": null,
                    "seo_keywords_bg": null,
                    "hide_sitemap_bg": 0,
                    "title_en": "Apartment 7",
                    "text_en": "",
                    "details_en": null,
                    "slug_en": "apartment-7",
                    "seo_title_en": "Apartment 7 | Mercury 99",
                    "seo_description_en": null,
                    "seo_keywords_en": null,
                    "hide_sitemap_en": 0,
                    "building": {
                        "id": 1,
                        "slug_bg": "starlight",
                        "slug_en": "starlight"
                    },
                    "entrance": {
                        "id": 11,
                        "slug_bg": "b",
                        "slug_en": "b"
                    },
                    "floor": {
                        "id": 11,
                        "slug_bg": "2",
                        "slug_en": "2"
                    }
                }
            ],
            "links": {
                "self": "link-value"
            }
        }
    }
}

HTTP Request

GET api/building/{id}

Get All Buildings.

Example request:

curl -X GET "http://mercury-api.imigix.com/api/buildings" \
-H "Accept: application/json"
var settings = {
    "async": true,
    "crossDomain": true,
    "url": "http://mercury-api.imigix.com/api/buildings",
    "method": "GET",
    "headers": {
        "accept": "application/json"
    }
}

$.ajax(settings).done(function (response) {
    console.log(response);
});

Example response:

{
    "data": [
        {
            "id": 5,
            "image": "http:\/\/localhost\/uploads\/images\/big\/76_starlight-building.jpg",
            "thumb": null,
            "pdf": null,
            "map": "http:\/\/localhost\/uploads\/images\/big\/17_build-starlight.jpg",
            "status": 1,
            "google_map": "https:\/\/www.google.com\/maps\/embed?pb=!1m17!1m8!1m3!1d11723.450867031348!2d23.304417599999997!3d42.72779635!3m2!1i1024!2i768!4f13.1!4m6!3e0!4m3!3m2!1d42.7293567!2d23.2992676!4m0!5e0!3m2!1sbg!2sbg!4v1539100876083",
            "use_svg": 0,
            "gallery": null,
            "title_bg": "Старлайт ОРИГИНАЛ",
            "annonce_bg": "Кратък анонс за заглавие в слайдер",
            "text_bg": "",
            "slug_bg": "starlayt-original",
            "seo_title_bg": "Старлайт ОРИГИНАЛ | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "Startlight original",
            "annonce_en": "EN Кратък анонс за заглавие в слайдер",
            "text_en": "",
            "slug_en": "startlight-original",
            "seo_title_en": "Startlight original | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0,
            "entrances": {
                "data": [],
                "links": {
                    "self": "link-value"
                }
            }
        },
        {
            "id": 1,
            "image": "http:\/\/localhost\/uploads\/images\/big\/17_build-starlight.jpg",
            "thumb": null,
            "pdf": null,
            "map": "http:\/\/localhost\/uploads\/images\/big\/16_map.jpg",
            "status": 1,
            "google_map": "https:\/\/www.google.com\/maps\/embed?pb=!1m17!1m8!1m3!1d11723.450867031348!2d23.304417599999997!3d42.72779635!3m2!1i1024!2i768!4f13.1!4m6!3e0!4m3!3m2!1d42.7293567!2d23.2992676!4m0!5e0!3m2!1sbg!2sbg!4v1539100876083",
            "use_svg": 0,
            "gallery": null,
            "title_bg": "Старлайт Тестова",
            "annonce_bg": "Lorem Ipsum е елементарен примерен текст, използван в печатарската и типографската индустрия.",
            "text_bg": "<p>A collection of textile samples lay spread out on the table - Samsa was a travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer. Gregor then turned to look out the window at the dull weather.&nbsp;A collection of textile samples lay spread out on the table - Samsa was a travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer. Gregor then turned to look out the window at the dull weather. &nbsp;<\/p>\r\n\r\n<p>A collection of textile samples lay spread out on the table - Samsa was a travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer. Gregor then turned to look out the window at the dull weather.<\/p>",
            "slug_bg": "starlight",
            "seo_title_bg": "Старлайт Тестова | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "Starlight Testing",
            "annonce_en": "Gregor then turned to look out the window at the dull weather.",
            "text_en": "<p>A collection of textile samples lay spread out on the table - Samsa was a travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer. Gregor then turned to look out the window at the dull weather.&nbsp;A collection of textile samples lay spread out on the table - Samsa was a travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer. Gregor then turned to look out the window at the dull weather. &nbsp;<\/p>\r\n\r\n<p>A collection of textile samples lay spread out on the table - Samsa was a travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer. Gregor then turned to look out the window at the dull weather.<\/p>",
            "slug_en": "starlight",
            "seo_title_en": "Starlight Testing | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0,
            "entrances": {
                "data": [
                    {
                        "id": 1,
                        "image": null,
                        "coords": "coords",
                        "title_bg": "A",
                        "slug_bg": "a",
                        "seo_title_bg": "A | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "A",
                        "slug_en": "a",
                        "seo_title_en": "A | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "floors": {
                            "data": [
                                {
                                    "id": 1,
                                    "image": "http:\/\/localhost\/uploads\/images\/big\/57_floor1.png",
                                    "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                                    "degrees": 6,
                                    "title_bg": "1",
                                    "slug_bg": "1",
                                    "seo_title_bg": "1 | Меркурий 99",
                                    "seo_description_bg": null,
                                    "seo_keywords_bg": null,
                                    "hide_sitemap_bg": 0,
                                    "title_en": "1",
                                    "slug_en": "1",
                                    "seo_title_en": "1 | Mercury 99",
                                    "seo_description_en": null,
                                    "seo_keywords_en": null,
                                    "hide_sitemap_en": 0,
                                    "building": {
                                        "id": 1,
                                        "slug_bg": "starlight",
                                        "slug_en": "starlight"
                                    },
                                    "entrance": {
                                        "id": 1,
                                        "slug_bg": "a",
                                        "slug_en": "a"
                                    },
                                    "apartments": {
                                        "data": [
                                            {
                                                "id": 1,
                                                "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                                                "degrees": null,
                                                "status": 1,
                                                "floor_for_filters": null,
                                                "rooms": 2,
                                                "total_area": "68.75",
                                                "living_area": "0",
                                                "price": 100000,
                                                "price_m2": 1455,
                                                "image": null,
                                                "image2": null,
                                                "mezonet": 0,
                                                "panorama": 0,
                                                "pdf": null,
                                                "gallery": null,
                                                "title_bg": "Апартамент 1",
                                                "text_bg": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                                                "details_bg": null,
                                                "slug_bg": "apartament-1",
                                                "seo_title_bg": "Апартамент 1 | Меркурий 99",
                                                "seo_description_bg": null,
                                                "seo_keywords_bg": null,
                                                "hide_sitemap_bg": 0,
                                                "title_en": "Apartment 1",
                                                "text_en": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                                                "details_en": null,
                                                "slug_en": "apartment-1",
                                                "seo_title_en": "Apartment 1 | Mercury 99",
                                                "seo_description_en": null,
                                                "seo_keywords_en": null,
                                                "hide_sitemap_en": 0,
                                                "building": {
                                                    "id": 1,
                                                    "slug_bg": "starlight",
                                                    "slug_en": "starlight"
                                                },
                                                "entrance": {
                                                    "id": 1,
                                                    "slug_bg": "a",
                                                    "slug_en": "a"
                                                },
                                                "floor": {
                                                    "id": 1,
                                                    "slug_bg": "1",
                                                    "slug_en": "1"
                                                }
                                            },
                                            {
                                                "id": 192,
                                                "coords": "",
                                                "degrees": null,
                                                "status": 1,
                                                "floor_for_filters": null,
                                                "rooms": 3,
                                                "total_area": "121.26",
                                                "living_area": "0",
                                                "price": 136000,
                                                "price_m2": 1122,
                                                "image": null,
                                                "image2": null,
                                                "mezonet": 0,
                                                "panorama": 0,
                                                "pdf": null,
                                                "gallery": null,
                                                "title_bg": "Апартамент 2",
                                                "text_bg": "",
                                                "details_bg": null,
                                                "slug_bg": "apartament-2",
                                                "seo_title_bg": "Апартамент 2 | Меркурий 99",
                                                "seo_description_bg": null,
                                                "seo_keywords_bg": null,
                                                "hide_sitemap_bg": 0,
                                                "title_en": "Apartment 2",
                                                "text_en": "",
                                                "details_en": null,
                                                "slug_en": "apartment-2",
                                                "seo_title_en": "Apartment 2 | Mercury 99",
                                                "seo_description_en": null,
                                                "seo_keywords_en": null,
                                                "hide_sitemap_en": 0,
                                                "building": {
                                                    "id": 1,
                                                    "slug_bg": "starlight",
                                                    "slug_en": "starlight"
                                                },
                                                "entrance": {
                                                    "id": 1,
                                                    "slug_bg": "a",
                                                    "slug_en": "a"
                                                },
                                                "floor": {
                                                    "id": 1,
                                                    "slug_bg": "1",
                                                    "slug_en": "1"
                                                }
                                            }
                                        ],
                                        "links": {
                                            "self": "link-value"
                                        }
                                    }
                                },
                                {
                                    "id": 44,
                                    "image": null,
                                    "coords": "125, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                                    "degrees": 6,
                                    "title_bg": "2",
                                    "slug_bg": "2",
                                    "seo_title_bg": "2 | Меркурий 99",
                                    "seo_description_bg": null,
                                    "seo_keywords_bg": null,
                                    "hide_sitemap_bg": 0,
                                    "title_en": "2",
                                    "slug_en": "2",
                                    "seo_title_en": "2 | Mercury 99",
                                    "seo_description_en": null,
                                    "seo_keywords_en": null,
                                    "hide_sitemap_en": 0,
                                    "building": {
                                        "id": 1,
                                        "slug_bg": "starlight",
                                        "slug_en": "starlight"
                                    },
                                    "entrance": {
                                        "id": 1,
                                        "slug_bg": "a",
                                        "slug_en": "a"
                                    },
                                    "apartments": {
                                        "data": [
                                            {
                                                "id": 194,
                                                "coords": "",
                                                "degrees": null,
                                                "status": 1,
                                                "floor_for_filters": null,
                                                "rooms": 1,
                                                "total_area": "80.65",
                                                "living_area": "0",
                                                "price": 122500,
                                                "price_m2": 1519,
                                                "image": null,
                                                "image2": null,
                                                "mezonet": 0,
                                                "panorama": 0,
                                                "pdf": null,
                                                "gallery": null,
                                                "title_bg": "Апартамент 3",
                                                "text_bg": "",
                                                "details_bg": null,
                                                "slug_bg": "apartament-3",
                                                "seo_title_bg": "Апартамент 3 | Меркурий 99",
                                                "seo_description_bg": null,
                                                "seo_keywords_bg": null,
                                                "hide_sitemap_bg": 0,
                                                "title_en": "Apartment 3",
                                                "text_en": "",
                                                "details_en": null,
                                                "slug_en": "apartment-3",
                                                "seo_title_en": "Apartment 3 | Mercury 99",
                                                "seo_description_en": null,
                                                "seo_keywords_en": null,
                                                "hide_sitemap_en": 0,
                                                "building": {
                                                    "id": 1,
                                                    "slug_bg": "starlight",
                                                    "slug_en": "starlight"
                                                },
                                                "entrance": {
                                                    "id": 1,
                                                    "slug_bg": "a",
                                                    "slug_en": "a"
                                                },
                                                "floor": {
                                                    "id": 1,
                                                    "slug_bg": "2",
                                                    "slug_en": "2"
                                                }
                                            },
                                            {
                                                "id": 193,
                                                "coords": "",
                                                "degrees": null,
                                                "status": 2,
                                                "floor_for_filters": null,
                                                "rooms": 1,
                                                "total_area": "80.65",
                                                "living_area": "0",
                                                "price": 136000,
                                                "price_m2": 1686,
                                                "image": null,
                                                "image2": null,
                                                "mezonet": 0,
                                                "panorama": 0,
                                                "pdf": null,
                                                "gallery": null,
                                                "title_bg": "Апартамент 4",
                                                "text_bg": "",
                                                "details_bg": null,
                                                "slug_bg": "apartament-4",
                                                "seo_title_bg": "Апартамент 4 | Меркурий 99",
                                                "seo_description_bg": null,
                                                "seo_keywords_bg": null,
                                                "hide_sitemap_bg": 0,
                                                "title_en": "Apartment 4",
                                                "text_en": "",
                                                "details_en": null,
                                                "slug_en": "apartment-4",
                                                "seo_title_en": "Apartment 4 | Mercury 99",
                                                "seo_description_en": null,
                                                "seo_keywords_en": null,
                                                "hide_sitemap_en": 0,
                                                "building": {
                                                    "id": 1,
                                                    "slug_bg": "starlight",
                                                    "slug_en": "starlight"
                                                },
                                                "entrance": {
                                                    "id": 1,
                                                    "slug_bg": "a",
                                                    "slug_en": "a"
                                                },
                                                "floor": {
                                                    "id": 1,
                                                    "slug_bg": "2",
                                                    "slug_en": "2"
                                                }
                                            }
                                        ],
                                        "links": {
                                            "self": "link-value"
                                        }
                                    }
                                }
                            ],
                            "links": {
                                "self": "link-value"
                            }
                        }
                    },
                    {
                        "id": 11,
                        "image": null,
                        "coords": "coords",
                        "title_bg": "Б",
                        "slug_bg": "b",
                        "seo_title_bg": "Б | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "B",
                        "slug_en": "b",
                        "seo_title_en": "B | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "floors": {
                            "data": [
                                {
                                    "id": 45,
                                    "image": null,
                                    "coords": "225, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                                    "degrees": 6,
                                    "title_bg": "1",
                                    "slug_bg": "1",
                                    "seo_title_bg": "1 | Меркурий 99",
                                    "seo_description_bg": null,
                                    "seo_keywords_bg": null,
                                    "hide_sitemap_bg": 0,
                                    "title_en": "1",
                                    "slug_en": "1",
                                    "seo_title_en": "1 | Mercury 99",
                                    "seo_description_en": null,
                                    "seo_keywords_en": null,
                                    "hide_sitemap_en": 0,
                                    "building": {
                                        "id": 1,
                                        "slug_bg": "starlight",
                                        "slug_en": "starlight"
                                    },
                                    "entrance": {
                                        "id": 11,
                                        "slug_bg": "b",
                                        "slug_en": "b"
                                    },
                                    "apartments": {
                                        "data": [
                                            {
                                                "id": 195,
                                                "coords": "",
                                                "degrees": null,
                                                "status": 1,
                                                "floor_for_filters": null,
                                                "rooms": 3,
                                                "total_area": "150.86",
                                                "living_area": "0",
                                                "price": 141000,
                                                "price_m2": 935,
                                                "image": null,
                                                "image2": null,
                                                "mezonet": 0,
                                                "panorama": 0,
                                                "pdf": null,
                                                "gallery": null,
                                                "title_bg": "Апартамент 5",
                                                "text_bg": "",
                                                "details_bg": null,
                                                "slug_bg": "apartament-5",
                                                "seo_title_bg": "Апартамент 5 | Меркурий 99",
                                                "seo_description_bg": null,
                                                "seo_keywords_bg": null,
                                                "hide_sitemap_bg": 0,
                                                "title_en": "Apartment 5",
                                                "text_en": "",
                                                "details_en": null,
                                                "slug_en": "apartment-5",
                                                "seo_title_en": "Apartment 5 | Mercury 99",
                                                "seo_description_en": null,
                                                "seo_keywords_en": null,
                                                "hide_sitemap_en": 0,
                                                "building": {
                                                    "id": 1,
                                                    "slug_bg": "starlight",
                                                    "slug_en": "starlight"
                                                },
                                                "entrance": {
                                                    "id": 11,
                                                    "slug_bg": "b",
                                                    "slug_en": "b"
                                                },
                                                "floor": {
                                                    "id": 11,
                                                    "slug_bg": "1",
                                                    "slug_en": "1"
                                                }
                                            },
                                            {
                                                "id": 196,
                                                "coords": "",
                                                "degrees": null,
                                                "status": 1,
                                                "floor_for_filters": null,
                                                "rooms": 1,
                                                "total_area": "121.26",
                                                "living_area": "0",
                                                "price": 100000,
                                                "price_m2": 825,
                                                "image": null,
                                                "image2": null,
                                                "mezonet": 0,
                                                "panorama": 0,
                                                "pdf": null,
                                                "gallery": null,
                                                "title_bg": "Апартамент 6",
                                                "text_bg": "",
                                                "details_bg": null,
                                                "slug_bg": "apartament-6",
                                                "seo_title_bg": "Апартамент 6 | Меркурий 99",
                                                "seo_description_bg": null,
                                                "seo_keywords_bg": null,
                                                "hide_sitemap_bg": 0,
                                                "title_en": "Apartment 6",
                                                "text_en": "",
                                                "details_en": null,
                                                "slug_en": "apartment-6",
                                                "seo_title_en": "Apartment 6 | Mercury 99",
                                                "seo_description_en": null,
                                                "seo_keywords_en": null,
                                                "hide_sitemap_en": 0,
                                                "building": {
                                                    "id": 1,
                                                    "slug_bg": "starlight",
                                                    "slug_en": "starlight"
                                                },
                                                "entrance": {
                                                    "id": 11,
                                                    "slug_bg": "b",
                                                    "slug_en": "b"
                                                },
                                                "floor": {
                                                    "id": 11,
                                                    "slug_bg": "1",
                                                    "slug_en": "1"
                                                }
                                            }
                                        ],
                                        "links": {
                                            "self": "link-value"
                                        }
                                    }
                                },
                                {
                                    "id": 46,
                                    "image": null,
                                    "coords": "325, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                                    "degrees": 6,
                                    "title_bg": "2",
                                    "slug_bg": "2",
                                    "seo_title_bg": "2 | Меркурий 99",
                                    "seo_description_bg": null,
                                    "seo_keywords_bg": null,
                                    "hide_sitemap_bg": 0,
                                    "title_en": "2",
                                    "slug_en": "2",
                                    "seo_title_en": "2 | Mercury 99",
                                    "seo_description_en": null,
                                    "seo_keywords_en": null,
                                    "hide_sitemap_en": 0,
                                    "building": {
                                        "id": 1,
                                        "slug_bg": "starlight",
                                        "slug_en": "starlight"
                                    },
                                    "entrance": {
                                        "id": 11,
                                        "slug_bg": "b",
                                        "slug_en": "b"
                                    },
                                    "apartments": {
                                        "data": [
                                            {
                                                "id": 197,
                                                "coords": "",
                                                "degrees": null,
                                                "status": 3,
                                                "floor_for_filters": null,
                                                "rooms": 2,
                                                "total_area": "158.17",
                                                "living_area": "0",
                                                "price": 141000,
                                                "price_m2": 891,
                                                "image": null,
                                                "image2": null,
                                                "mezonet": 1,
                                                "panorama": 0,
                                                "pdf": null,
                                                "gallery": null,
                                                "title_bg": "Апартамент 7",
                                                "text_bg": "",
                                                "details_bg": null,
                                                "slug_bg": "apartament-7",
                                                "seo_title_bg": "Апартамент 7 | Меркурий 99",
                                                "seo_description_bg": null,
                                                "seo_keywords_bg": null,
                                                "hide_sitemap_bg": 0,
                                                "title_en": "Apartment 7",
                                                "text_en": "",
                                                "details_en": null,
                                                "slug_en": "apartment-7",
                                                "seo_title_en": "Apartment 7 | Mercury 99",
                                                "seo_description_en": null,
                                                "seo_keywords_en": null,
                                                "hide_sitemap_en": 0,
                                                "building": {
                                                    "id": 1,
                                                    "slug_bg": "starlight",
                                                    "slug_en": "starlight"
                                                },
                                                "entrance": {
                                                    "id": 11,
                                                    "slug_bg": "b",
                                                    "slug_en": "b"
                                                },
                                                "floor": {
                                                    "id": 11,
                                                    "slug_bg": "2",
                                                    "slug_en": "2"
                                                }
                                            }
                                        ],
                                        "links": {
                                            "self": "link-value"
                                        }
                                    }
                                }
                            ],
                            "links": {
                                "self": "link-value"
                            }
                        }
                    }
                ],
                "links": {
                    "self": "link-value"
                }
            }
        },
        {
            "id": 3,
            "image": "http:\/\/localhost\/uploads\/images\/big\/6_news-image.jpg",
            "thumb": "http:\/\/localhost\/uploads\/images\/big\/6_news-image.jpg",
            "pdf": null,
            "map": null,
            "status": 3,
            "google_map": "",
            "use_svg": 0,
            "gallery": null,
            "title_bg": "Тестова бъдеща сграда",
            "annonce_bg": "Анонс тестова бъдеща сграда",
            "text_bg": "<p>примеррен текст бг<\/p>",
            "slug_bg": "testova-bdeshcha-sgrada",
            "seo_title_bg": "Тестова бъдеща сграда | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "Test future building",
            "annonce_en": "Annonce test future building",
            "text_en": "<p>test text en<\/p>",
            "slug_en": "test-future-building",
            "seo_title_en": "Test future building | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0,
            "entrances": {
                "data": [],
                "links": {
                    "self": "link-value"
                }
            }
        },
        {
            "id": 4,
            "image": "http:\/\/localhost\/uploads\/images\/big\/7_news-mages2.jpg",
            "thumb": "http:\/\/localhost\/uploads\/images\/big\/7_news-mages2.jpg",
            "pdf": null,
            "map": "http:\/\/localhost\/uploads\/images\/big\/2_07-kontakti-02.jpg",
            "status": 2,
            "google_map": "",
            "use_svg": 0,
            "gallery": null,
            "title_bg": "Тест завършена сграда",
            "annonce_bg": "Анонс тест завършена сграда",
            "text_bg": "<p>Тестови текст за сграда<\/p>",
            "slug_bg": "test-zavrshena-sgrada",
            "seo_title_bg": "Тест завършена сграда | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "Test finished building",
            "annonce_en": "Annonce test finished building",
            "text_en": "<p>Тестови текст за сграда EN<\/p>",
            "slug_en": "test-finished-building",
            "seo_title_en": "Test finished building | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0,
            "entrances": {
                "data": [],
                "links": {
                    "self": "link-value"
                }
            }
        }
    ],
    "links": {
        "self": "link-value"
    }
}

HTTP Request

GET api/buildings

Get Current Buildings.

Example request:

curl -X GET "http://mercury-api.imigix.com/api/buildings/current" \
-H "Accept: application/json"
var settings = {
    "async": true,
    "crossDomain": true,
    "url": "http://mercury-api.imigix.com/api/buildings/current",
    "method": "GET",
    "headers": {
        "accept": "application/json"
    }
}

$.ajax(settings).done(function (response) {
    console.log(response);
});

Example response:

{
    "data": [
        {
            "id": 5,
            "image": "http:\/\/localhost\/uploads\/images\/big\/76_starlight-building.jpg",
            "thumb": null,
            "pdf": null,
            "map": "http:\/\/localhost\/uploads\/images\/big\/17_build-starlight.jpg",
            "status": 1,
            "google_map": "https:\/\/www.google.com\/maps\/embed?pb=!1m17!1m8!1m3!1d11723.450867031348!2d23.304417599999997!3d42.72779635!3m2!1i1024!2i768!4f13.1!4m6!3e0!4m3!3m2!1d42.7293567!2d23.2992676!4m0!5e0!3m2!1sbg!2sbg!4v1539100876083",
            "use_svg": 0,
            "gallery": null,
            "title_bg": "Старлайт ОРИГИНАЛ",
            "annonce_bg": "Кратък анонс за заглавие в слайдер",
            "text_bg": "",
            "slug_bg": "starlayt-original",
            "seo_title_bg": "Старлайт ОРИГИНАЛ | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "Startlight original",
            "annonce_en": "EN Кратък анонс за заглавие в слайдер",
            "text_en": "",
            "slug_en": "startlight-original",
            "seo_title_en": "Startlight original | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0,
            "entrances": {
                "data": [],
                "links": {
                    "self": "link-value"
                }
            }
        },
        {
            "id": 1,
            "image": "http:\/\/localhost\/uploads\/images\/big\/17_build-starlight.jpg",
            "thumb": null,
            "pdf": null,
            "map": "http:\/\/localhost\/uploads\/images\/big\/16_map.jpg",
            "status": 1,
            "google_map": "https:\/\/www.google.com\/maps\/embed?pb=!1m17!1m8!1m3!1d11723.450867031348!2d23.304417599999997!3d42.72779635!3m2!1i1024!2i768!4f13.1!4m6!3e0!4m3!3m2!1d42.7293567!2d23.2992676!4m0!5e0!3m2!1sbg!2sbg!4v1539100876083",
            "use_svg": 0,
            "gallery": null,
            "title_bg": "Старлайт Тестова",
            "annonce_bg": "Lorem Ipsum е елементарен примерен текст, използван в печатарската и типографската индустрия.",
            "text_bg": "<p>A collection of textile samples lay spread out on the table - Samsa was a travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer. Gregor then turned to look out the window at the dull weather.&nbsp;A collection of textile samples lay spread out on the table - Samsa was a travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer. Gregor then turned to look out the window at the dull weather. &nbsp;<\/p>\r\n\r\n<p>A collection of textile samples lay spread out on the table - Samsa was a travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer. Gregor then turned to look out the window at the dull weather.<\/p>",
            "slug_bg": "starlight",
            "seo_title_bg": "Старлайт Тестова | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "Starlight Testing",
            "annonce_en": "Gregor then turned to look out the window at the dull weather.",
            "text_en": "<p>A collection of textile samples lay spread out on the table - Samsa was a travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer. Gregor then turned to look out the window at the dull weather.&nbsp;A collection of textile samples lay spread out on the table - Samsa was a travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer. Gregor then turned to look out the window at the dull weather. &nbsp;<\/p>\r\n\r\n<p>A collection of textile samples lay spread out on the table - Samsa was a travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer. Gregor then turned to look out the window at the dull weather.<\/p>",
            "slug_en": "starlight",
            "seo_title_en": "Starlight Testing | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0,
            "entrances": {
                "data": [
                    {
                        "id": 1,
                        "image": null,
                        "coords": "coords",
                        "title_bg": "A",
                        "slug_bg": "a",
                        "seo_title_bg": "A | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "A",
                        "slug_en": "a",
                        "seo_title_en": "A | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "floors": {
                            "data": [
                                {
                                    "id": 1,
                                    "image": "http:\/\/localhost\/uploads\/images\/big\/57_floor1.png",
                                    "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                                    "degrees": 6,
                                    "title_bg": "1",
                                    "slug_bg": "1",
                                    "seo_title_bg": "1 | Меркурий 99",
                                    "seo_description_bg": null,
                                    "seo_keywords_bg": null,
                                    "hide_sitemap_bg": 0,
                                    "title_en": "1",
                                    "slug_en": "1",
                                    "seo_title_en": "1 | Mercury 99",
                                    "seo_description_en": null,
                                    "seo_keywords_en": null,
                                    "hide_sitemap_en": 0,
                                    "building": {
                                        "id": 1,
                                        "slug_bg": "starlight",
                                        "slug_en": "starlight"
                                    },
                                    "entrance": {
                                        "id": 1,
                                        "slug_bg": "a",
                                        "slug_en": "a"
                                    },
                                    "apartments": {
                                        "data": [
                                            {
                                                "id": 1,
                                                "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                                                "degrees": null,
                                                "status": 1,
                                                "floor_for_filters": null,
                                                "rooms": 2,
                                                "total_area": "68.75",
                                                "living_area": "0",
                                                "price": 100000,
                                                "price_m2": 1455,
                                                "image": null,
                                                "image2": null,
                                                "mezonet": 0,
                                                "panorama": 0,
                                                "pdf": null,
                                                "gallery": null,
                                                "title_bg": "Апартамент 1",
                                                "text_bg": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                                                "details_bg": null,
                                                "slug_bg": "apartament-1",
                                                "seo_title_bg": "Апартамент 1 | Меркурий 99",
                                                "seo_description_bg": null,
                                                "seo_keywords_bg": null,
                                                "hide_sitemap_bg": 0,
                                                "title_en": "Apartment 1",
                                                "text_en": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                                                "details_en": null,
                                                "slug_en": "apartment-1",
                                                "seo_title_en": "Apartment 1 | Mercury 99",
                                                "seo_description_en": null,
                                                "seo_keywords_en": null,
                                                "hide_sitemap_en": 0,
                                                "building": {
                                                    "id": 1,
                                                    "slug_bg": "starlight",
                                                    "slug_en": "starlight"
                                                },
                                                "entrance": {
                                                    "id": 1,
                                                    "slug_bg": "a",
                                                    "slug_en": "a"
                                                },
                                                "floor": {
                                                    "id": 1,
                                                    "slug_bg": "1",
                                                    "slug_en": "1"
                                                }
                                            },
                                            {
                                                "id": 192,
                                                "coords": "",
                                                "degrees": null,
                                                "status": 1,
                                                "floor_for_filters": null,
                                                "rooms": 3,
                                                "total_area": "121.26",
                                                "living_area": "0",
                                                "price": 136000,
                                                "price_m2": 1122,
                                                "image": null,
                                                "image2": null,
                                                "mezonet": 0,
                                                "panorama": 0,
                                                "pdf": null,
                                                "gallery": null,
                                                "title_bg": "Апартамент 2",
                                                "text_bg": "",
                                                "details_bg": null,
                                                "slug_bg": "apartament-2",
                                                "seo_title_bg": "Апартамент 2 | Меркурий 99",
                                                "seo_description_bg": null,
                                                "seo_keywords_bg": null,
                                                "hide_sitemap_bg": 0,
                                                "title_en": "Apartment 2",
                                                "text_en": "",
                                                "details_en": null,
                                                "slug_en": "apartment-2",
                                                "seo_title_en": "Apartment 2 | Mercury 99",
                                                "seo_description_en": null,
                                                "seo_keywords_en": null,
                                                "hide_sitemap_en": 0,
                                                "building": {
                                                    "id": 1,
                                                    "slug_bg": "starlight",
                                                    "slug_en": "starlight"
                                                },
                                                "entrance": {
                                                    "id": 1,
                                                    "slug_bg": "a",
                                                    "slug_en": "a"
                                                },
                                                "floor": {
                                                    "id": 1,
                                                    "slug_bg": "1",
                                                    "slug_en": "1"
                                                }
                                            }
                                        ],
                                        "links": {
                                            "self": "link-value"
                                        }
                                    }
                                },
                                {
                                    "id": 44,
                                    "image": null,
                                    "coords": "125, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                                    "degrees": 6,
                                    "title_bg": "2",
                                    "slug_bg": "2",
                                    "seo_title_bg": "2 | Меркурий 99",
                                    "seo_description_bg": null,
                                    "seo_keywords_bg": null,
                                    "hide_sitemap_bg": 0,
                                    "title_en": "2",
                                    "slug_en": "2",
                                    "seo_title_en": "2 | Mercury 99",
                                    "seo_description_en": null,
                                    "seo_keywords_en": null,
                                    "hide_sitemap_en": 0,
                                    "building": {
                                        "id": 1,
                                        "slug_bg": "starlight",
                                        "slug_en": "starlight"
                                    },
                                    "entrance": {
                                        "id": 1,
                                        "slug_bg": "a",
                                        "slug_en": "a"
                                    },
                                    "apartments": {
                                        "data": [
                                            {
                                                "id": 194,
                                                "coords": "",
                                                "degrees": null,
                                                "status": 1,
                                                "floor_for_filters": null,
                                                "rooms": 1,
                                                "total_area": "80.65",
                                                "living_area": "0",
                                                "price": 122500,
                                                "price_m2": 1519,
                                                "image": null,
                                                "image2": null,
                                                "mezonet": 0,
                                                "panorama": 0,
                                                "pdf": null,
                                                "gallery": null,
                                                "title_bg": "Апартамент 3",
                                                "text_bg": "",
                                                "details_bg": null,
                                                "slug_bg": "apartament-3",
                                                "seo_title_bg": "Апартамент 3 | Меркурий 99",
                                                "seo_description_bg": null,
                                                "seo_keywords_bg": null,
                                                "hide_sitemap_bg": 0,
                                                "title_en": "Apartment 3",
                                                "text_en": "",
                                                "details_en": null,
                                                "slug_en": "apartment-3",
                                                "seo_title_en": "Apartment 3 | Mercury 99",
                                                "seo_description_en": null,
                                                "seo_keywords_en": null,
                                                "hide_sitemap_en": 0,
                                                "building": {
                                                    "id": 1,
                                                    "slug_bg": "starlight",
                                                    "slug_en": "starlight"
                                                },
                                                "entrance": {
                                                    "id": 1,
                                                    "slug_bg": "a",
                                                    "slug_en": "a"
                                                },
                                                "floor": {
                                                    "id": 1,
                                                    "slug_bg": "2",
                                                    "slug_en": "2"
                                                }
                                            },
                                            {
                                                "id": 193,
                                                "coords": "",
                                                "degrees": null,
                                                "status": 2,
                                                "floor_for_filters": null,
                                                "rooms": 1,
                                                "total_area": "80.65",
                                                "living_area": "0",
                                                "price": 136000,
                                                "price_m2": 1686,
                                                "image": null,
                                                "image2": null,
                                                "mezonet": 0,
                                                "panorama": 0,
                                                "pdf": null,
                                                "gallery": null,
                                                "title_bg": "Апартамент 4",
                                                "text_bg": "",
                                                "details_bg": null,
                                                "slug_bg": "apartament-4",
                                                "seo_title_bg": "Апартамент 4 | Меркурий 99",
                                                "seo_description_bg": null,
                                                "seo_keywords_bg": null,
                                                "hide_sitemap_bg": 0,
                                                "title_en": "Apartment 4",
                                                "text_en": "",
                                                "details_en": null,
                                                "slug_en": "apartment-4",
                                                "seo_title_en": "Apartment 4 | Mercury 99",
                                                "seo_description_en": null,
                                                "seo_keywords_en": null,
                                                "hide_sitemap_en": 0,
                                                "building": {
                                                    "id": 1,
                                                    "slug_bg": "starlight",
                                                    "slug_en": "starlight"
                                                },
                                                "entrance": {
                                                    "id": 1,
                                                    "slug_bg": "a",
                                                    "slug_en": "a"
                                                },
                                                "floor": {
                                                    "id": 1,
                                                    "slug_bg": "2",
                                                    "slug_en": "2"
                                                }
                                            }
                                        ],
                                        "links": {
                                            "self": "link-value"
                                        }
                                    }
                                }
                            ],
                            "links": {
                                "self": "link-value"
                            }
                        }
                    },
                    {
                        "id": 11,
                        "image": null,
                        "coords": "coords",
                        "title_bg": "Б",
                        "slug_bg": "b",
                        "seo_title_bg": "Б | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "B",
                        "slug_en": "b",
                        "seo_title_en": "B | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "floors": {
                            "data": [
                                {
                                    "id": 45,
                                    "image": null,
                                    "coords": "225, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                                    "degrees": 6,
                                    "title_bg": "1",
                                    "slug_bg": "1",
                                    "seo_title_bg": "1 | Меркурий 99",
                                    "seo_description_bg": null,
                                    "seo_keywords_bg": null,
                                    "hide_sitemap_bg": 0,
                                    "title_en": "1",
                                    "slug_en": "1",
                                    "seo_title_en": "1 | Mercury 99",
                                    "seo_description_en": null,
                                    "seo_keywords_en": null,
                                    "hide_sitemap_en": 0,
                                    "building": {
                                        "id": 1,
                                        "slug_bg": "starlight",
                                        "slug_en": "starlight"
                                    },
                                    "entrance": {
                                        "id": 11,
                                        "slug_bg": "b",
                                        "slug_en": "b"
                                    },
                                    "apartments": {
                                        "data": [
                                            {
                                                "id": 195,
                                                "coords": "",
                                                "degrees": null,
                                                "status": 1,
                                                "floor_for_filters": null,
                                                "rooms": 3,
                                                "total_area": "150.86",
                                                "living_area": "0",
                                                "price": 141000,
                                                "price_m2": 935,
                                                "image": null,
                                                "image2": null,
                                                "mezonet": 0,
                                                "panorama": 0,
                                                "pdf": null,
                                                "gallery": null,
                                                "title_bg": "Апартамент 5",
                                                "text_bg": "",
                                                "details_bg": null,
                                                "slug_bg": "apartament-5",
                                                "seo_title_bg": "Апартамент 5 | Меркурий 99",
                                                "seo_description_bg": null,
                                                "seo_keywords_bg": null,
                                                "hide_sitemap_bg": 0,
                                                "title_en": "Apartment 5",
                                                "text_en": "",
                                                "details_en": null,
                                                "slug_en": "apartment-5",
                                                "seo_title_en": "Apartment 5 | Mercury 99",
                                                "seo_description_en": null,
                                                "seo_keywords_en": null,
                                                "hide_sitemap_en": 0,
                                                "building": {
                                                    "id": 1,
                                                    "slug_bg": "starlight",
                                                    "slug_en": "starlight"
                                                },
                                                "entrance": {
                                                    "id": 11,
                                                    "slug_bg": "b",
                                                    "slug_en": "b"
                                                },
                                                "floor": {
                                                    "id": 11,
                                                    "slug_bg": "1",
                                                    "slug_en": "1"
                                                }
                                            },
                                            {
                                                "id": 196,
                                                "coords": "",
                                                "degrees": null,
                                                "status": 1,
                                                "floor_for_filters": null,
                                                "rooms": 1,
                                                "total_area": "121.26",
                                                "living_area": "0",
                                                "price": 100000,
                                                "price_m2": 825,
                                                "image": null,
                                                "image2": null,
                                                "mezonet": 0,
                                                "panorama": 0,
                                                "pdf": null,
                                                "gallery": null,
                                                "title_bg": "Апартамент 6",
                                                "text_bg": "",
                                                "details_bg": null,
                                                "slug_bg": "apartament-6",
                                                "seo_title_bg": "Апартамент 6 | Меркурий 99",
                                                "seo_description_bg": null,
                                                "seo_keywords_bg": null,
                                                "hide_sitemap_bg": 0,
                                                "title_en": "Apartment 6",
                                                "text_en": "",
                                                "details_en": null,
                                                "slug_en": "apartment-6",
                                                "seo_title_en": "Apartment 6 | Mercury 99",
                                                "seo_description_en": null,
                                                "seo_keywords_en": null,
                                                "hide_sitemap_en": 0,
                                                "building": {
                                                    "id": 1,
                                                    "slug_bg": "starlight",
                                                    "slug_en": "starlight"
                                                },
                                                "entrance": {
                                                    "id": 11,
                                                    "slug_bg": "b",
                                                    "slug_en": "b"
                                                },
                                                "floor": {
                                                    "id": 11,
                                                    "slug_bg": "1",
                                                    "slug_en": "1"
                                                }
                                            }
                                        ],
                                        "links": {
                                            "self": "link-value"
                                        }
                                    }
                                },
                                {
                                    "id": 46,
                                    "image": null,
                                    "coords": "325, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                                    "degrees": 6,
                                    "title_bg": "2",
                                    "slug_bg": "2",
                                    "seo_title_bg": "2 | Меркурий 99",
                                    "seo_description_bg": null,
                                    "seo_keywords_bg": null,
                                    "hide_sitemap_bg": 0,
                                    "title_en": "2",
                                    "slug_en": "2",
                                    "seo_title_en": "2 | Mercury 99",
                                    "seo_description_en": null,
                                    "seo_keywords_en": null,
                                    "hide_sitemap_en": 0,
                                    "building": {
                                        "id": 1,
                                        "slug_bg": "starlight",
                                        "slug_en": "starlight"
                                    },
                                    "entrance": {
                                        "id": 11,
                                        "slug_bg": "b",
                                        "slug_en": "b"
                                    },
                                    "apartments": {
                                        "data": [
                                            {
                                                "id": 197,
                                                "coords": "",
                                                "degrees": null,
                                                "status": 3,
                                                "floor_for_filters": null,
                                                "rooms": 2,
                                                "total_area": "158.17",
                                                "living_area": "0",
                                                "price": 141000,
                                                "price_m2": 891,
                                                "image": null,
                                                "image2": null,
                                                "mezonet": 1,
                                                "panorama": 0,
                                                "pdf": null,
                                                "gallery": null,
                                                "title_bg": "Апартамент 7",
                                                "text_bg": "",
                                                "details_bg": null,
                                                "slug_bg": "apartament-7",
                                                "seo_title_bg": "Апартамент 7 | Меркурий 99",
                                                "seo_description_bg": null,
                                                "seo_keywords_bg": null,
                                                "hide_sitemap_bg": 0,
                                                "title_en": "Apartment 7",
                                                "text_en": "",
                                                "details_en": null,
                                                "slug_en": "apartment-7",
                                                "seo_title_en": "Apartment 7 | Mercury 99",
                                                "seo_description_en": null,
                                                "seo_keywords_en": null,
                                                "hide_sitemap_en": 0,
                                                "building": {
                                                    "id": 1,
                                                    "slug_bg": "starlight",
                                                    "slug_en": "starlight"
                                                },
                                                "entrance": {
                                                    "id": 11,
                                                    "slug_bg": "b",
                                                    "slug_en": "b"
                                                },
                                                "floor": {
                                                    "id": 11,
                                                    "slug_bg": "2",
                                                    "slug_en": "2"
                                                }
                                            }
                                        ],
                                        "links": {
                                            "self": "link-value"
                                        }
                                    }
                                }
                            ],
                            "links": {
                                "self": "link-value"
                            }
                        }
                    }
                ],
                "links": {
                    "self": "link-value"
                }
            }
        }
    ],
    "links": {
        "self": "link-value"
    }
}

HTTP Request

GET api/buildings/current

Get Finished Buildings.

Example request:

curl -X GET "http://mercury-api.imigix.com/api/buildings/finished" \
-H "Accept: application/json"
var settings = {
    "async": true,
    "crossDomain": true,
    "url": "http://mercury-api.imigix.com/api/buildings/finished",
    "method": "GET",
    "headers": {
        "accept": "application/json"
    }
}

$.ajax(settings).done(function (response) {
    console.log(response);
});

Example response:

{
    "data": {
        "3": {
            "id": 4,
            "image": "http:\/\/localhost\/uploads\/images\/big\/7_news-mages2.jpg",
            "thumb": "http:\/\/localhost\/uploads\/images\/big\/7_news-mages2.jpg",
            "pdf": null,
            "map": "http:\/\/localhost\/uploads\/images\/big\/2_07-kontakti-02.jpg",
            "status": 2,
            "google_map": "",
            "use_svg": 0,
            "gallery": null,
            "title_bg": "Тест завършена сграда",
            "annonce_bg": "Анонс тест завършена сграда",
            "text_bg": "<p>Тестови текст за сграда<\/p>",
            "slug_bg": "test-zavrshena-sgrada",
            "seo_title_bg": "Тест завършена сграда | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "Test finished building",
            "annonce_en": "Annonce test finished building",
            "text_en": "<p>Тестови текст за сграда EN<\/p>",
            "slug_en": "test-finished-building",
            "seo_title_en": "Test finished building | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0,
            "entrances": {
                "data": [],
                "links": {
                    "self": "link-value"
                }
            }
        }
    },
    "links": {
        "self": "link-value"
    }
}

HTTP Request

GET api/buildings/finished

Get Future Buildings.

Example request:

curl -X GET "http://mercury-api.imigix.com/api/buildings/future" \
-H "Accept: application/json"
var settings = {
    "async": true,
    "crossDomain": true,
    "url": "http://mercury-api.imigix.com/api/buildings/future",
    "method": "GET",
    "headers": {
        "accept": "application/json"
    }
}

$.ajax(settings).done(function (response) {
    console.log(response);
});

Example response:

{
    "data": {
        "2": {
            "id": 3,
            "image": "http:\/\/localhost\/uploads\/images\/big\/6_news-image.jpg",
            "thumb": "http:\/\/localhost\/uploads\/images\/big\/6_news-image.jpg",
            "pdf": null,
            "map": null,
            "status": 3,
            "google_map": "",
            "use_svg": 0,
            "gallery": null,
            "title_bg": "Тестова бъдеща сграда",
            "annonce_bg": "Анонс тестова бъдеща сграда",
            "text_bg": "<p>примеррен текст бг<\/p>",
            "slug_bg": "testova-bdeshcha-sgrada",
            "seo_title_bg": "Тестова бъдеща сграда | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "Test future building",
            "annonce_en": "Annonce test future building",
            "text_en": "<p>test text en<\/p>",
            "slug_en": "test-future-building",
            "seo_title_en": "Test future building | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0,
            "entrances": {
                "data": [],
                "links": {
                    "self": "link-value"
                }
            }
        }
    },
    "links": {
        "self": "link-value"
    }
}

HTTP Request

GET api/buildings/future

Get Entrance by ID.

Example request:

curl -X GET "http://mercury-api.imigix.com/api/entrance/{id}" \
-H "Accept: application/json"
var settings = {
    "async": true,
    "crossDomain": true,
    "url": "http://mercury-api.imigix.com/api/entrance/{id}",
    "method": "GET",
    "headers": {
        "accept": "application/json"
    }
}

$.ajax(settings).done(function (response) {
    console.log(response);
});

Example response:

{
    "data": {
        "id": 1,
        "image": null,
        "coords": "coords",
        "title_bg": "A",
        "slug_bg": "a",
        "seo_title_bg": "A | Меркурий 99",
        "seo_description_bg": null,
        "seo_keywords_bg": null,
        "hide_sitemap_bg": 0,
        "title_en": "A",
        "slug_en": "a",
        "seo_title_en": "A | Mercury 99",
        "seo_description_en": null,
        "seo_keywords_en": null,
        "hide_sitemap_en": 0,
        "floors": {
            "data": [
                {
                    "id": 1,
                    "image": "http:\/\/localhost\/uploads\/images\/big\/57_floor1.png",
                    "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                    "degrees": 6,
                    "title_bg": "1",
                    "slug_bg": "1",
                    "seo_title_bg": "1 | Меркурий 99",
                    "seo_description_bg": null,
                    "seo_keywords_bg": null,
                    "hide_sitemap_bg": 0,
                    "title_en": "1",
                    "slug_en": "1",
                    "seo_title_en": "1 | Mercury 99",
                    "seo_description_en": null,
                    "seo_keywords_en": null,
                    "hide_sitemap_en": 0,
                    "building": {
                        "id": 1,
                        "slug_bg": "starlight",
                        "slug_en": "starlight"
                    },
                    "entrance": {
                        "id": 1,
                        "slug_bg": "a",
                        "slug_en": "a"
                    },
                    "apartments": {
                        "data": [
                            {
                                "id": 1,
                                "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                                "degrees": null,
                                "status": 1,
                                "floor_for_filters": null,
                                "rooms": 2,
                                "total_area": "68.75",
                                "living_area": "0",
                                "price": 100000,
                                "price_m2": 1455,
                                "image": null,
                                "image2": null,
                                "mezonet": 0,
                                "panorama": 0,
                                "pdf": null,
                                "gallery": null,
                                "title_bg": "Апартамент 1",
                                "text_bg": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                                "details_bg": null,
                                "slug_bg": "apartament-1",
                                "seo_title_bg": "Апартамент 1 | Меркурий 99",
                                "seo_description_bg": null,
                                "seo_keywords_bg": null,
                                "hide_sitemap_bg": 0,
                                "title_en": "Apartment 1",
                                "text_en": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                                "details_en": null,
                                "slug_en": "apartment-1",
                                "seo_title_en": "Apartment 1 | Mercury 99",
                                "seo_description_en": null,
                                "seo_keywords_en": null,
                                "hide_sitemap_en": 0,
                                "building": {
                                    "id": 1,
                                    "slug_bg": "starlight",
                                    "slug_en": "starlight"
                                },
                                "entrance": {
                                    "id": 1,
                                    "slug_bg": "a",
                                    "slug_en": "a"
                                },
                                "floor": {
                                    "id": 1,
                                    "slug_bg": "1",
                                    "slug_en": "1"
                                }
                            },
                            {
                                "id": 192,
                                "coords": "",
                                "degrees": null,
                                "status": 1,
                                "floor_for_filters": null,
                                "rooms": 3,
                                "total_area": "121.26",
                                "living_area": "0",
                                "price": 136000,
                                "price_m2": 1122,
                                "image": null,
                                "image2": null,
                                "mezonet": 0,
                                "panorama": 0,
                                "pdf": null,
                                "gallery": null,
                                "title_bg": "Апартамент 2",
                                "text_bg": "",
                                "details_bg": null,
                                "slug_bg": "apartament-2",
                                "seo_title_bg": "Апартамент 2 | Меркурий 99",
                                "seo_description_bg": null,
                                "seo_keywords_bg": null,
                                "hide_sitemap_bg": 0,
                                "title_en": "Apartment 2",
                                "text_en": "",
                                "details_en": null,
                                "slug_en": "apartment-2",
                                "seo_title_en": "Apartment 2 | Mercury 99",
                                "seo_description_en": null,
                                "seo_keywords_en": null,
                                "hide_sitemap_en": 0,
                                "building": {
                                    "id": 1,
                                    "slug_bg": "starlight",
                                    "slug_en": "starlight"
                                },
                                "entrance": {
                                    "id": 1,
                                    "slug_bg": "a",
                                    "slug_en": "a"
                                },
                                "floor": {
                                    "id": 1,
                                    "slug_bg": "1",
                                    "slug_en": "1"
                                }
                            }
                        ],
                        "links": {
                            "self": "link-value"
                        }
                    }
                },
                {
                    "id": 44,
                    "image": null,
                    "coords": "125, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                    "degrees": 6,
                    "title_bg": "2",
                    "slug_bg": "2",
                    "seo_title_bg": "2 | Меркурий 99",
                    "seo_description_bg": null,
                    "seo_keywords_bg": null,
                    "hide_sitemap_bg": 0,
                    "title_en": "2",
                    "slug_en": "2",
                    "seo_title_en": "2 | Mercury 99",
                    "seo_description_en": null,
                    "seo_keywords_en": null,
                    "hide_sitemap_en": 0,
                    "building": {
                        "id": 1,
                        "slug_bg": "starlight",
                        "slug_en": "starlight"
                    },
                    "entrance": {
                        "id": 1,
                        "slug_bg": "a",
                        "slug_en": "a"
                    },
                    "apartments": {
                        "data": [
                            {
                                "id": 193,
                                "coords": "",
                                "degrees": null,
                                "status": 2,
                                "floor_for_filters": null,
                                "rooms": 1,
                                "total_area": "80.65",
                                "living_area": "0",
                                "price": 136000,
                                "price_m2": 1686,
                                "image": null,
                                "image2": null,
                                "mezonet": 0,
                                "panorama": 0,
                                "pdf": null,
                                "gallery": null,
                                "title_bg": "Апартамент 4",
                                "text_bg": "",
                                "details_bg": null,
                                "slug_bg": "apartament-4",
                                "seo_title_bg": "Апартамент 4 | Меркурий 99",
                                "seo_description_bg": null,
                                "seo_keywords_bg": null,
                                "hide_sitemap_bg": 0,
                                "title_en": "Apartment 4",
                                "text_en": "",
                                "details_en": null,
                                "slug_en": "apartment-4",
                                "seo_title_en": "Apartment 4 | Mercury 99",
                                "seo_description_en": null,
                                "seo_keywords_en": null,
                                "hide_sitemap_en": 0,
                                "building": {
                                    "id": 1,
                                    "slug_bg": "starlight",
                                    "slug_en": "starlight"
                                },
                                "entrance": {
                                    "id": 1,
                                    "slug_bg": "a",
                                    "slug_en": "a"
                                },
                                "floor": {
                                    "id": 1,
                                    "slug_bg": "2",
                                    "slug_en": "2"
                                }
                            },
                            {
                                "id": 194,
                                "coords": "",
                                "degrees": null,
                                "status": 1,
                                "floor_for_filters": null,
                                "rooms": 1,
                                "total_area": "80.65",
                                "living_area": "0",
                                "price": 122500,
                                "price_m2": 1519,
                                "image": null,
                                "image2": null,
                                "mezonet": 0,
                                "panorama": 0,
                                "pdf": null,
                                "gallery": null,
                                "title_bg": "Апартамент 3",
                                "text_bg": "",
                                "details_bg": null,
                                "slug_bg": "apartament-3",
                                "seo_title_bg": "Апартамент 3 | Меркурий 99",
                                "seo_description_bg": null,
                                "seo_keywords_bg": null,
                                "hide_sitemap_bg": 0,
                                "title_en": "Apartment 3",
                                "text_en": "",
                                "details_en": null,
                                "slug_en": "apartment-3",
                                "seo_title_en": "Apartment 3 | Mercury 99",
                                "seo_description_en": null,
                                "seo_keywords_en": null,
                                "hide_sitemap_en": 0,
                                "building": {
                                    "id": 1,
                                    "slug_bg": "starlight",
                                    "slug_en": "starlight"
                                },
                                "entrance": {
                                    "id": 1,
                                    "slug_bg": "a",
                                    "slug_en": "a"
                                },
                                "floor": {
                                    "id": 1,
                                    "slug_bg": "2",
                                    "slug_en": "2"
                                }
                            }
                        ],
                        "links": {
                            "self": "link-value"
                        }
                    }
                }
            ],
            "links": {
                "self": "link-value"
            }
        }
    }
}

HTTP Request

GET api/entrance/{id}

Get All Entrances.

Example request:

curl -X GET "http://mercury-api.imigix.com/api/entrances" \
-H "Accept: application/json"
var settings = {
    "async": true,
    "crossDomain": true,
    "url": "http://mercury-api.imigix.com/api/entrances",
    "method": "GET",
    "headers": {
        "accept": "application/json"
    }
}

$.ajax(settings).done(function (response) {
    console.log(response);
});

Example response:

{
    "data": [
        {
            "id": 1,
            "image": null,
            "coords": "coords",
            "title_bg": "A",
            "slug_bg": "a",
            "seo_title_bg": "A | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "A",
            "slug_en": "a",
            "seo_title_en": "A | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0,
            "building": {
                "id": 1,
                "slug_bg": "starlight",
                "slug_en": "starlight"
            },
            "floors": {
                "data": [
                    {
                        "id": 1,
                        "image": "http:\/\/localhost\/uploads\/images\/big\/57_floor1.png",
                        "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                        "degrees": 6,
                        "title_bg": "1",
                        "slug_bg": "1",
                        "seo_title_bg": "1 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "1",
                        "slug_en": "1",
                        "seo_title_en": "1 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 1,
                            "slug_bg": "a",
                            "slug_en": "a"
                        },
                        "apartments": {
                            "data": [
                                {
                                    "id": 1,
                                    "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                                    "degrees": null,
                                    "status": 1,
                                    "floor_for_filters": null,
                                    "rooms": 2,
                                    "total_area": "68.75",
                                    "living_area": "0",
                                    "price": 100000,
                                    "price_m2": 1455,
                                    "image": null,
                                    "image2": null,
                                    "mezonet": 0,
                                    "panorama": 0,
                                    "pdf": null,
                                    "gallery": null,
                                    "title_bg": "Апартамент 1",
                                    "text_bg": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                                    "details_bg": null,
                                    "slug_bg": "apartament-1",
                                    "seo_title_bg": "Апартамент 1 | Меркурий 99",
                                    "seo_description_bg": null,
                                    "seo_keywords_bg": null,
                                    "hide_sitemap_bg": 0,
                                    "title_en": "Apartment 1",
                                    "text_en": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                                    "details_en": null,
                                    "slug_en": "apartment-1",
                                    "seo_title_en": "Apartment 1 | Mercury 99",
                                    "seo_description_en": null,
                                    "seo_keywords_en": null,
                                    "hide_sitemap_en": 0,
                                    "building": {
                                        "id": 1,
                                        "slug_bg": "starlight",
                                        "slug_en": "starlight"
                                    },
                                    "entrance": {
                                        "id": 1,
                                        "slug_bg": "a",
                                        "slug_en": "a"
                                    },
                                    "floor": {
                                        "id": 1,
                                        "slug_bg": "1",
                                        "slug_en": "1"
                                    }
                                },
                                {
                                    "id": 192,
                                    "coords": "",
                                    "degrees": null,
                                    "status": 1,
                                    "floor_for_filters": null,
                                    "rooms": 3,
                                    "total_area": "121.26",
                                    "living_area": "0",
                                    "price": 136000,
                                    "price_m2": 1122,
                                    "image": null,
                                    "image2": null,
                                    "mezonet": 0,
                                    "panorama": 0,
                                    "pdf": null,
                                    "gallery": null,
                                    "title_bg": "Апартамент 2",
                                    "text_bg": "",
                                    "details_bg": null,
                                    "slug_bg": "apartament-2",
                                    "seo_title_bg": "Апартамент 2 | Меркурий 99",
                                    "seo_description_bg": null,
                                    "seo_keywords_bg": null,
                                    "hide_sitemap_bg": 0,
                                    "title_en": "Apartment 2",
                                    "text_en": "",
                                    "details_en": null,
                                    "slug_en": "apartment-2",
                                    "seo_title_en": "Apartment 2 | Mercury 99",
                                    "seo_description_en": null,
                                    "seo_keywords_en": null,
                                    "hide_sitemap_en": 0,
                                    "building": {
                                        "id": 1,
                                        "slug_bg": "starlight",
                                        "slug_en": "starlight"
                                    },
                                    "entrance": {
                                        "id": 1,
                                        "slug_bg": "a",
                                        "slug_en": "a"
                                    },
                                    "floor": {
                                        "id": 1,
                                        "slug_bg": "1",
                                        "slug_en": "1"
                                    }
                                }
                            ],
                            "links": {
                                "self": "link-value"
                            }
                        }
                    },
                    {
                        "id": 44,
                        "image": null,
                        "coords": "125, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                        "degrees": 6,
                        "title_bg": "2",
                        "slug_bg": "2",
                        "seo_title_bg": "2 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "2",
                        "slug_en": "2",
                        "seo_title_en": "2 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 1,
                            "slug_bg": "a",
                            "slug_en": "a"
                        },
                        "apartments": {
                            "data": [
                                {
                                    "id": 193,
                                    "coords": "",
                                    "degrees": null,
                                    "status": 2,
                                    "floor_for_filters": null,
                                    "rooms": 1,
                                    "total_area": "80.65",
                                    "living_area": "0",
                                    "price": 136000,
                                    "price_m2": 1686,
                                    "image": null,
                                    "image2": null,
                                    "mezonet": 0,
                                    "panorama": 0,
                                    "pdf": null,
                                    "gallery": null,
                                    "title_bg": "Апартамент 4",
                                    "text_bg": "",
                                    "details_bg": null,
                                    "slug_bg": "apartament-4",
                                    "seo_title_bg": "Апартамент 4 | Меркурий 99",
                                    "seo_description_bg": null,
                                    "seo_keywords_bg": null,
                                    "hide_sitemap_bg": 0,
                                    "title_en": "Apartment 4",
                                    "text_en": "",
                                    "details_en": null,
                                    "slug_en": "apartment-4",
                                    "seo_title_en": "Apartment 4 | Mercury 99",
                                    "seo_description_en": null,
                                    "seo_keywords_en": null,
                                    "hide_sitemap_en": 0,
                                    "building": {
                                        "id": 1,
                                        "slug_bg": "starlight",
                                        "slug_en": "starlight"
                                    },
                                    "entrance": {
                                        "id": 1,
                                        "slug_bg": "a",
                                        "slug_en": "a"
                                    },
                                    "floor": {
                                        "id": 1,
                                        "slug_bg": "2",
                                        "slug_en": "2"
                                    }
                                },
                                {
                                    "id": 194,
                                    "coords": "",
                                    "degrees": null,
                                    "status": 1,
                                    "floor_for_filters": null,
                                    "rooms": 1,
                                    "total_area": "80.65",
                                    "living_area": "0",
                                    "price": 122500,
                                    "price_m2": 1519,
                                    "image": null,
                                    "image2": null,
                                    "mezonet": 0,
                                    "panorama": 0,
                                    "pdf": null,
                                    "gallery": null,
                                    "title_bg": "Апартамент 3",
                                    "text_bg": "",
                                    "details_bg": null,
                                    "slug_bg": "apartament-3",
                                    "seo_title_bg": "Апартамент 3 | Меркурий 99",
                                    "seo_description_bg": null,
                                    "seo_keywords_bg": null,
                                    "hide_sitemap_bg": 0,
                                    "title_en": "Apartment 3",
                                    "text_en": "",
                                    "details_en": null,
                                    "slug_en": "apartment-3",
                                    "seo_title_en": "Apartment 3 | Mercury 99",
                                    "seo_description_en": null,
                                    "seo_keywords_en": null,
                                    "hide_sitemap_en": 0,
                                    "building": {
                                        "id": 1,
                                        "slug_bg": "starlight",
                                        "slug_en": "starlight"
                                    },
                                    "entrance": {
                                        "id": 1,
                                        "slug_bg": "a",
                                        "slug_en": "a"
                                    },
                                    "floor": {
                                        "id": 1,
                                        "slug_bg": "2",
                                        "slug_en": "2"
                                    }
                                }
                            ],
                            "links": {
                                "self": "link-value"
                            }
                        }
                    }
                ],
                "links": {
                    "self": "link-value"
                }
            }
        },
        {
            "id": 11,
            "image": null,
            "coords": "coords",
            "title_bg": "Б",
            "slug_bg": "b",
            "seo_title_bg": "Б | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "B",
            "slug_en": "b",
            "seo_title_en": "B | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0,
            "building": {
                "id": 1,
                "slug_bg": "starlight",
                "slug_en": "starlight"
            },
            "floors": {
                "data": [
                    {
                        "id": 45,
                        "image": null,
                        "coords": "225, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                        "degrees": 6,
                        "title_bg": "1",
                        "slug_bg": "1",
                        "seo_title_bg": "1 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "1",
                        "slug_en": "1",
                        "seo_title_en": "1 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 11,
                            "slug_bg": "b",
                            "slug_en": "b"
                        },
                        "apartments": {
                            "data": [
                                {
                                    "id": 195,
                                    "coords": "",
                                    "degrees": null,
                                    "status": 1,
                                    "floor_for_filters": null,
                                    "rooms": 3,
                                    "total_area": "150.86",
                                    "living_area": "0",
                                    "price": 141000,
                                    "price_m2": 935,
                                    "image": null,
                                    "image2": null,
                                    "mezonet": 0,
                                    "panorama": 0,
                                    "pdf": null,
                                    "gallery": null,
                                    "title_bg": "Апартамент 5",
                                    "text_bg": "",
                                    "details_bg": null,
                                    "slug_bg": "apartament-5",
                                    "seo_title_bg": "Апартамент 5 | Меркурий 99",
                                    "seo_description_bg": null,
                                    "seo_keywords_bg": null,
                                    "hide_sitemap_bg": 0,
                                    "title_en": "Apartment 5",
                                    "text_en": "",
                                    "details_en": null,
                                    "slug_en": "apartment-5",
                                    "seo_title_en": "Apartment 5 | Mercury 99",
                                    "seo_description_en": null,
                                    "seo_keywords_en": null,
                                    "hide_sitemap_en": 0,
                                    "building": {
                                        "id": 1,
                                        "slug_bg": "starlight",
                                        "slug_en": "starlight"
                                    },
                                    "entrance": {
                                        "id": 11,
                                        "slug_bg": "b",
                                        "slug_en": "b"
                                    },
                                    "floor": {
                                        "id": 11,
                                        "slug_bg": "1",
                                        "slug_en": "1"
                                    }
                                },
                                {
                                    "id": 196,
                                    "coords": "",
                                    "degrees": null,
                                    "status": 1,
                                    "floor_for_filters": null,
                                    "rooms": 1,
                                    "total_area": "121.26",
                                    "living_area": "0",
                                    "price": 100000,
                                    "price_m2": 825,
                                    "image": null,
                                    "image2": null,
                                    "mezonet": 0,
                                    "panorama": 0,
                                    "pdf": null,
                                    "gallery": null,
                                    "title_bg": "Апартамент 6",
                                    "text_bg": "",
                                    "details_bg": null,
                                    "slug_bg": "apartament-6",
                                    "seo_title_bg": "Апартамент 6 | Меркурий 99",
                                    "seo_description_bg": null,
                                    "seo_keywords_bg": null,
                                    "hide_sitemap_bg": 0,
                                    "title_en": "Apartment 6",
                                    "text_en": "",
                                    "details_en": null,
                                    "slug_en": "apartment-6",
                                    "seo_title_en": "Apartment 6 | Mercury 99",
                                    "seo_description_en": null,
                                    "seo_keywords_en": null,
                                    "hide_sitemap_en": 0,
                                    "building": {
                                        "id": 1,
                                        "slug_bg": "starlight",
                                        "slug_en": "starlight"
                                    },
                                    "entrance": {
                                        "id": 11,
                                        "slug_bg": "b",
                                        "slug_en": "b"
                                    },
                                    "floor": {
                                        "id": 11,
                                        "slug_bg": "1",
                                        "slug_en": "1"
                                    }
                                }
                            ],
                            "links": {
                                "self": "link-value"
                            }
                        }
                    },
                    {
                        "id": 46,
                        "image": null,
                        "coords": "325, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                        "degrees": 6,
                        "title_bg": "2",
                        "slug_bg": "2",
                        "seo_title_bg": "2 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "2",
                        "slug_en": "2",
                        "seo_title_en": "2 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 11,
                            "slug_bg": "b",
                            "slug_en": "b"
                        },
                        "apartments": {
                            "data": [
                                {
                                    "id": 197,
                                    "coords": "",
                                    "degrees": null,
                                    "status": 3,
                                    "floor_for_filters": null,
                                    "rooms": 2,
                                    "total_area": "158.17",
                                    "living_area": "0",
                                    "price": 141000,
                                    "price_m2": 891,
                                    "image": null,
                                    "image2": null,
                                    "mezonet": 1,
                                    "panorama": 0,
                                    "pdf": null,
                                    "gallery": null,
                                    "title_bg": "Апартамент 7",
                                    "text_bg": "",
                                    "details_bg": null,
                                    "slug_bg": "apartament-7",
                                    "seo_title_bg": "Апартамент 7 | Меркурий 99",
                                    "seo_description_bg": null,
                                    "seo_keywords_bg": null,
                                    "hide_sitemap_bg": 0,
                                    "title_en": "Apartment 7",
                                    "text_en": "",
                                    "details_en": null,
                                    "slug_en": "apartment-7",
                                    "seo_title_en": "Apartment 7 | Mercury 99",
                                    "seo_description_en": null,
                                    "seo_keywords_en": null,
                                    "hide_sitemap_en": 0,
                                    "building": {
                                        "id": 1,
                                        "slug_bg": "starlight",
                                        "slug_en": "starlight"
                                    },
                                    "entrance": {
                                        "id": 11,
                                        "slug_bg": "b",
                                        "slug_en": "b"
                                    },
                                    "floor": {
                                        "id": 11,
                                        "slug_bg": "2",
                                        "slug_en": "2"
                                    }
                                }
                            ],
                            "links": {
                                "self": "link-value"
                            }
                        }
                    }
                ],
                "links": {
                    "self": "link-value"
                }
            }
        }
    ],
    "links": {
        "self": "link-value"
    }
}

HTTP Request

GET api/entrances

Get Entrances By Building ID.

Example request:

curl -X GET "http://mercury-api.imigix.com/api/entrances/building/{id}" \
-H "Accept: application/json"
var settings = {
    "async": true,
    "crossDomain": true,
    "url": "http://mercury-api.imigix.com/api/entrances/building/{id}",
    "method": "GET",
    "headers": {
        "accept": "application/json"
    }
}

$.ajax(settings).done(function (response) {
    console.log(response);
});

Example response:

{
    "data": [
        {
            "id": 1,
            "image": null,
            "coords": "coords",
            "title_bg": "A",
            "slug_bg": "a",
            "seo_title_bg": "A | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "A",
            "slug_en": "a",
            "seo_title_en": "A | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0,
            "building": {
                "id": 1,
                "slug_bg": "starlight",
                "slug_en": "starlight"
            },
            "floors": {
                "data": [
                    {
                        "id": 1,
                        "image": "http:\/\/localhost\/uploads\/images\/big\/57_floor1.png",
                        "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                        "degrees": 6,
                        "title_bg": "1",
                        "slug_bg": "1",
                        "seo_title_bg": "1 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "1",
                        "slug_en": "1",
                        "seo_title_en": "1 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 1,
                            "slug_bg": "a",
                            "slug_en": "a"
                        },
                        "apartments": {
                            "data": [
                                {
                                    "id": 1,
                                    "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                                    "degrees": null,
                                    "status": 1,
                                    "floor_for_filters": null,
                                    "rooms": 2,
                                    "total_area": "68.75",
                                    "living_area": "0",
                                    "price": 100000,
                                    "price_m2": 1455,
                                    "image": null,
                                    "image2": null,
                                    "mezonet": 0,
                                    "panorama": 0,
                                    "pdf": null,
                                    "gallery": null,
                                    "title_bg": "Апартамент 1",
                                    "text_bg": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                                    "details_bg": null,
                                    "slug_bg": "apartament-1",
                                    "seo_title_bg": "Апартамент 1 | Меркурий 99",
                                    "seo_description_bg": null,
                                    "seo_keywords_bg": null,
                                    "hide_sitemap_bg": 0,
                                    "title_en": "Apartment 1",
                                    "text_en": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                                    "details_en": null,
                                    "slug_en": "apartment-1",
                                    "seo_title_en": "Apartment 1 | Mercury 99",
                                    "seo_description_en": null,
                                    "seo_keywords_en": null,
                                    "hide_sitemap_en": 0,
                                    "building": {
                                        "id": 1,
                                        "slug_bg": "starlight",
                                        "slug_en": "starlight"
                                    },
                                    "entrance": {
                                        "id": 1,
                                        "slug_bg": "a",
                                        "slug_en": "a"
                                    },
                                    "floor": {
                                        "id": 1,
                                        "slug_bg": "1",
                                        "slug_en": "1"
                                    }
                                },
                                {
                                    "id": 192,
                                    "coords": "",
                                    "degrees": null,
                                    "status": 1,
                                    "floor_for_filters": null,
                                    "rooms": 3,
                                    "total_area": "121.26",
                                    "living_area": "0",
                                    "price": 136000,
                                    "price_m2": 1122,
                                    "image": null,
                                    "image2": null,
                                    "mezonet": 0,
                                    "panorama": 0,
                                    "pdf": null,
                                    "gallery": null,
                                    "title_bg": "Апартамент 2",
                                    "text_bg": "",
                                    "details_bg": null,
                                    "slug_bg": "apartament-2",
                                    "seo_title_bg": "Апартамент 2 | Меркурий 99",
                                    "seo_description_bg": null,
                                    "seo_keywords_bg": null,
                                    "hide_sitemap_bg": 0,
                                    "title_en": "Apartment 2",
                                    "text_en": "",
                                    "details_en": null,
                                    "slug_en": "apartment-2",
                                    "seo_title_en": "Apartment 2 | Mercury 99",
                                    "seo_description_en": null,
                                    "seo_keywords_en": null,
                                    "hide_sitemap_en": 0,
                                    "building": {
                                        "id": 1,
                                        "slug_bg": "starlight",
                                        "slug_en": "starlight"
                                    },
                                    "entrance": {
                                        "id": 1,
                                        "slug_bg": "a",
                                        "slug_en": "a"
                                    },
                                    "floor": {
                                        "id": 1,
                                        "slug_bg": "1",
                                        "slug_en": "1"
                                    }
                                }
                            ],
                            "links": {
                                "self": "link-value"
                            }
                        }
                    },
                    {
                        "id": 44,
                        "image": null,
                        "coords": "125, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                        "degrees": 6,
                        "title_bg": "2",
                        "slug_bg": "2",
                        "seo_title_bg": "2 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "2",
                        "slug_en": "2",
                        "seo_title_en": "2 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 1,
                            "slug_bg": "a",
                            "slug_en": "a"
                        },
                        "apartments": {
                            "data": [
                                {
                                    "id": 193,
                                    "coords": "",
                                    "degrees": null,
                                    "status": 2,
                                    "floor_for_filters": null,
                                    "rooms": 1,
                                    "total_area": "80.65",
                                    "living_area": "0",
                                    "price": 136000,
                                    "price_m2": 1686,
                                    "image": null,
                                    "image2": null,
                                    "mezonet": 0,
                                    "panorama": 0,
                                    "pdf": null,
                                    "gallery": null,
                                    "title_bg": "Апартамент 4",
                                    "text_bg": "",
                                    "details_bg": null,
                                    "slug_bg": "apartament-4",
                                    "seo_title_bg": "Апартамент 4 | Меркурий 99",
                                    "seo_description_bg": null,
                                    "seo_keywords_bg": null,
                                    "hide_sitemap_bg": 0,
                                    "title_en": "Apartment 4",
                                    "text_en": "",
                                    "details_en": null,
                                    "slug_en": "apartment-4",
                                    "seo_title_en": "Apartment 4 | Mercury 99",
                                    "seo_description_en": null,
                                    "seo_keywords_en": null,
                                    "hide_sitemap_en": 0,
                                    "building": {
                                        "id": 1,
                                        "slug_bg": "starlight",
                                        "slug_en": "starlight"
                                    },
                                    "entrance": {
                                        "id": 1,
                                        "slug_bg": "a",
                                        "slug_en": "a"
                                    },
                                    "floor": {
                                        "id": 1,
                                        "slug_bg": "2",
                                        "slug_en": "2"
                                    }
                                },
                                {
                                    "id": 194,
                                    "coords": "",
                                    "degrees": null,
                                    "status": 1,
                                    "floor_for_filters": null,
                                    "rooms": 1,
                                    "total_area": "80.65",
                                    "living_area": "0",
                                    "price": 122500,
                                    "price_m2": 1519,
                                    "image": null,
                                    "image2": null,
                                    "mezonet": 0,
                                    "panorama": 0,
                                    "pdf": null,
                                    "gallery": null,
                                    "title_bg": "Апартамент 3",
                                    "text_bg": "",
                                    "details_bg": null,
                                    "slug_bg": "apartament-3",
                                    "seo_title_bg": "Апартамент 3 | Меркурий 99",
                                    "seo_description_bg": null,
                                    "seo_keywords_bg": null,
                                    "hide_sitemap_bg": 0,
                                    "title_en": "Apartment 3",
                                    "text_en": "",
                                    "details_en": null,
                                    "slug_en": "apartment-3",
                                    "seo_title_en": "Apartment 3 | Mercury 99",
                                    "seo_description_en": null,
                                    "seo_keywords_en": null,
                                    "hide_sitemap_en": 0,
                                    "building": {
                                        "id": 1,
                                        "slug_bg": "starlight",
                                        "slug_en": "starlight"
                                    },
                                    "entrance": {
                                        "id": 1,
                                        "slug_bg": "a",
                                        "slug_en": "a"
                                    },
                                    "floor": {
                                        "id": 1,
                                        "slug_bg": "2",
                                        "slug_en": "2"
                                    }
                                }
                            ],
                            "links": {
                                "self": "link-value"
                            }
                        }
                    }
                ],
                "links": {
                    "self": "link-value"
                }
            }
        },
        {
            "id": 11,
            "image": null,
            "coords": "coords",
            "title_bg": "Б",
            "slug_bg": "b",
            "seo_title_bg": "Б | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "B",
            "slug_en": "b",
            "seo_title_en": "B | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0,
            "building": {
                "id": 1,
                "slug_bg": "starlight",
                "slug_en": "starlight"
            },
            "floors": {
                "data": [
                    {
                        "id": 45,
                        "image": null,
                        "coords": "225, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                        "degrees": 6,
                        "title_bg": "1",
                        "slug_bg": "1",
                        "seo_title_bg": "1 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "1",
                        "slug_en": "1",
                        "seo_title_en": "1 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 11,
                            "slug_bg": "b",
                            "slug_en": "b"
                        },
                        "apartments": {
                            "data": [
                                {
                                    "id": 195,
                                    "coords": "",
                                    "degrees": null,
                                    "status": 1,
                                    "floor_for_filters": null,
                                    "rooms": 3,
                                    "total_area": "150.86",
                                    "living_area": "0",
                                    "price": 141000,
                                    "price_m2": 935,
                                    "image": null,
                                    "image2": null,
                                    "mezonet": 0,
                                    "panorama": 0,
                                    "pdf": null,
                                    "gallery": null,
                                    "title_bg": "Апартамент 5",
                                    "text_bg": "",
                                    "details_bg": null,
                                    "slug_bg": "apartament-5",
                                    "seo_title_bg": "Апартамент 5 | Меркурий 99",
                                    "seo_description_bg": null,
                                    "seo_keywords_bg": null,
                                    "hide_sitemap_bg": 0,
                                    "title_en": "Apartment 5",
                                    "text_en": "",
                                    "details_en": null,
                                    "slug_en": "apartment-5",
                                    "seo_title_en": "Apartment 5 | Mercury 99",
                                    "seo_description_en": null,
                                    "seo_keywords_en": null,
                                    "hide_sitemap_en": 0,
                                    "building": {
                                        "id": 1,
                                        "slug_bg": "starlight",
                                        "slug_en": "starlight"
                                    },
                                    "entrance": {
                                        "id": 11,
                                        "slug_bg": "b",
                                        "slug_en": "b"
                                    },
                                    "floor": {
                                        "id": 11,
                                        "slug_bg": "1",
                                        "slug_en": "1"
                                    }
                                },
                                {
                                    "id": 196,
                                    "coords": "",
                                    "degrees": null,
                                    "status": 1,
                                    "floor_for_filters": null,
                                    "rooms": 1,
                                    "total_area": "121.26",
                                    "living_area": "0",
                                    "price": 100000,
                                    "price_m2": 825,
                                    "image": null,
                                    "image2": null,
                                    "mezonet": 0,
                                    "panorama": 0,
                                    "pdf": null,
                                    "gallery": null,
                                    "title_bg": "Апартамент 6",
                                    "text_bg": "",
                                    "details_bg": null,
                                    "slug_bg": "apartament-6",
                                    "seo_title_bg": "Апартамент 6 | Меркурий 99",
                                    "seo_description_bg": null,
                                    "seo_keywords_bg": null,
                                    "hide_sitemap_bg": 0,
                                    "title_en": "Apartment 6",
                                    "text_en": "",
                                    "details_en": null,
                                    "slug_en": "apartment-6",
                                    "seo_title_en": "Apartment 6 | Mercury 99",
                                    "seo_description_en": null,
                                    "seo_keywords_en": null,
                                    "hide_sitemap_en": 0,
                                    "building": {
                                        "id": 1,
                                        "slug_bg": "starlight",
                                        "slug_en": "starlight"
                                    },
                                    "entrance": {
                                        "id": 11,
                                        "slug_bg": "b",
                                        "slug_en": "b"
                                    },
                                    "floor": {
                                        "id": 11,
                                        "slug_bg": "1",
                                        "slug_en": "1"
                                    }
                                }
                            ],
                            "links": {
                                "self": "link-value"
                            }
                        }
                    },
                    {
                        "id": 46,
                        "image": null,
                        "coords": "325, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                        "degrees": 6,
                        "title_bg": "2",
                        "slug_bg": "2",
                        "seo_title_bg": "2 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "2",
                        "slug_en": "2",
                        "seo_title_en": "2 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 11,
                            "slug_bg": "b",
                            "slug_en": "b"
                        },
                        "apartments": {
                            "data": [
                                {
                                    "id": 197,
                                    "coords": "",
                                    "degrees": null,
                                    "status": 3,
                                    "floor_for_filters": null,
                                    "rooms": 2,
                                    "total_area": "158.17",
                                    "living_area": "0",
                                    "price": 141000,
                                    "price_m2": 891,
                                    "image": null,
                                    "image2": null,
                                    "mezonet": 1,
                                    "panorama": 0,
                                    "pdf": null,
                                    "gallery": null,
                                    "title_bg": "Апартамент 7",
                                    "text_bg": "",
                                    "details_bg": null,
                                    "slug_bg": "apartament-7",
                                    "seo_title_bg": "Апартамент 7 | Меркурий 99",
                                    "seo_description_bg": null,
                                    "seo_keywords_bg": null,
                                    "hide_sitemap_bg": 0,
                                    "title_en": "Apartment 7",
                                    "text_en": "",
                                    "details_en": null,
                                    "slug_en": "apartment-7",
                                    "seo_title_en": "Apartment 7 | Mercury 99",
                                    "seo_description_en": null,
                                    "seo_keywords_en": null,
                                    "hide_sitemap_en": 0,
                                    "building": {
                                        "id": 1,
                                        "slug_bg": "starlight",
                                        "slug_en": "starlight"
                                    },
                                    "entrance": {
                                        "id": 11,
                                        "slug_bg": "b",
                                        "slug_en": "b"
                                    },
                                    "floor": {
                                        "id": 11,
                                        "slug_bg": "2",
                                        "slug_en": "2"
                                    }
                                }
                            ],
                            "links": {
                                "self": "link-value"
                            }
                        }
                    }
                ],
                "links": {
                    "self": "link-value"
                }
            }
        }
    ],
    "links": {
        "self": "link-value"
    }
}

HTTP Request

GET api/entrances/building/{id}

Get Floor by ID.

Example request:

curl -X GET "http://mercury-api.imigix.com/api/floor/{id}" \
-H "Accept: application/json"
var settings = {
    "async": true,
    "crossDomain": true,
    "url": "http://mercury-api.imigix.com/api/floor/{id}",
    "method": "GET",
    "headers": {
        "accept": "application/json"
    }
}

$.ajax(settings).done(function (response) {
    console.log(response);
});

Example response:

{
    "data": {
        "id": 1,
        "image": "http:\/\/localhost\/uploads\/images\/big\/57_floor1.png",
        "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
        "title_bg": "1",
        "slug_bg": "1",
        "seo_title_bg": "1 | Меркурий 99",
        "seo_description_bg": null,
        "seo_keywords_bg": null,
        "hide_sitemap_bg": 0,
        "title_en": "1",
        "slug_en": "1",
        "seo_title_en": "1 | Mercury 99",
        "seo_description_en": null,
        "seo_keywords_en": null,
        "hide_sitemap_en": 0,
        "prev_floor": null,
        "next_floor": {
            "id": 44,
            "image": null,
            "coords": "125, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
            "title_bg": "2",
            "slug_bg": "2",
            "seo_title_bg": "2 | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "2",
            "slug_en": "2",
            "seo_title_en": "2 | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0,
            "prev_floor": null,
            "next_floor": null,
            "building": {
                "id": 1,
                "image": "http:\/\/localhost\/uploads\/images\/big\/17_build-starlight.jpg",
                "thumb": null,
                "pdf": null,
                "map": "http:\/\/localhost\/uploads\/images\/big\/16_map.jpg",
                "status": 1,
                "google_map": "https:\/\/www.google.com\/maps\/embed?pb=!1m17!1m8!1m3!1d11723.450867031348!2d23.304417599999997!3d42.72779635!3m2!1i1024!2i768!4f13.1!4m6!3e0!4m3!3m2!1d42.7293567!2d23.2992676!4m0!5e0!3m2!1sbg!2sbg!4v1539100876083",
                "use_svg": 0,
                "gallery": null,
                "title_bg": "Старлайт Тестова",
                "annonce_bg": "Lorem Ipsum е елементарен примерен текст, използван в печатарската и типографската индустрия.",
                "text_bg": "<p>A collection of textile samples lay spread out on the table - Samsa was a travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer. Gregor then turned to look out the window at the dull weather.&nbsp;A collection of textile samples lay spread out on the table - Samsa was a travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer. Gregor then turned to look out the window at the dull weather. &nbsp;<\/p>\r\n\r\n<p>A collection of textile samples lay spread out on the table - Samsa was a travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer. Gregor then turned to look out the window at the dull weather.<\/p>",
                "slug_bg": "starlight",
                "seo_title_bg": "Старлайт Тестова | Меркурий 99",
                "seo_description_bg": null,
                "seo_keywords_bg": null,
                "hide_sitemap_bg": 0,
                "title_en": "Starlight Testing",
                "annonce_en": "Gregor then turned to look out the window at the dull weather.",
                "text_en": "<p>A collection of textile samples lay spread out on the table - Samsa was a travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer. Gregor then turned to look out the window at the dull weather.&nbsp;A collection of textile samples lay spread out on the table - Samsa was a travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer. Gregor then turned to look out the window at the dull weather. &nbsp;<\/p>\r\n\r\n<p>A collection of textile samples lay spread out on the table - Samsa was a travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer. Gregor then turned to look out the window at the dull weather.<\/p>",
                "slug_en": "starlight",
                "seo_title_en": "Starlight Testing | Mercury 99",
                "seo_description_en": null,
                "seo_keywords_en": null,
                "hide_sitemap_en": 0,
                "prev_building": null,
                "next_building": null,
                "entrances": {
                    "data": [
                        {
                            "id": 1,
                            "image": null,
                            "coords": "coords",
                            "title_bg": "A",
                            "slug_bg": "a",
                            "seo_title_bg": "A | Меркурий 99",
                            "seo_description_bg": null,
                            "seo_keywords_bg": null,
                            "hide_sitemap_bg": 0,
                            "title_en": "A",
                            "slug_en": "a",
                            "seo_title_en": "A | Mercury 99",
                            "seo_description_en": null,
                            "seo_keywords_en": null,
                            "hide_sitemap_en": 0,
                            "building": {
                                "id": 1,
                                "slug_bg": "starlight",
                                "slug_en": "starlight"
                            },
                            "floors": {
                                "data": [
                                    {
                                        "id": 1,
                                        "image": "http:\/\/localhost\/uploads\/images\/big\/57_floor1.png",
                                        "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                                        "degrees": 6,
                                        "title_bg": "1",
                                        "slug_bg": "1",
                                        "seo_title_bg": "1 | Меркурий 99",
                                        "seo_description_bg": null,
                                        "seo_keywords_bg": null,
                                        "hide_sitemap_bg": 0,
                                        "title_en": "1",
                                        "slug_en": "1",
                                        "seo_title_en": "1 | Mercury 99",
                                        "seo_description_en": null,
                                        "seo_keywords_en": null,
                                        "hide_sitemap_en": 0,
                                        "building": {
                                            "id": 1,
                                            "slug_bg": "starlight",
                                            "slug_en": "starlight"
                                        },
                                        "entrance": {
                                            "id": 1,
                                            "slug_bg": "a",
                                            "slug_en": "a"
                                        },
                                        "apartments": {
                                            "data": [
                                                {
                                                    "id": 1,
                                                    "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                                                    "degrees": null,
                                                    "status": 1,
                                                    "floor_for_filters": null,
                                                    "rooms": 2,
                                                    "total_area": "68.75",
                                                    "living_area": "0",
                                                    "price": 100000,
                                                    "price_m2": 1455,
                                                    "image": null,
                                                    "image2": null,
                                                    "mezonet": 0,
                                                    "panorama": 0,
                                                    "pdf": null,
                                                    "gallery": null,
                                                    "title_bg": "Апартамент 1",
                                                    "text_bg": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                                                    "details_bg": null,
                                                    "slug_bg": "apartament-1",
                                                    "seo_title_bg": "Апартамент 1 | Меркурий 99",
                                                    "seo_description_bg": null,
                                                    "seo_keywords_bg": null,
                                                    "hide_sitemap_bg": 0,
                                                    "title_en": "Apartment 1",
                                                    "text_en": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                                                    "details_en": null,
                                                    "slug_en": "apartment-1",
                                                    "seo_title_en": "Apartment 1 | Mercury 99",
                                                    "seo_description_en": null,
                                                    "seo_keywords_en": null,
                                                    "hide_sitemap_en": 0,
                                                    "building": {
                                                        "id": 1,
                                                        "slug_bg": "starlight",
                                                        "slug_en": "starlight"
                                                    },
                                                    "entrance": {
                                                        "id": 1,
                                                        "slug_bg": "a",
                                                        "slug_en": "a"
                                                    },
                                                    "floor": {
                                                        "id": 1,
                                                        "slug_bg": "1",
                                                        "slug_en": "1"
                                                    }
                                                },
                                                {
                                                    "id": 192,
                                                    "coords": "",
                                                    "degrees": null,
                                                    "status": 1,
                                                    "floor_for_filters": null,
                                                    "rooms": 3,
                                                    "total_area": "121.26",
                                                    "living_area": "0",
                                                    "price": 136000,
                                                    "price_m2": 1122,
                                                    "image": null,
                                                    "image2": null,
                                                    "mezonet": 0,
                                                    "panorama": 0,
                                                    "pdf": null,
                                                    "gallery": null,
                                                    "title_bg": "Апартамент 2",
                                                    "text_bg": "",
                                                    "details_bg": null,
                                                    "slug_bg": "apartament-2",
                                                    "seo_title_bg": "Апартамент 2 | Меркурий 99",
                                                    "seo_description_bg": null,
                                                    "seo_keywords_bg": null,
                                                    "hide_sitemap_bg": 0,
                                                    "title_en": "Apartment 2",
                                                    "text_en": "",
                                                    "details_en": null,
                                                    "slug_en": "apartment-2",
                                                    "seo_title_en": "Apartment 2 | Mercury 99",
                                                    "seo_description_en": null,
                                                    "seo_keywords_en": null,
                                                    "hide_sitemap_en": 0,
                                                    "building": {
                                                        "id": 1,
                                                        "slug_bg": "starlight",
                                                        "slug_en": "starlight"
                                                    },
                                                    "entrance": {
                                                        "id": 1,
                                                        "slug_bg": "a",
                                                        "slug_en": "a"
                                                    },
                                                    "floor": {
                                                        "id": 1,
                                                        "slug_bg": "1",
                                                        "slug_en": "1"
                                                    }
                                                }
                                            ],
                                            "links": {
                                                "self": "link-value"
                                            }
                                        }
                                    },
                                    {
                                        "id": 44,
                                        "image": null,
                                        "coords": "125, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                                        "degrees": 6,
                                        "title_bg": "2",
                                        "slug_bg": "2",
                                        "seo_title_bg": "2 | Меркурий 99",
                                        "seo_description_bg": null,
                                        "seo_keywords_bg": null,
                                        "hide_sitemap_bg": 0,
                                        "title_en": "2",
                                        "slug_en": "2",
                                        "seo_title_en": "2 | Mercury 99",
                                        "seo_description_en": null,
                                        "seo_keywords_en": null,
                                        "hide_sitemap_en": 0,
                                        "building": {
                                            "id": 1,
                                            "slug_bg": "starlight",
                                            "slug_en": "starlight"
                                        },
                                        "entrance": {
                                            "id": 1,
                                            "slug_bg": "a",
                                            "slug_en": "a"
                                        },
                                        "apartments": {
                                            "data": [
                                                {
                                                    "id": 193,
                                                    "coords": "",
                                                    "degrees": null,
                                                    "status": 2,
                                                    "floor_for_filters": null,
                                                    "rooms": 1,
                                                    "total_area": "80.65",
                                                    "living_area": "0",
                                                    "price": 136000,
                                                    "price_m2": 1686,
                                                    "image": null,
                                                    "image2": null,
                                                    "mezonet": 0,
                                                    "panorama": 0,
                                                    "pdf": null,
                                                    "gallery": null,
                                                    "title_bg": "Апартамент 4",
                                                    "text_bg": "",
                                                    "details_bg": null,
                                                    "slug_bg": "apartament-4",
                                                    "seo_title_bg": "Апартамент 4 | Меркурий 99",
                                                    "seo_description_bg": null,
                                                    "seo_keywords_bg": null,
                                                    "hide_sitemap_bg": 0,
                                                    "title_en": "Apartment 4",
                                                    "text_en": "",
                                                    "details_en": null,
                                                    "slug_en": "apartment-4",
                                                    "seo_title_en": "Apartment 4 | Mercury 99",
                                                    "seo_description_en": null,
                                                    "seo_keywords_en": null,
                                                    "hide_sitemap_en": 0,
                                                    "building": {
                                                        "id": 1,
                                                        "slug_bg": "starlight",
                                                        "slug_en": "starlight"
                                                    },
                                                    "entrance": {
                                                        "id": 1,
                                                        "slug_bg": "a",
                                                        "slug_en": "a"
                                                    },
                                                    "floor": {
                                                        "id": 1,
                                                        "slug_bg": "2",
                                                        "slug_en": "2"
                                                    }
                                                },
                                                {
                                                    "id": 194,
                                                    "coords": "",
                                                    "degrees": null,
                                                    "status": 1,
                                                    "floor_for_filters": null,
                                                    "rooms": 1,
                                                    "total_area": "80.65",
                                                    "living_area": "0",
                                                    "price": 122500,
                                                    "price_m2": 1519,
                                                    "image": null,
                                                    "image2": null,
                                                    "mezonet": 0,
                                                    "panorama": 0,
                                                    "pdf": null,
                                                    "gallery": null,
                                                    "title_bg": "Апартамент 3",
                                                    "text_bg": "",
                                                    "details_bg": null,
                                                    "slug_bg": "apartament-3",
                                                    "seo_title_bg": "Апартамент 3 | Меркурий 99",
                                                    "seo_description_bg": null,
                                                    "seo_keywords_bg": null,
                                                    "hide_sitemap_bg": 0,
                                                    "title_en": "Apartment 3",
                                                    "text_en": "",
                                                    "details_en": null,
                                                    "slug_en": "apartment-3",
                                                    "seo_title_en": "Apartment 3 | Mercury 99",
                                                    "seo_description_en": null,
                                                    "seo_keywords_en": null,
                                                    "hide_sitemap_en": 0,
                                                    "building": {
                                                        "id": 1,
                                                        "slug_bg": "starlight",
                                                        "slug_en": "starlight"
                                                    },
                                                    "entrance": {
                                                        "id": 1,
                                                        "slug_bg": "a",
                                                        "slug_en": "a"
                                                    },
                                                    "floor": {
                                                        "id": 1,
                                                        "slug_bg": "2",
                                                        "slug_en": "2"
                                                    }
                                                }
                                            ],
                                            "links": {
                                                "self": "link-value"
                                            }
                                        }
                                    }
                                ],
                                "links": {
                                    "self": "link-value"
                                }
                            }
                        },
                        {
                            "id": 11,
                            "image": null,
                            "coords": "coords",
                            "title_bg": "Б",
                            "slug_bg": "b",
                            "seo_title_bg": "Б | Меркурий 99",
                            "seo_description_bg": null,
                            "seo_keywords_bg": null,
                            "hide_sitemap_bg": 0,
                            "title_en": "B",
                            "slug_en": "b",
                            "seo_title_en": "B | Mercury 99",
                            "seo_description_en": null,
                            "seo_keywords_en": null,
                            "hide_sitemap_en": 0,
                            "building": {
                                "id": 1,
                                "slug_bg": "starlight",
                                "slug_en": "starlight"
                            },
                            "floors": {
                                "data": [
                                    {
                                        "id": 45,
                                        "image": null,
                                        "coords": "225, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                                        "degrees": 6,
                                        "title_bg": "1",
                                        "slug_bg": "1",
                                        "seo_title_bg": "1 | Меркурий 99",
                                        "seo_description_bg": null,
                                        "seo_keywords_bg": null,
                                        "hide_sitemap_bg": 0,
                                        "title_en": "1",
                                        "slug_en": "1",
                                        "seo_title_en": "1 | Mercury 99",
                                        "seo_description_en": null,
                                        "seo_keywords_en": null,
                                        "hide_sitemap_en": 0,
                                        "building": {
                                            "id": 1,
                                            "slug_bg": "starlight",
                                            "slug_en": "starlight"
                                        },
                                        "entrance": {
                                            "id": 11,
                                            "slug_bg": "b",
                                            "slug_en": "b"
                                        },
                                        "apartments": {
                                            "data": [
                                                {
                                                    "id": 195,
                                                    "coords": "",
                                                    "degrees": null,
                                                    "status": 1,
                                                    "floor_for_filters": null,
                                                    "rooms": 3,
                                                    "total_area": "150.86",
                                                    "living_area": "0",
                                                    "price": 141000,
                                                    "price_m2": 935,
                                                    "image": null,
                                                    "image2": null,
                                                    "mezonet": 0,
                                                    "panorama": 0,
                                                    "pdf": null,
                                                    "gallery": null,
                                                    "title_bg": "Апартамент 5",
                                                    "text_bg": "",
                                                    "details_bg": null,
                                                    "slug_bg": "apartament-5",
                                                    "seo_title_bg": "Апартамент 5 | Меркурий 99",
                                                    "seo_description_bg": null,
                                                    "seo_keywords_bg": null,
                                                    "hide_sitemap_bg": 0,
                                                    "title_en": "Apartment 5",
                                                    "text_en": "",
                                                    "details_en": null,
                                                    "slug_en": "apartment-5",
                                                    "seo_title_en": "Apartment 5 | Mercury 99",
                                                    "seo_description_en": null,
                                                    "seo_keywords_en": null,
                                                    "hide_sitemap_en": 0,
                                                    "building": {
                                                        "id": 1,
                                                        "slug_bg": "starlight",
                                                        "slug_en": "starlight"
                                                    },
                                                    "entrance": {
                                                        "id": 11,
                                                        "slug_bg": "b",
                                                        "slug_en": "b"
                                                    },
                                                    "floor": {
                                                        "id": 11,
                                                        "slug_bg": "1",
                                                        "slug_en": "1"
                                                    }
                                                },
                                                {
                                                    "id": 196,
                                                    "coords": "",
                                                    "degrees": null,
                                                    "status": 1,
                                                    "floor_for_filters": null,
                                                    "rooms": 1,
                                                    "total_area": "121.26",
                                                    "living_area": "0",
                                                    "price": 100000,
                                                    "price_m2": 825,
                                                    "image": null,
                                                    "image2": null,
                                                    "mezonet": 0,
                                                    "panorama": 0,
                                                    "pdf": null,
                                                    "gallery": null,
                                                    "title_bg": "Апартамент 6",
                                                    "text_bg": "",
                                                    "details_bg": null,
                                                    "slug_bg": "apartament-6",
                                                    "seo_title_bg": "Апартамент 6 | Меркурий 99",
                                                    "seo_description_bg": null,
                                                    "seo_keywords_bg": null,
                                                    "hide_sitemap_bg": 0,
                                                    "title_en": "Apartment 6",
                                                    "text_en": "",
                                                    "details_en": null,
                                                    "slug_en": "apartment-6",
                                                    "seo_title_en": "Apartment 6 | Mercury 99",
                                                    "seo_description_en": null,
                                                    "seo_keywords_en": null,
                                                    "hide_sitemap_en": 0,
                                                    "building": {
                                                        "id": 1,
                                                        "slug_bg": "starlight",
                                                        "slug_en": "starlight"
                                                    },
                                                    "entrance": {
                                                        "id": 11,
                                                        "slug_bg": "b",
                                                        "slug_en": "b"
                                                    },
                                                    "floor": {
                                                        "id": 11,
                                                        "slug_bg": "1",
                                                        "slug_en": "1"
                                                    }
                                                }
                                            ],
                                            "links": {
                                                "self": "link-value"
                                            }
                                        }
                                    },
                                    {
                                        "id": 46,
                                        "image": null,
                                        "coords": "325, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                                        "degrees": 6,
                                        "title_bg": "2",
                                        "slug_bg": "2",
                                        "seo_title_bg": "2 | Меркурий 99",
                                        "seo_description_bg": null,
                                        "seo_keywords_bg": null,
                                        "hide_sitemap_bg": 0,
                                        "title_en": "2",
                                        "slug_en": "2",
                                        "seo_title_en": "2 | Mercury 99",
                                        "seo_description_en": null,
                                        "seo_keywords_en": null,
                                        "hide_sitemap_en": 0,
                                        "building": {
                                            "id": 1,
                                            "slug_bg": "starlight",
                                            "slug_en": "starlight"
                                        },
                                        "entrance": {
                                            "id": 11,
                                            "slug_bg": "b",
                                            "slug_en": "b"
                                        },
                                        "apartments": {
                                            "data": [
                                                {
                                                    "id": 197,
                                                    "coords": "",
                                                    "degrees": null,
                                                    "status": 3,
                                                    "floor_for_filters": null,
                                                    "rooms": 2,
                                                    "total_area": "158.17",
                                                    "living_area": "0",
                                                    "price": 141000,
                                                    "price_m2": 891,
                                                    "image": null,
                                                    "image2": null,
                                                    "mezonet": 1,
                                                    "panorama": 0,
                                                    "pdf": null,
                                                    "gallery": null,
                                                    "title_bg": "Апартамент 7",
                                                    "text_bg": "",
                                                    "details_bg": null,
                                                    "slug_bg": "apartament-7",
                                                    "seo_title_bg": "Апартамент 7 | Меркурий 99",
                                                    "seo_description_bg": null,
                                                    "seo_keywords_bg": null,
                                                    "hide_sitemap_bg": 0,
                                                    "title_en": "Apartment 7",
                                                    "text_en": "",
                                                    "details_en": null,
                                                    "slug_en": "apartment-7",
                                                    "seo_title_en": "Apartment 7 | Mercury 99",
                                                    "seo_description_en": null,
                                                    "seo_keywords_en": null,
                                                    "hide_sitemap_en": 0,
                                                    "building": {
                                                        "id": 1,
                                                        "slug_bg": "starlight",
                                                        "slug_en": "starlight"
                                                    },
                                                    "entrance": {
                                                        "id": 11,
                                                        "slug_bg": "b",
                                                        "slug_en": "b"
                                                    },
                                                    "floor": {
                                                        "id": 11,
                                                        "slug_bg": "2",
                                                        "slug_en": "2"
                                                    }
                                                }
                                            ],
                                            "links": {
                                                "self": "link-value"
                                            }
                                        }
                                    }
                                ],
                                "links": {
                                    "self": "link-value"
                                }
                            }
                        }
                    ],
                    "links": {
                        "self": "link-value"
                    }
                },
                "floors": {
                    "data": [
                        {
                            "id": 1,
                            "image": "http:\/\/localhost\/uploads\/images\/big\/57_floor1.png",
                            "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                            "degrees": 6,
                            "title_bg": "1",
                            "slug_bg": "1",
                            "seo_title_bg": "1 | Меркурий 99",
                            "seo_description_bg": null,
                            "seo_keywords_bg": null,
                            "hide_sitemap_bg": 0,
                            "title_en": "1",
                            "slug_en": "1",
                            "seo_title_en": "1 | Mercury 99",
                            "seo_description_en": null,
                            "seo_keywords_en": null,
                            "hide_sitemap_en": 0,
                            "building": {
                                "id": 1,
                                "slug_bg": "starlight",
                                "slug_en": "starlight"
                            },
                            "entrance": {
                                "id": 1,
                                "slug_bg": "a",
                                "slug_en": "a"
                            },
                            "apartments": {
                                "data": [
                                    {
                                        "id": 1,
                                        "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                                        "degrees": null,
                                        "status": 1,
                                        "floor_for_filters": null,
                                        "rooms": 2,
                                        "total_area": "68.75",
                                        "living_area": "0",
                                        "price": 100000,
                                        "price_m2": 1455,
                                        "image": null,
                                        "image2": null,
                                        "mezonet": 0,
                                        "panorama": 0,
                                        "pdf": null,
                                        "gallery": null,
                                        "title_bg": "Апартамент 1",
                                        "text_bg": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                                        "details_bg": null,
                                        "slug_bg": "apartament-1",
                                        "seo_title_bg": "Апартамент 1 | Меркурий 99",
                                        "seo_description_bg": null,
                                        "seo_keywords_bg": null,
                                        "hide_sitemap_bg": 0,
                                        "title_en": "Apartment 1",
                                        "text_en": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                                        "details_en": null,
                                        "slug_en": "apartment-1",
                                        "seo_title_en": "Apartment 1 | Mercury 99",
                                        "seo_description_en": null,
                                        "seo_keywords_en": null,
                                        "hide_sitemap_en": 0,
                                        "building": {
                                            "id": 1,
                                            "slug_bg": "starlight",
                                            "slug_en": "starlight"
                                        },
                                        "entrance": {
                                            "id": 1,
                                            "slug_bg": "a",
                                            "slug_en": "a"
                                        },
                                        "floor": {
                                            "id": 1,
                                            "slug_bg": "1",
                                            "slug_en": "1"
                                        }
                                    },
                                    {
                                        "id": 192,
                                        "coords": "",
                                        "degrees": null,
                                        "status": 1,
                                        "floor_for_filters": null,
                                        "rooms": 3,
                                        "total_area": "121.26",
                                        "living_area": "0",
                                        "price": 136000,
                                        "price_m2": 1122,
                                        "image": null,
                                        "image2": null,
                                        "mezonet": 0,
                                        "panorama": 0,
                                        "pdf": null,
                                        "gallery": null,
                                        "title_bg": "Апартамент 2",
                                        "text_bg": "",
                                        "details_bg": null,
                                        "slug_bg": "apartament-2",
                                        "seo_title_bg": "Апартамент 2 | Меркурий 99",
                                        "seo_description_bg": null,
                                        "seo_keywords_bg": null,
                                        "hide_sitemap_bg": 0,
                                        "title_en": "Apartment 2",
                                        "text_en": "",
                                        "details_en": null,
                                        "slug_en": "apartment-2",
                                        "seo_title_en": "Apartment 2 | Mercury 99",
                                        "seo_description_en": null,
                                        "seo_keywords_en": null,
                                        "hide_sitemap_en": 0,
                                        "building": {
                                            "id": 1,
                                            "slug_bg": "starlight",
                                            "slug_en": "starlight"
                                        },
                                        "entrance": {
                                            "id": 1,
                                            "slug_bg": "a",
                                            "slug_en": "a"
                                        },
                                        "floor": {
                                            "id": 1,
                                            "slug_bg": "1",
                                            "slug_en": "1"
                                        }
                                    }
                                ],
                                "links": {
                                    "self": "link-value"
                                }
                            }
                        },
                        {
                            "id": 44,
                            "image": null,
                            "coords": "125, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                            "degrees": 6,
                            "title_bg": "2",
                            "slug_bg": "2",
                            "seo_title_bg": "2 | Меркурий 99",
                            "seo_description_bg": null,
                            "seo_keywords_bg": null,
                            "hide_sitemap_bg": 0,
                            "title_en": "2",
                            "slug_en": "2",
                            "seo_title_en": "2 | Mercury 99",
                            "seo_description_en": null,
                            "seo_keywords_en": null,
                            "hide_sitemap_en": 0,
                            "building": {
                                "id": 1,
                                "slug_bg": "starlight",
                                "slug_en": "starlight"
                            },
                            "entrance": {
                                "id": 1,
                                "slug_bg": "a",
                                "slug_en": "a"
                            },
                            "apartments": {
                                "data": [
                                    {
                                        "id": 193,
                                        "coords": "",
                                        "degrees": null,
                                        "status": 2,
                                        "floor_for_filters": null,
                                        "rooms": 1,
                                        "total_area": "80.65",
                                        "living_area": "0",
                                        "price": 136000,
                                        "price_m2": 1686,
                                        "image": null,
                                        "image2": null,
                                        "mezonet": 0,
                                        "panorama": 0,
                                        "pdf": null,
                                        "gallery": null,
                                        "title_bg": "Апартамент 4",
                                        "text_bg": "",
                                        "details_bg": null,
                                        "slug_bg": "apartament-4",
                                        "seo_title_bg": "Апартамент 4 | Меркурий 99",
                                        "seo_description_bg": null,
                                        "seo_keywords_bg": null,
                                        "hide_sitemap_bg": 0,
                                        "title_en": "Apartment 4",
                                        "text_en": "",
                                        "details_en": null,
                                        "slug_en": "apartment-4",
                                        "seo_title_en": "Apartment 4 | Mercury 99",
                                        "seo_description_en": null,
                                        "seo_keywords_en": null,
                                        "hide_sitemap_en": 0,
                                        "building": {
                                            "id": 1,
                                            "slug_bg": "starlight",
                                            "slug_en": "starlight"
                                        },
                                        "entrance": {
                                            "id": 1,
                                            "slug_bg": "a",
                                            "slug_en": "a"
                                        },
                                        "floor": {
                                            "id": 1,
                                            "slug_bg": "2",
                                            "slug_en": "2"
                                        }
                                    },
                                    {
                                        "id": 194,
                                        "coords": "",
                                        "degrees": null,
                                        "status": 1,
                                        "floor_for_filters": null,
                                        "rooms": 1,
                                        "total_area": "80.65",
                                        "living_area": "0",
                                        "price": 122500,
                                        "price_m2": 1519,
                                        "image": null,
                                        "image2": null,
                                        "mezonet": 0,
                                        "panorama": 0,
                                        "pdf": null,
                                        "gallery": null,
                                        "title_bg": "Апартамент 3",
                                        "text_bg": "",
                                        "details_bg": null,
                                        "slug_bg": "apartament-3",
                                        "seo_title_bg": "Апартамент 3 | Меркурий 99",
                                        "seo_description_bg": null,
                                        "seo_keywords_bg": null,
                                        "hide_sitemap_bg": 0,
                                        "title_en": "Apartment 3",
                                        "text_en": "",
                                        "details_en": null,
                                        "slug_en": "apartment-3",
                                        "seo_title_en": "Apartment 3 | Mercury 99",
                                        "seo_description_en": null,
                                        "seo_keywords_en": null,
                                        "hide_sitemap_en": 0,
                                        "building": {
                                            "id": 1,
                                            "slug_bg": "starlight",
                                            "slug_en": "starlight"
                                        },
                                        "entrance": {
                                            "id": 1,
                                            "slug_bg": "a",
                                            "slug_en": "a"
                                        },
                                        "floor": {
                                            "id": 1,
                                            "slug_bg": "2",
                                            "slug_en": "2"
                                        }
                                    }
                                ],
                                "links": {
                                    "self": "link-value"
                                }
                            }
                        },
                        {
                            "id": 45,
                            "image": null,
                            "coords": "225, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                            "degrees": 6,
                            "title_bg": "1",
                            "slug_bg": "1",
                            "seo_title_bg": "1 | Меркурий 99",
                            "seo_description_bg": null,
                            "seo_keywords_bg": null,
                            "hide_sitemap_bg": 0,
                            "title_en": "1",
                            "slug_en": "1",
                            "seo_title_en": "1 | Mercury 99",
                            "seo_description_en": null,
                            "seo_keywords_en": null,
                            "hide_sitemap_en": 0,
                            "building": {
                                "id": 1,
                                "slug_bg": "starlight",
                                "slug_en": "starlight"
                            },
                            "entrance": {
                                "id": 11,
                                "slug_bg": "b",
                                "slug_en": "b"
                            },
                            "apartments": {
                                "data": [
                                    {
                                        "id": 195,
                                        "coords": "",
                                        "degrees": null,
                                        "status": 1,
                                        "floor_for_filters": null,
                                        "rooms": 3,
                                        "total_area": "150.86",
                                        "living_area": "0",
                                        "price": 141000,
                                        "price_m2": 935,
                                        "image": null,
                                        "image2": null,
                                        "mezonet": 0,
                                        "panorama": 0,
                                        "pdf": null,
                                        "gallery": null,
                                        "title_bg": "Апартамент 5",
                                        "text_bg": "",
                                        "details_bg": null,
                                        "slug_bg": "apartament-5",
                                        "seo_title_bg": "Апартамент 5 | Меркурий 99",
                                        "seo_description_bg": null,
                                        "seo_keywords_bg": null,
                                        "hide_sitemap_bg": 0,
                                        "title_en": "Apartment 5",
                                        "text_en": "",
                                        "details_en": null,
                                        "slug_en": "apartment-5",
                                        "seo_title_en": "Apartment 5 | Mercury 99",
                                        "seo_description_en": null,
                                        "seo_keywords_en": null,
                                        "hide_sitemap_en": 0,
                                        "building": {
                                            "id": 1,
                                            "slug_bg": "starlight",
                                            "slug_en": "starlight"
                                        },
                                        "entrance": {
                                            "id": 11,
                                            "slug_bg": "b",
                                            "slug_en": "b"
                                        },
                                        "floor": {
                                            "id": 11,
                                            "slug_bg": "1",
                                            "slug_en": "1"
                                        }
                                    },
                                    {
                                        "id": 196,
                                        "coords": "",
                                        "degrees": null,
                                        "status": 1,
                                        "floor_for_filters": null,
                                        "rooms": 1,
                                        "total_area": "121.26",
                                        "living_area": "0",
                                        "price": 100000,
                                        "price_m2": 825,
                                        "image": null,
                                        "image2": null,
                                        "mezonet": 0,
                                        "panorama": 0,
                                        "pdf": null,
                                        "gallery": null,
                                        "title_bg": "Апартамент 6",
                                        "text_bg": "",
                                        "details_bg": null,
                                        "slug_bg": "apartament-6",
                                        "seo_title_bg": "Апартамент 6 | Меркурий 99",
                                        "seo_description_bg": null,
                                        "seo_keywords_bg": null,
                                        "hide_sitemap_bg": 0,
                                        "title_en": "Apartment 6",
                                        "text_en": "",
                                        "details_en": null,
                                        "slug_en": "apartment-6",
                                        "seo_title_en": "Apartment 6 | Mercury 99",
                                        "seo_description_en": null,
                                        "seo_keywords_en": null,
                                        "hide_sitemap_en": 0,
                                        "building": {
                                            "id": 1,
                                            "slug_bg": "starlight",
                                            "slug_en": "starlight"
                                        },
                                        "entrance": {
                                            "id": 11,
                                            "slug_bg": "b",
                                            "slug_en": "b"
                                        },
                                        "floor": {
                                            "id": 11,
                                            "slug_bg": "1",
                                            "slug_en": "1"
                                        }
                                    }
                                ],
                                "links": {
                                    "self": "link-value"
                                }
                            }
                        },
                        {
                            "id": 46,
                            "image": null,
                            "coords": "325, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                            "degrees": 6,
                            "title_bg": "2",
                            "slug_bg": "2",
                            "seo_title_bg": "2 | Меркурий 99",
                            "seo_description_bg": null,
                            "seo_keywords_bg": null,
                            "hide_sitemap_bg": 0,
                            "title_en": "2",
                            "slug_en": "2",
                            "seo_title_en": "2 | Mercury 99",
                            "seo_description_en": null,
                            "seo_keywords_en": null,
                            "hide_sitemap_en": 0,
                            "building": {
                                "id": 1,
                                "slug_bg": "starlight",
                                "slug_en": "starlight"
                            },
                            "entrance": {
                                "id": 11,
                                "slug_bg": "b",
                                "slug_en": "b"
                            },
                            "apartments": {
                                "data": [
                                    {
                                        "id": 197,
                                        "coords": "",
                                        "degrees": null,
                                        "status": 3,
                                        "floor_for_filters": null,
                                        "rooms": 2,
                                        "total_area": "158.17",
                                        "living_area": "0",
                                        "price": 141000,
                                        "price_m2": 891,
                                        "image": null,
                                        "image2": null,
                                        "mezonet": 1,
                                        "panorama": 0,
                                        "pdf": null,
                                        "gallery": null,
                                        "title_bg": "Апартамент 7",
                                        "text_bg": "",
                                        "details_bg": null,
                                        "slug_bg": "apartament-7",
                                        "seo_title_bg": "Апартамент 7 | Меркурий 99",
                                        "seo_description_bg": null,
                                        "seo_keywords_bg": null,
                                        "hide_sitemap_bg": 0,
                                        "title_en": "Apartment 7",
                                        "text_en": "",
                                        "details_en": null,
                                        "slug_en": "apartment-7",
                                        "seo_title_en": "Apartment 7 | Mercury 99",
                                        "seo_description_en": null,
                                        "seo_keywords_en": null,
                                        "hide_sitemap_en": 0,
                                        "building": {
                                            "id": 1,
                                            "slug_bg": "starlight",
                                            "slug_en": "starlight"
                                        },
                                        "entrance": {
                                            "id": 11,
                                            "slug_bg": "b",
                                            "slug_en": "b"
                                        },
                                        "floor": {
                                            "id": 11,
                                            "slug_bg": "2",
                                            "slug_en": "2"
                                        }
                                    }
                                ],
                                "links": {
                                    "self": "link-value"
                                }
                            }
                        }
                    ],
                    "links": {
                        "self": "link-value"
                    }
                },
                "apartments": {
                    "data": [
                        {
                            "id": 1,
                            "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                            "degrees": null,
                            "status": 1,
                            "floor_for_filters": null,
                            "rooms": 2,
                            "total_area": "68.75",
                            "living_area": "0",
                            "price": 100000,
                            "price_m2": 1455,
                            "image": null,
                            "image2": null,
                            "mezonet": 0,
                            "panorama": 0,
                            "pdf": null,
                            "gallery": null,
                            "title_bg": "Апартамент 1",
                            "text_bg": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                            "details_bg": null,
                            "slug_bg": "apartament-1",
                            "seo_title_bg": "Апартамент 1 | Меркурий 99",
                            "seo_description_bg": null,
                            "seo_keywords_bg": null,
                            "hide_sitemap_bg": 0,
                            "title_en": "Apartment 1",
                            "text_en": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                            "details_en": null,
                            "slug_en": "apartment-1",
                            "seo_title_en": "Apartment 1 | Mercury 99",
                            "seo_description_en": null,
                            "seo_keywords_en": null,
                            "hide_sitemap_en": 0,
                            "building": {
                                "id": 1,
                                "slug_bg": "starlight",
                                "slug_en": "starlight"
                            },
                            "entrance": {
                                "id": 1,
                                "slug_bg": "a",
                                "slug_en": "a"
                            },
                            "floor": {
                                "id": 1,
                                "slug_bg": "1",
                                "slug_en": "1"
                            }
                        },
                        {
                            "id": 192,
                            "coords": "",
                            "degrees": null,
                            "status": 1,
                            "floor_for_filters": null,
                            "rooms": 3,
                            "total_area": "121.26",
                            "living_area": "0",
                            "price": 136000,
                            "price_m2": 1122,
                            "image": null,
                            "image2": null,
                            "mezonet": 0,
                            "panorama": 0,
                            "pdf": null,
                            "gallery": null,
                            "title_bg": "Апартамент 2",
                            "text_bg": "",
                            "details_bg": null,
                            "slug_bg": "apartament-2",
                            "seo_title_bg": "Апартамент 2 | Меркурий 99",
                            "seo_description_bg": null,
                            "seo_keywords_bg": null,
                            "hide_sitemap_bg": 0,
                            "title_en": "Apartment 2",
                            "text_en": "",
                            "details_en": null,
                            "slug_en": "apartment-2",
                            "seo_title_en": "Apartment 2 | Mercury 99",
                            "seo_description_en": null,
                            "seo_keywords_en": null,
                            "hide_sitemap_en": 0,
                            "building": {
                                "id": 1,
                                "slug_bg": "starlight",
                                "slug_en": "starlight"
                            },
                            "entrance": {
                                "id": 1,
                                "slug_bg": "a",
                                "slug_en": "a"
                            },
                            "floor": {
                                "id": 1,
                                "slug_bg": "1",
                                "slug_en": "1"
                            }
                        },
                        {
                            "id": 193,
                            "coords": "",
                            "degrees": null,
                            "status": 2,
                            "floor_for_filters": null,
                            "rooms": 1,
                            "total_area": "80.65",
                            "living_area": "0",
                            "price": 136000,
                            "price_m2": 1686,
                            "image": null,
                            "image2": null,
                            "mezonet": 0,
                            "panorama": 0,
                            "pdf": null,
                            "gallery": null,
                            "title_bg": "Апартамент 4",
                            "text_bg": "",
                            "details_bg": null,
                            "slug_bg": "apartament-4",
                            "seo_title_bg": "Апартамент 4 | Меркурий 99",
                            "seo_description_bg": null,
                            "seo_keywords_bg": null,
                            "hide_sitemap_bg": 0,
                            "title_en": "Apartment 4",
                            "text_en": "",
                            "details_en": null,
                            "slug_en": "apartment-4",
                            "seo_title_en": "Apartment 4 | Mercury 99",
                            "seo_description_en": null,
                            "seo_keywords_en": null,
                            "hide_sitemap_en": 0,
                            "building": {
                                "id": 1,
                                "slug_bg": "starlight",
                                "slug_en": "starlight"
                            },
                            "entrance": {
                                "id": 1,
                                "slug_bg": "a",
                                "slug_en": "a"
                            },
                            "floor": {
                                "id": 1,
                                "slug_bg": "2",
                                "slug_en": "2"
                            }
                        },
                        {
                            "id": 194,
                            "coords": "",
                            "degrees": null,
                            "status": 1,
                            "floor_for_filters": null,
                            "rooms": 1,
                            "total_area": "80.65",
                            "living_area": "0",
                            "price": 122500,
                            "price_m2": 1519,
                            "image": null,
                            "image2": null,
                            "mezonet": 0,
                            "panorama": 0,
                            "pdf": null,
                            "gallery": null,
                            "title_bg": "Апартамент 3",
                            "text_bg": "",
                            "details_bg": null,
                            "slug_bg": "apartament-3",
                            "seo_title_bg": "Апартамент 3 | Меркурий 99",
                            "seo_description_bg": null,
                            "seo_keywords_bg": null,
                            "hide_sitemap_bg": 0,
                            "title_en": "Apartment 3",
                            "text_en": "",
                            "details_en": null,
                            "slug_en": "apartment-3",
                            "seo_title_en": "Apartment 3 | Mercury 99",
                            "seo_description_en": null,
                            "seo_keywords_en": null,
                            "hide_sitemap_en": 0,
                            "building": {
                                "id": 1,
                                "slug_bg": "starlight",
                                "slug_en": "starlight"
                            },
                            "entrance": {
                                "id": 1,
                                "slug_bg": "a",
                                "slug_en": "a"
                            },
                            "floor": {
                                "id": 1,
                                "slug_bg": "2",
                                "slug_en": "2"
                            }
                        },
                        {
                            "id": 195,
                            "coords": "",
                            "degrees": null,
                            "status": 1,
                            "floor_for_filters": null,
                            "rooms": 3,
                            "total_area": "150.86",
                            "living_area": "0",
                            "price": 141000,
                            "price_m2": 935,
                            "image": null,
                            "image2": null,
                            "mezonet": 0,
                            "panorama": 0,
                            "pdf": null,
                            "gallery": null,
                            "title_bg": "Апартамент 5",
                            "text_bg": "",
                            "details_bg": null,
                            "slug_bg": "apartament-5",
                            "seo_title_bg": "Апартамент 5 | Меркурий 99",
                            "seo_description_bg": null,
                            "seo_keywords_bg": null,
                            "hide_sitemap_bg": 0,
                            "title_en": "Apartment 5",
                            "text_en": "",
                            "details_en": null,
                            "slug_en": "apartment-5",
                            "seo_title_en": "Apartment 5 | Mercury 99",
                            "seo_description_en": null,
                            "seo_keywords_en": null,
                            "hide_sitemap_en": 0,
                            "building": {
                                "id": 1,
                                "slug_bg": "starlight",
                                "slug_en": "starlight"
                            },
                            "entrance": {
                                "id": 11,
                                "slug_bg": "b",
                                "slug_en": "b"
                            },
                            "floor": {
                                "id": 11,
                                "slug_bg": "1",
                                "slug_en": "1"
                            }
                        },
                        {
                            "id": 196,
                            "coords": "",
                            "degrees": null,
                            "status": 1,
                            "floor_for_filters": null,
                            "rooms": 1,
                            "total_area": "121.26",
                            "living_area": "0",
                            "price": 100000,
                            "price_m2": 825,
                            "image": null,
                            "image2": null,
                            "mezonet": 0,
                            "panorama": 0,
                            "pdf": null,
                            "gallery": null,
                            "title_bg": "Апартамент 6",
                            "text_bg": "",
                            "details_bg": null,
                            "slug_bg": "apartament-6",
                            "seo_title_bg": "Апартамент 6 | Меркурий 99",
                            "seo_description_bg": null,
                            "seo_keywords_bg": null,
                            "hide_sitemap_bg": 0,
                            "title_en": "Apartment 6",
                            "text_en": "",
                            "details_en": null,
                            "slug_en": "apartment-6",
                            "seo_title_en": "Apartment 6 | Mercury 99",
                            "seo_description_en": null,
                            "seo_keywords_en": null,
                            "hide_sitemap_en": 0,
                            "building": {
                                "id": 1,
                                "slug_bg": "starlight",
                                "slug_en": "starlight"
                            },
                            "entrance": {
                                "id": 11,
                                "slug_bg": "b",
                                "slug_en": "b"
                            },
                            "floor": {
                                "id": 11,
                                "slug_bg": "1",
                                "slug_en": "1"
                            }
                        },
                        {
                            "id": 197,
                            "coords": "",
                            "degrees": null,
                            "status": 3,
                            "floor_for_filters": null,
                            "rooms": 2,
                            "total_area": "158.17",
                            "living_area": "0",
                            "price": 141000,
                            "price_m2": 891,
                            "image": null,
                            "image2": null,
                            "mezonet": 1,
                            "panorama": 0,
                            "pdf": null,
                            "gallery": null,
                            "title_bg": "Апартамент 7",
                            "text_bg": "",
                            "details_bg": null,
                            "slug_bg": "apartament-7",
                            "seo_title_bg": "Апартамент 7 | Меркурий 99",
                            "seo_description_bg": null,
                            "seo_keywords_bg": null,
                            "hide_sitemap_bg": 0,
                            "title_en": "Apartment 7",
                            "text_en": "",
                            "details_en": null,
                            "slug_en": "apartment-7",
                            "seo_title_en": "Apartment 7 | Mercury 99",
                            "seo_description_en": null,
                            "seo_keywords_en": null,
                            "hide_sitemap_en": 0,
                            "building": {
                                "id": 1,
                                "slug_bg": "starlight",
                                "slug_en": "starlight"
                            },
                            "entrance": {
                                "id": 11,
                                "slug_bg": "b",
                                "slug_en": "b"
                            },
                            "floor": {
                                "id": 11,
                                "slug_bg": "2",
                                "slug_en": "2"
                            }
                        }
                    ],
                    "links": {
                        "self": "link-value"
                    }
                }
            },
            "apartments": {
                "data": [
                    {
                        "id": 194,
                        "coords": "",
                        "degrees": null,
                        "status": 1,
                        "floor_for_filters": null,
                        "rooms": 1,
                        "total_area": "80.65",
                        "living_area": "0",
                        "price": 122500,
                        "price_m2": 1519,
                        "image": null,
                        "image2": null,
                        "mezonet": 0,
                        "panorama": 0,
                        "pdf": null,
                        "gallery": null,
                        "title_bg": "Апартамент 3",
                        "text_bg": "",
                        "details_bg": null,
                        "slug_bg": "apartament-3",
                        "seo_title_bg": "Апартамент 3 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "Apartment 3",
                        "text_en": "",
                        "details_en": null,
                        "slug_en": "apartment-3",
                        "seo_title_en": "Apartment 3 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 1,
                            "slug_bg": "a",
                            "slug_en": "a"
                        },
                        "floor": {
                            "id": 1,
                            "slug_bg": "2",
                            "slug_en": "2"
                        }
                    },
                    {
                        "id": 193,
                        "coords": "",
                        "degrees": null,
                        "status": 2,
                        "floor_for_filters": null,
                        "rooms": 1,
                        "total_area": "80.65",
                        "living_area": "0",
                        "price": 136000,
                        "price_m2": 1686,
                        "image": null,
                        "image2": null,
                        "mezonet": 0,
                        "panorama": 0,
                        "pdf": null,
                        "gallery": null,
                        "title_bg": "Апартамент 4",
                        "text_bg": "",
                        "details_bg": null,
                        "slug_bg": "apartament-4",
                        "seo_title_bg": "Апартамент 4 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "Apartment 4",
                        "text_en": "",
                        "details_en": null,
                        "slug_en": "apartment-4",
                        "seo_title_en": "Apartment 4 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 1,
                            "slug_bg": "a",
                            "slug_en": "a"
                        },
                        "floor": {
                            "id": 1,
                            "slug_bg": "2",
                            "slug_en": "2"
                        }
                    }
                ],
                "links": {
                    "self": "link-value"
                }
            }
        },
        "building": {
            "id": 1,
            "image": "http:\/\/localhost\/uploads\/images\/big\/17_build-starlight.jpg",
            "thumb": null,
            "pdf": null,
            "map": "http:\/\/localhost\/uploads\/images\/big\/16_map.jpg",
            "status": 1,
            "google_map": "https:\/\/www.google.com\/maps\/embed?pb=!1m17!1m8!1m3!1d11723.450867031348!2d23.304417599999997!3d42.72779635!3m2!1i1024!2i768!4f13.1!4m6!3e0!4m3!3m2!1d42.7293567!2d23.2992676!4m0!5e0!3m2!1sbg!2sbg!4v1539100876083",
            "use_svg": 0,
            "gallery": null,
            "title_bg": "Старлайт Тестова",
            "annonce_bg": "Lorem Ipsum е елементарен примерен текст, използван в печатарската и типографската индустрия.",
            "text_bg": "<p>A collection of textile samples lay spread out on the table - Samsa was a travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer. Gregor then turned to look out the window at the dull weather.&nbsp;A collection of textile samples lay spread out on the table - Samsa was a travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer. Gregor then turned to look out the window at the dull weather. &nbsp;<\/p>\r\n\r\n<p>A collection of textile samples lay spread out on the table - Samsa was a travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer. Gregor then turned to look out the window at the dull weather.<\/p>",
            "slug_bg": "starlight",
            "seo_title_bg": "Старлайт Тестова | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "Starlight Testing",
            "annonce_en": "Gregor then turned to look out the window at the dull weather.",
            "text_en": "<p>A collection of textile samples lay spread out on the table - Samsa was a travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer. Gregor then turned to look out the window at the dull weather.&nbsp;A collection of textile samples lay spread out on the table - Samsa was a travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer. Gregor then turned to look out the window at the dull weather. &nbsp;<\/p>\r\n\r\n<p>A collection of textile samples lay spread out on the table - Samsa was a travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer. Gregor then turned to look out the window at the dull weather.<\/p>",
            "slug_en": "starlight",
            "seo_title_en": "Starlight Testing | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0,
            "prev_building": null,
            "next_building": null,
            "entrances": {
                "data": [
                    {
                        "id": 1,
                        "image": null,
                        "coords": "coords",
                        "title_bg": "A",
                        "slug_bg": "a",
                        "seo_title_bg": "A | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "A",
                        "slug_en": "a",
                        "seo_title_en": "A | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "floors": {
                            "data": [
                                {
                                    "id": 1,
                                    "image": "http:\/\/localhost\/uploads\/images\/big\/57_floor1.png",
                                    "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                                    "degrees": 6,
                                    "title_bg": "1",
                                    "slug_bg": "1",
                                    "seo_title_bg": "1 | Меркурий 99",
                                    "seo_description_bg": null,
                                    "seo_keywords_bg": null,
                                    "hide_sitemap_bg": 0,
                                    "title_en": "1",
                                    "slug_en": "1",
                                    "seo_title_en": "1 | Mercury 99",
                                    "seo_description_en": null,
                                    "seo_keywords_en": null,
                                    "hide_sitemap_en": 0,
                                    "building": {
                                        "id": 1,
                                        "slug_bg": "starlight",
                                        "slug_en": "starlight"
                                    },
                                    "entrance": {
                                        "id": 1,
                                        "slug_bg": "a",
                                        "slug_en": "a"
                                    },
                                    "apartments": {
                                        "data": [
                                            {
                                                "id": 1,
                                                "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                                                "degrees": null,
                                                "status": 1,
                                                "floor_for_filters": null,
                                                "rooms": 2,
                                                "total_area": "68.75",
                                                "living_area": "0",
                                                "price": 100000,
                                                "price_m2": 1455,
                                                "image": null,
                                                "image2": null,
                                                "mezonet": 0,
                                                "panorama": 0,
                                                "pdf": null,
                                                "gallery": null,
                                                "title_bg": "Апартамент 1",
                                                "text_bg": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                                                "details_bg": null,
                                                "slug_bg": "apartament-1",
                                                "seo_title_bg": "Апартамент 1 | Меркурий 99",
                                                "seo_description_bg": null,
                                                "seo_keywords_bg": null,
                                                "hide_sitemap_bg": 0,
                                                "title_en": "Apartment 1",
                                                "text_en": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                                                "details_en": null,
                                                "slug_en": "apartment-1",
                                                "seo_title_en": "Apartment 1 | Mercury 99",
                                                "seo_description_en": null,
                                                "seo_keywords_en": null,
                                                "hide_sitemap_en": 0,
                                                "building": {
                                                    "id": 1,
                                                    "slug_bg": "starlight",
                                                    "slug_en": "starlight"
                                                },
                                                "entrance": {
                                                    "id": 1,
                                                    "slug_bg": "a",
                                                    "slug_en": "a"
                                                },
                                                "floor": {
                                                    "id": 1,
                                                    "slug_bg": "1",
                                                    "slug_en": "1"
                                                }
                                            },
                                            {
                                                "id": 192,
                                                "coords": "",
                                                "degrees": null,
                                                "status": 1,
                                                "floor_for_filters": null,
                                                "rooms": 3,
                                                "total_area": "121.26",
                                                "living_area": "0",
                                                "price": 136000,
                                                "price_m2": 1122,
                                                "image": null,
                                                "image2": null,
                                                "mezonet": 0,
                                                "panorama": 0,
                                                "pdf": null,
                                                "gallery": null,
                                                "title_bg": "Апартамент 2",
                                                "text_bg": "",
                                                "details_bg": null,
                                                "slug_bg": "apartament-2",
                                                "seo_title_bg": "Апартамент 2 | Меркурий 99",
                                                "seo_description_bg": null,
                                                "seo_keywords_bg": null,
                                                "hide_sitemap_bg": 0,
                                                "title_en": "Apartment 2",
                                                "text_en": "",
                                                "details_en": null,
                                                "slug_en": "apartment-2",
                                                "seo_title_en": "Apartment 2 | Mercury 99",
                                                "seo_description_en": null,
                                                "seo_keywords_en": null,
                                                "hide_sitemap_en": 0,
                                                "building": {
                                                    "id": 1,
                                                    "slug_bg": "starlight",
                                                    "slug_en": "starlight"
                                                },
                                                "entrance": {
                                                    "id": 1,
                                                    "slug_bg": "a",
                                                    "slug_en": "a"
                                                },
                                                "floor": {
                                                    "id": 1,
                                                    "slug_bg": "1",
                                                    "slug_en": "1"
                                                }
                                            }
                                        ],
                                        "links": {
                                            "self": "link-value"
                                        }
                                    }
                                },
                                {
                                    "id": 44,
                                    "image": null,
                                    "coords": "125, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                                    "degrees": 6,
                                    "title_bg": "2",
                                    "slug_bg": "2",
                                    "seo_title_bg": "2 | Меркурий 99",
                                    "seo_description_bg": null,
                                    "seo_keywords_bg": null,
                                    "hide_sitemap_bg": 0,
                                    "title_en": "2",
                                    "slug_en": "2",
                                    "seo_title_en": "2 | Mercury 99",
                                    "seo_description_en": null,
                                    "seo_keywords_en": null,
                                    "hide_sitemap_en": 0,
                                    "building": {
                                        "id": 1,
                                        "slug_bg": "starlight",
                                        "slug_en": "starlight"
                                    },
                                    "entrance": {
                                        "id": 1,
                                        "slug_bg": "a",
                                        "slug_en": "a"
                                    },
                                    "apartments": {
                                        "data": [
                                            {
                                                "id": 193,
                                                "coords": "",
                                                "degrees": null,
                                                "status": 2,
                                                "floor_for_filters": null,
                                                "rooms": 1,
                                                "total_area": "80.65",
                                                "living_area": "0",
                                                "price": 136000,
                                                "price_m2": 1686,
                                                "image": null,
                                                "image2": null,
                                                "mezonet": 0,
                                                "panorama": 0,
                                                "pdf": null,
                                                "gallery": null,
                                                "title_bg": "Апартамент 4",
                                                "text_bg": "",
                                                "details_bg": null,
                                                "slug_bg": "apartament-4",
                                                "seo_title_bg": "Апартамент 4 | Меркурий 99",
                                                "seo_description_bg": null,
                                                "seo_keywords_bg": null,
                                                "hide_sitemap_bg": 0,
                                                "title_en": "Apartment 4",
                                                "text_en": "",
                                                "details_en": null,
                                                "slug_en": "apartment-4",
                                                "seo_title_en": "Apartment 4 | Mercury 99",
                                                "seo_description_en": null,
                                                "seo_keywords_en": null,
                                                "hide_sitemap_en": 0,
                                                "building": {
                                                    "id": 1,
                                                    "slug_bg": "starlight",
                                                    "slug_en": "starlight"
                                                },
                                                "entrance": {
                                                    "id": 1,
                                                    "slug_bg": "a",
                                                    "slug_en": "a"
                                                },
                                                "floor": {
                                                    "id": 1,
                                                    "slug_bg": "2",
                                                    "slug_en": "2"
                                                }
                                            },
                                            {
                                                "id": 194,
                                                "coords": "",
                                                "degrees": null,
                                                "status": 1,
                                                "floor_for_filters": null,
                                                "rooms": 1,
                                                "total_area": "80.65",
                                                "living_area": "0",
                                                "price": 122500,
                                                "price_m2": 1519,
                                                "image": null,
                                                "image2": null,
                                                "mezonet": 0,
                                                "panorama": 0,
                                                "pdf": null,
                                                "gallery": null,
                                                "title_bg": "Апартамент 3",
                                                "text_bg": "",
                                                "details_bg": null,
                                                "slug_bg": "apartament-3",
                                                "seo_title_bg": "Апартамент 3 | Меркурий 99",
                                                "seo_description_bg": null,
                                                "seo_keywords_bg": null,
                                                "hide_sitemap_bg": 0,
                                                "title_en": "Apartment 3",
                                                "text_en": "",
                                                "details_en": null,
                                                "slug_en": "apartment-3",
                                                "seo_title_en": "Apartment 3 | Mercury 99",
                                                "seo_description_en": null,
                                                "seo_keywords_en": null,
                                                "hide_sitemap_en": 0,
                                                "building": {
                                                    "id": 1,
                                                    "slug_bg": "starlight",
                                                    "slug_en": "starlight"
                                                },
                                                "entrance": {
                                                    "id": 1,
                                                    "slug_bg": "a",
                                                    "slug_en": "a"
                                                },
                                                "floor": {
                                                    "id": 1,
                                                    "slug_bg": "2",
                                                    "slug_en": "2"
                                                }
                                            }
                                        ],
                                        "links": {
                                            "self": "link-value"
                                        }
                                    }
                                }
                            ],
                            "links": {
                                "self": "link-value"
                            }
                        }
                    },
                    {
                        "id": 11,
                        "image": null,
                        "coords": "coords",
                        "title_bg": "Б",
                        "slug_bg": "b",
                        "seo_title_bg": "Б | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "B",
                        "slug_en": "b",
                        "seo_title_en": "B | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "floors": {
                            "data": [
                                {
                                    "id": 45,
                                    "image": null,
                                    "coords": "225, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                                    "degrees": 6,
                                    "title_bg": "1",
                                    "slug_bg": "1",
                                    "seo_title_bg": "1 | Меркурий 99",
                                    "seo_description_bg": null,
                                    "seo_keywords_bg": null,
                                    "hide_sitemap_bg": 0,
                                    "title_en": "1",
                                    "slug_en": "1",
                                    "seo_title_en": "1 | Mercury 99",
                                    "seo_description_en": null,
                                    "seo_keywords_en": null,
                                    "hide_sitemap_en": 0,
                                    "building": {
                                        "id": 1,
                                        "slug_bg": "starlight",
                                        "slug_en": "starlight"
                                    },
                                    "entrance": {
                                        "id": 11,
                                        "slug_bg": "b",
                                        "slug_en": "b"
                                    },
                                    "apartments": {
                                        "data": [
                                            {
                                                "id": 195,
                                                "coords": "",
                                                "degrees": null,
                                                "status": 1,
                                                "floor_for_filters": null,
                                                "rooms": 3,
                                                "total_area": "150.86",
                                                "living_area": "0",
                                                "price": 141000,
                                                "price_m2": 935,
                                                "image": null,
                                                "image2": null,
                                                "mezonet": 0,
                                                "panorama": 0,
                                                "pdf": null,
                                                "gallery": null,
                                                "title_bg": "Апартамент 5",
                                                "text_bg": "",
                                                "details_bg": null,
                                                "slug_bg": "apartament-5",
                                                "seo_title_bg": "Апартамент 5 | Меркурий 99",
                                                "seo_description_bg": null,
                                                "seo_keywords_bg": null,
                                                "hide_sitemap_bg": 0,
                                                "title_en": "Apartment 5",
                                                "text_en": "",
                                                "details_en": null,
                                                "slug_en": "apartment-5",
                                                "seo_title_en": "Apartment 5 | Mercury 99",
                                                "seo_description_en": null,
                                                "seo_keywords_en": null,
                                                "hide_sitemap_en": 0,
                                                "building": {
                                                    "id": 1,
                                                    "slug_bg": "starlight",
                                                    "slug_en": "starlight"
                                                },
                                                "entrance": {
                                                    "id": 11,
                                                    "slug_bg": "b",
                                                    "slug_en": "b"
                                                },
                                                "floor": {
                                                    "id": 11,
                                                    "slug_bg": "1",
                                                    "slug_en": "1"
                                                }
                                            },
                                            {
                                                "id": 196,
                                                "coords": "",
                                                "degrees": null,
                                                "status": 1,
                                                "floor_for_filters": null,
                                                "rooms": 1,
                                                "total_area": "121.26",
                                                "living_area": "0",
                                                "price": 100000,
                                                "price_m2": 825,
                                                "image": null,
                                                "image2": null,
                                                "mezonet": 0,
                                                "panorama": 0,
                                                "pdf": null,
                                                "gallery": null,
                                                "title_bg": "Апартамент 6",
                                                "text_bg": "",
                                                "details_bg": null,
                                                "slug_bg": "apartament-6",
                                                "seo_title_bg": "Апартамент 6 | Меркурий 99",
                                                "seo_description_bg": null,
                                                "seo_keywords_bg": null,
                                                "hide_sitemap_bg": 0,
                                                "title_en": "Apartment 6",
                                                "text_en": "",
                                                "details_en": null,
                                                "slug_en": "apartment-6",
                                                "seo_title_en": "Apartment 6 | Mercury 99",
                                                "seo_description_en": null,
                                                "seo_keywords_en": null,
                                                "hide_sitemap_en": 0,
                                                "building": {
                                                    "id": 1,
                                                    "slug_bg": "starlight",
                                                    "slug_en": "starlight"
                                                },
                                                "entrance": {
                                                    "id": 11,
                                                    "slug_bg": "b",
                                                    "slug_en": "b"
                                                },
                                                "floor": {
                                                    "id": 11,
                                                    "slug_bg": "1",
                                                    "slug_en": "1"
                                                }
                                            }
                                        ],
                                        "links": {
                                            "self": "link-value"
                                        }
                                    }
                                },
                                {
                                    "id": 46,
                                    "image": null,
                                    "coords": "325, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                                    "degrees": 6,
                                    "title_bg": "2",
                                    "slug_bg": "2",
                                    "seo_title_bg": "2 | Меркурий 99",
                                    "seo_description_bg": null,
                                    "seo_keywords_bg": null,
                                    "hide_sitemap_bg": 0,
                                    "title_en": "2",
                                    "slug_en": "2",
                                    "seo_title_en": "2 | Mercury 99",
                                    "seo_description_en": null,
                                    "seo_keywords_en": null,
                                    "hide_sitemap_en": 0,
                                    "building": {
                                        "id": 1,
                                        "slug_bg": "starlight",
                                        "slug_en": "starlight"
                                    },
                                    "entrance": {
                                        "id": 11,
                                        "slug_bg": "b",
                                        "slug_en": "b"
                                    },
                                    "apartments": {
                                        "data": [
                                            {
                                                "id": 197,
                                                "coords": "",
                                                "degrees": null,
                                                "status": 3,
                                                "floor_for_filters": null,
                                                "rooms": 2,
                                                "total_area": "158.17",
                                                "living_area": "0",
                                                "price": 141000,
                                                "price_m2": 891,
                                                "image": null,
                                                "image2": null,
                                                "mezonet": 1,
                                                "panorama": 0,
                                                "pdf": null,
                                                "gallery": null,
                                                "title_bg": "Апартамент 7",
                                                "text_bg": "",
                                                "details_bg": null,
                                                "slug_bg": "apartament-7",
                                                "seo_title_bg": "Апартамент 7 | Меркурий 99",
                                                "seo_description_bg": null,
                                                "seo_keywords_bg": null,
                                                "hide_sitemap_bg": 0,
                                                "title_en": "Apartment 7",
                                                "text_en": "",
                                                "details_en": null,
                                                "slug_en": "apartment-7",
                                                "seo_title_en": "Apartment 7 | Mercury 99",
                                                "seo_description_en": null,
                                                "seo_keywords_en": null,
                                                "hide_sitemap_en": 0,
                                                "building": {
                                                    "id": 1,
                                                    "slug_bg": "starlight",
                                                    "slug_en": "starlight"
                                                },
                                                "entrance": {
                                                    "id": 11,
                                                    "slug_bg": "b",
                                                    "slug_en": "b"
                                                },
                                                "floor": {
                                                    "id": 11,
                                                    "slug_bg": "2",
                                                    "slug_en": "2"
                                                }
                                            }
                                        ],
                                        "links": {
                                            "self": "link-value"
                                        }
                                    }
                                }
                            ],
                            "links": {
                                "self": "link-value"
                            }
                        }
                    }
                ],
                "links": {
                    "self": "link-value"
                }
            },
            "floors": {
                "data": [
                    {
                        "id": 1,
                        "image": "http:\/\/localhost\/uploads\/images\/big\/57_floor1.png",
                        "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                        "degrees": 6,
                        "title_bg": "1",
                        "slug_bg": "1",
                        "seo_title_bg": "1 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "1",
                        "slug_en": "1",
                        "seo_title_en": "1 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 1,
                            "slug_bg": "a",
                            "slug_en": "a"
                        },
                        "apartments": {
                            "data": [
                                {
                                    "id": 1,
                                    "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                                    "degrees": null,
                                    "status": 1,
                                    "floor_for_filters": null,
                                    "rooms": 2,
                                    "total_area": "68.75",
                                    "living_area": "0",
                                    "price": 100000,
                                    "price_m2": 1455,
                                    "image": null,
                                    "image2": null,
                                    "mezonet": 0,
                                    "panorama": 0,
                                    "pdf": null,
                                    "gallery": null,
                                    "title_bg": "Апартамент 1",
                                    "text_bg": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                                    "details_bg": null,
                                    "slug_bg": "apartament-1",
                                    "seo_title_bg": "Апартамент 1 | Меркурий 99",
                                    "seo_description_bg": null,
                                    "seo_keywords_bg": null,
                                    "hide_sitemap_bg": 0,
                                    "title_en": "Apartment 1",
                                    "text_en": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                                    "details_en": null,
                                    "slug_en": "apartment-1",
                                    "seo_title_en": "Apartment 1 | Mercury 99",
                                    "seo_description_en": null,
                                    "seo_keywords_en": null,
                                    "hide_sitemap_en": 0,
                                    "building": {
                                        "id": 1,
                                        "slug_bg": "starlight",
                                        "slug_en": "starlight"
                                    },
                                    "entrance": {
                                        "id": 1,
                                        "slug_bg": "a",
                                        "slug_en": "a"
                                    },
                                    "floor": {
                                        "id": 1,
                                        "slug_bg": "1",
                                        "slug_en": "1"
                                    }
                                },
                                {
                                    "id": 192,
                                    "coords": "",
                                    "degrees": null,
                                    "status": 1,
                                    "floor_for_filters": null,
                                    "rooms": 3,
                                    "total_area": "121.26",
                                    "living_area": "0",
                                    "price": 136000,
                                    "price_m2": 1122,
                                    "image": null,
                                    "image2": null,
                                    "mezonet": 0,
                                    "panorama": 0,
                                    "pdf": null,
                                    "gallery": null,
                                    "title_bg": "Апартамент 2",
                                    "text_bg": "",
                                    "details_bg": null,
                                    "slug_bg": "apartament-2",
                                    "seo_title_bg": "Апартамент 2 | Меркурий 99",
                                    "seo_description_bg": null,
                                    "seo_keywords_bg": null,
                                    "hide_sitemap_bg": 0,
                                    "title_en": "Apartment 2",
                                    "text_en": "",
                                    "details_en": null,
                                    "slug_en": "apartment-2",
                                    "seo_title_en": "Apartment 2 | Mercury 99",
                                    "seo_description_en": null,
                                    "seo_keywords_en": null,
                                    "hide_sitemap_en": 0,
                                    "building": {
                                        "id": 1,
                                        "slug_bg": "starlight",
                                        "slug_en": "starlight"
                                    },
                                    "entrance": {
                                        "id": 1,
                                        "slug_bg": "a",
                                        "slug_en": "a"
                                    },
                                    "floor": {
                                        "id": 1,
                                        "slug_bg": "1",
                                        "slug_en": "1"
                                    }
                                }
                            ],
                            "links": {
                                "self": "link-value"
                            }
                        }
                    },
                    {
                        "id": 44,
                        "image": null,
                        "coords": "125, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                        "degrees": 6,
                        "title_bg": "2",
                        "slug_bg": "2",
                        "seo_title_bg": "2 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "2",
                        "slug_en": "2",
                        "seo_title_en": "2 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 1,
                            "slug_bg": "a",
                            "slug_en": "a"
                        },
                        "apartments": {
                            "data": [
                                {
                                    "id": 193,
                                    "coords": "",
                                    "degrees": null,
                                    "status": 2,
                                    "floor_for_filters": null,
                                    "rooms": 1,
                                    "total_area": "80.65",
                                    "living_area": "0",
                                    "price": 136000,
                                    "price_m2": 1686,
                                    "image": null,
                                    "image2": null,
                                    "mezonet": 0,
                                    "panorama": 0,
                                    "pdf": null,
                                    "gallery": null,
                                    "title_bg": "Апартамент 4",
                                    "text_bg": "",
                                    "details_bg": null,
                                    "slug_bg": "apartament-4",
                                    "seo_title_bg": "Апартамент 4 | Меркурий 99",
                                    "seo_description_bg": null,
                                    "seo_keywords_bg": null,
                                    "hide_sitemap_bg": 0,
                                    "title_en": "Apartment 4",
                                    "text_en": "",
                                    "details_en": null,
                                    "slug_en": "apartment-4",
                                    "seo_title_en": "Apartment 4 | Mercury 99",
                                    "seo_description_en": null,
                                    "seo_keywords_en": null,
                                    "hide_sitemap_en": 0,
                                    "building": {
                                        "id": 1,
                                        "slug_bg": "starlight",
                                        "slug_en": "starlight"
                                    },
                                    "entrance": {
                                        "id": 1,
                                        "slug_bg": "a",
                                        "slug_en": "a"
                                    },
                                    "floor": {
                                        "id": 1,
                                        "slug_bg": "2",
                                        "slug_en": "2"
                                    }
                                },
                                {
                                    "id": 194,
                                    "coords": "",
                                    "degrees": null,
                                    "status": 1,
                                    "floor_for_filters": null,
                                    "rooms": 1,
                                    "total_area": "80.65",
                                    "living_area": "0",
                                    "price": 122500,
                                    "price_m2": 1519,
                                    "image": null,
                                    "image2": null,
                                    "mezonet": 0,
                                    "panorama": 0,
                                    "pdf": null,
                                    "gallery": null,
                                    "title_bg": "Апартамент 3",
                                    "text_bg": "",
                                    "details_bg": null,
                                    "slug_bg": "apartament-3",
                                    "seo_title_bg": "Апартамент 3 | Меркурий 99",
                                    "seo_description_bg": null,
                                    "seo_keywords_bg": null,
                                    "hide_sitemap_bg": 0,
                                    "title_en": "Apartment 3",
                                    "text_en": "",
                                    "details_en": null,
                                    "slug_en": "apartment-3",
                                    "seo_title_en": "Apartment 3 | Mercury 99",
                                    "seo_description_en": null,
                                    "seo_keywords_en": null,
                                    "hide_sitemap_en": 0,
                                    "building": {
                                        "id": 1,
                                        "slug_bg": "starlight",
                                        "slug_en": "starlight"
                                    },
                                    "entrance": {
                                        "id": 1,
                                        "slug_bg": "a",
                                        "slug_en": "a"
                                    },
                                    "floor": {
                                        "id": 1,
                                        "slug_bg": "2",
                                        "slug_en": "2"
                                    }
                                }
                            ],
                            "links": {
                                "self": "link-value"
                            }
                        }
                    },
                    {
                        "id": 45,
                        "image": null,
                        "coords": "225, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                        "degrees": 6,
                        "title_bg": "1",
                        "slug_bg": "1",
                        "seo_title_bg": "1 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "1",
                        "slug_en": "1",
                        "seo_title_en": "1 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 11,
                            "slug_bg": "b",
                            "slug_en": "b"
                        },
                        "apartments": {
                            "data": [
                                {
                                    "id": 195,
                                    "coords": "",
                                    "degrees": null,
                                    "status": 1,
                                    "floor_for_filters": null,
                                    "rooms": 3,
                                    "total_area": "150.86",
                                    "living_area": "0",
                                    "price": 141000,
                                    "price_m2": 935,
                                    "image": null,
                                    "image2": null,
                                    "mezonet": 0,
                                    "panorama": 0,
                                    "pdf": null,
                                    "gallery": null,
                                    "title_bg": "Апартамент 5",
                                    "text_bg": "",
                                    "details_bg": null,
                                    "slug_bg": "apartament-5",
                                    "seo_title_bg": "Апартамент 5 | Меркурий 99",
                                    "seo_description_bg": null,
                                    "seo_keywords_bg": null,
                                    "hide_sitemap_bg": 0,
                                    "title_en": "Apartment 5",
                                    "text_en": "",
                                    "details_en": null,
                                    "slug_en": "apartment-5",
                                    "seo_title_en": "Apartment 5 | Mercury 99",
                                    "seo_description_en": null,
                                    "seo_keywords_en": null,
                                    "hide_sitemap_en": 0,
                                    "building": {
                                        "id": 1,
                                        "slug_bg": "starlight",
                                        "slug_en": "starlight"
                                    },
                                    "entrance": {
                                        "id": 11,
                                        "slug_bg": "b",
                                        "slug_en": "b"
                                    },
                                    "floor": {
                                        "id": 11,
                                        "slug_bg": "1",
                                        "slug_en": "1"
                                    }
                                },
                                {
                                    "id": 196,
                                    "coords": "",
                                    "degrees": null,
                                    "status": 1,
                                    "floor_for_filters": null,
                                    "rooms": 1,
                                    "total_area": "121.26",
                                    "living_area": "0",
                                    "price": 100000,
                                    "price_m2": 825,
                                    "image": null,
                                    "image2": null,
                                    "mezonet": 0,
                                    "panorama": 0,
                                    "pdf": null,
                                    "gallery": null,
                                    "title_bg": "Апартамент 6",
                                    "text_bg": "",
                                    "details_bg": null,
                                    "slug_bg": "apartament-6",
                                    "seo_title_bg": "Апартамент 6 | Меркурий 99",
                                    "seo_description_bg": null,
                                    "seo_keywords_bg": null,
                                    "hide_sitemap_bg": 0,
                                    "title_en": "Apartment 6",
                                    "text_en": "",
                                    "details_en": null,
                                    "slug_en": "apartment-6",
                                    "seo_title_en": "Apartment 6 | Mercury 99",
                                    "seo_description_en": null,
                                    "seo_keywords_en": null,
                                    "hide_sitemap_en": 0,
                                    "building": {
                                        "id": 1,
                                        "slug_bg": "starlight",
                                        "slug_en": "starlight"
                                    },
                                    "entrance": {
                                        "id": 11,
                                        "slug_bg": "b",
                                        "slug_en": "b"
                                    },
                                    "floor": {
                                        "id": 11,
                                        "slug_bg": "1",
                                        "slug_en": "1"
                                    }
                                }
                            ],
                            "links": {
                                "self": "link-value"
                            }
                        }
                    },
                    {
                        "id": 46,
                        "image": null,
                        "coords": "325, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                        "degrees": 6,
                        "title_bg": "2",
                        "slug_bg": "2",
                        "seo_title_bg": "2 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "2",
                        "slug_en": "2",
                        "seo_title_en": "2 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 11,
                            "slug_bg": "b",
                            "slug_en": "b"
                        },
                        "apartments": {
                            "data": [
                                {
                                    "id": 197,
                                    "coords": "",
                                    "degrees": null,
                                    "status": 3,
                                    "floor_for_filters": null,
                                    "rooms": 2,
                                    "total_area": "158.17",
                                    "living_area": "0",
                                    "price": 141000,
                                    "price_m2": 891,
                                    "image": null,
                                    "image2": null,
                                    "mezonet": 1,
                                    "panorama": 0,
                                    "pdf": null,
                                    "gallery": null,
                                    "title_bg": "Апартамент 7",
                                    "text_bg": "",
                                    "details_bg": null,
                                    "slug_bg": "apartament-7",
                                    "seo_title_bg": "Апартамент 7 | Меркурий 99",
                                    "seo_description_bg": null,
                                    "seo_keywords_bg": null,
                                    "hide_sitemap_bg": 0,
                                    "title_en": "Apartment 7",
                                    "text_en": "",
                                    "details_en": null,
                                    "slug_en": "apartment-7",
                                    "seo_title_en": "Apartment 7 | Mercury 99",
                                    "seo_description_en": null,
                                    "seo_keywords_en": null,
                                    "hide_sitemap_en": 0,
                                    "building": {
                                        "id": 1,
                                        "slug_bg": "starlight",
                                        "slug_en": "starlight"
                                    },
                                    "entrance": {
                                        "id": 11,
                                        "slug_bg": "b",
                                        "slug_en": "b"
                                    },
                                    "floor": {
                                        "id": 11,
                                        "slug_bg": "2",
                                        "slug_en": "2"
                                    }
                                }
                            ],
                            "links": {
                                "self": "link-value"
                            }
                        }
                    }
                ],
                "links": {
                    "self": "link-value"
                }
            },
            "apartments": {
                "data": [
                    {
                        "id": 1,
                        "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                        "degrees": null,
                        "status": 1,
                        "floor_for_filters": null,
                        "rooms": 2,
                        "total_area": "68.75",
                        "living_area": "0",
                        "price": 100000,
                        "price_m2": 1455,
                        "image": null,
                        "image2": null,
                        "mezonet": 0,
                        "panorama": 0,
                        "pdf": null,
                        "gallery": null,
                        "title_bg": "Апартамент 1",
                        "text_bg": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                        "details_bg": null,
                        "slug_bg": "apartament-1",
                        "seo_title_bg": "Апартамент 1 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "Apartment 1",
                        "text_en": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                        "details_en": null,
                        "slug_en": "apartment-1",
                        "seo_title_en": "Apartment 1 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 1,
                            "slug_bg": "a",
                            "slug_en": "a"
                        },
                        "floor": {
                            "id": 1,
                            "slug_bg": "1",
                            "slug_en": "1"
                        }
                    },
                    {
                        "id": 192,
                        "coords": "",
                        "degrees": null,
                        "status": 1,
                        "floor_for_filters": null,
                        "rooms": 3,
                        "total_area": "121.26",
                        "living_area": "0",
                        "price": 136000,
                        "price_m2": 1122,
                        "image": null,
                        "image2": null,
                        "mezonet": 0,
                        "panorama": 0,
                        "pdf": null,
                        "gallery": null,
                        "title_bg": "Апартамент 2",
                        "text_bg": "",
                        "details_bg": null,
                        "slug_bg": "apartament-2",
                        "seo_title_bg": "Апартамент 2 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "Apartment 2",
                        "text_en": "",
                        "details_en": null,
                        "slug_en": "apartment-2",
                        "seo_title_en": "Apartment 2 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 1,
                            "slug_bg": "a",
                            "slug_en": "a"
                        },
                        "floor": {
                            "id": 1,
                            "slug_bg": "1",
                            "slug_en": "1"
                        }
                    },
                    {
                        "id": 193,
                        "coords": "",
                        "degrees": null,
                        "status": 2,
                        "floor_for_filters": null,
                        "rooms": 1,
                        "total_area": "80.65",
                        "living_area": "0",
                        "price": 136000,
                        "price_m2": 1686,
                        "image": null,
                        "image2": null,
                        "mezonet": 0,
                        "panorama": 0,
                        "pdf": null,
                        "gallery": null,
                        "title_bg": "Апартамент 4",
                        "text_bg": "",
                        "details_bg": null,
                        "slug_bg": "apartament-4",
                        "seo_title_bg": "Апартамент 4 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "Apartment 4",
                        "text_en": "",
                        "details_en": null,
                        "slug_en": "apartment-4",
                        "seo_title_en": "Apartment 4 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 1,
                            "slug_bg": "a",
                            "slug_en": "a"
                        },
                        "floor": {
                            "id": 1,
                            "slug_bg": "2",
                            "slug_en": "2"
                        }
                    },
                    {
                        "id": 194,
                        "coords": "",
                        "degrees": null,
                        "status": 1,
                        "floor_for_filters": null,
                        "rooms": 1,
                        "total_area": "80.65",
                        "living_area": "0",
                        "price": 122500,
                        "price_m2": 1519,
                        "image": null,
                        "image2": null,
                        "mezonet": 0,
                        "panorama": 0,
                        "pdf": null,
                        "gallery": null,
                        "title_bg": "Апартамент 3",
                        "text_bg": "",
                        "details_bg": null,
                        "slug_bg": "apartament-3",
                        "seo_title_bg": "Апартамент 3 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "Apartment 3",
                        "text_en": "",
                        "details_en": null,
                        "slug_en": "apartment-3",
                        "seo_title_en": "Apartment 3 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 1,
                            "slug_bg": "a",
                            "slug_en": "a"
                        },
                        "floor": {
                            "id": 1,
                            "slug_bg": "2",
                            "slug_en": "2"
                        }
                    },
                    {
                        "id": 195,
                        "coords": "",
                        "degrees": null,
                        "status": 1,
                        "floor_for_filters": null,
                        "rooms": 3,
                        "total_area": "150.86",
                        "living_area": "0",
                        "price": 141000,
                        "price_m2": 935,
                        "image": null,
                        "image2": null,
                        "mezonet": 0,
                        "panorama": 0,
                        "pdf": null,
                        "gallery": null,
                        "title_bg": "Апартамент 5",
                        "text_bg": "",
                        "details_bg": null,
                        "slug_bg": "apartament-5",
                        "seo_title_bg": "Апартамент 5 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "Apartment 5",
                        "text_en": "",
                        "details_en": null,
                        "slug_en": "apartment-5",
                        "seo_title_en": "Apartment 5 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 11,
                            "slug_bg": "b",
                            "slug_en": "b"
                        },
                        "floor": {
                            "id": 11,
                            "slug_bg": "1",
                            "slug_en": "1"
                        }
                    },
                    {
                        "id": 196,
                        "coords": "",
                        "degrees": null,
                        "status": 1,
                        "floor_for_filters": null,
                        "rooms": 1,
                        "total_area": "121.26",
                        "living_area": "0",
                        "price": 100000,
                        "price_m2": 825,
                        "image": null,
                        "image2": null,
                        "mezonet": 0,
                        "panorama": 0,
                        "pdf": null,
                        "gallery": null,
                        "title_bg": "Апартамент 6",
                        "text_bg": "",
                        "details_bg": null,
                        "slug_bg": "apartament-6",
                        "seo_title_bg": "Апартамент 6 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "Apartment 6",
                        "text_en": "",
                        "details_en": null,
                        "slug_en": "apartment-6",
                        "seo_title_en": "Apartment 6 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 11,
                            "slug_bg": "b",
                            "slug_en": "b"
                        },
                        "floor": {
                            "id": 11,
                            "slug_bg": "1",
                            "slug_en": "1"
                        }
                    },
                    {
                        "id": 197,
                        "coords": "",
                        "degrees": null,
                        "status": 3,
                        "floor_for_filters": null,
                        "rooms": 2,
                        "total_area": "158.17",
                        "living_area": "0",
                        "price": 141000,
                        "price_m2": 891,
                        "image": null,
                        "image2": null,
                        "mezonet": 1,
                        "panorama": 0,
                        "pdf": null,
                        "gallery": null,
                        "title_bg": "Апартамент 7",
                        "text_bg": "",
                        "details_bg": null,
                        "slug_bg": "apartament-7",
                        "seo_title_bg": "Апартамент 7 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "Apartment 7",
                        "text_en": "",
                        "details_en": null,
                        "slug_en": "apartment-7",
                        "seo_title_en": "Apartment 7 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 11,
                            "slug_bg": "b",
                            "slug_en": "b"
                        },
                        "floor": {
                            "id": 11,
                            "slug_bg": "2",
                            "slug_en": "2"
                        }
                    }
                ],
                "links": {
                    "self": "link-value"
                }
            }
        },
        "apartments": {
            "data": [
                {
                    "id": 1,
                    "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                    "degrees": null,
                    "status": 1,
                    "floor_for_filters": null,
                    "rooms": 2,
                    "total_area": "68.75",
                    "living_area": "0",
                    "price": 100000,
                    "price_m2": 1455,
                    "image": null,
                    "image2": null,
                    "mezonet": 0,
                    "panorama": 0,
                    "pdf": null,
                    "gallery": null,
                    "title_bg": "Апартамент 1",
                    "text_bg": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                    "details_bg": null,
                    "slug_bg": "apartament-1",
                    "seo_title_bg": "Апартамент 1 | Меркурий 99",
                    "seo_description_bg": null,
                    "seo_keywords_bg": null,
                    "hide_sitemap_bg": 0,
                    "title_en": "Apartment 1",
                    "text_en": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                    "details_en": null,
                    "slug_en": "apartment-1",
                    "seo_title_en": "Apartment 1 | Mercury 99",
                    "seo_description_en": null,
                    "seo_keywords_en": null,
                    "hide_sitemap_en": 0,
                    "building": {
                        "id": 1,
                        "slug_bg": "starlight",
                        "slug_en": "starlight"
                    },
                    "entrance": {
                        "id": 1,
                        "slug_bg": "a",
                        "slug_en": "a"
                    },
                    "floor": {
                        "id": 1,
                        "slug_bg": "1",
                        "slug_en": "1"
                    }
                },
                {
                    "id": 192,
                    "coords": "",
                    "degrees": null,
                    "status": 1,
                    "floor_for_filters": null,
                    "rooms": 3,
                    "total_area": "121.26",
                    "living_area": "0",
                    "price": 136000,
                    "price_m2": 1122,
                    "image": null,
                    "image2": null,
                    "mezonet": 0,
                    "panorama": 0,
                    "pdf": null,
                    "gallery": null,
                    "title_bg": "Апартамент 2",
                    "text_bg": "",
                    "details_bg": null,
                    "slug_bg": "apartament-2",
                    "seo_title_bg": "Апартамент 2 | Меркурий 99",
                    "seo_description_bg": null,
                    "seo_keywords_bg": null,
                    "hide_sitemap_bg": 0,
                    "title_en": "Apartment 2",
                    "text_en": "",
                    "details_en": null,
                    "slug_en": "apartment-2",
                    "seo_title_en": "Apartment 2 | Mercury 99",
                    "seo_description_en": null,
                    "seo_keywords_en": null,
                    "hide_sitemap_en": 0,
                    "building": {
                        "id": 1,
                        "slug_bg": "starlight",
                        "slug_en": "starlight"
                    },
                    "entrance": {
                        "id": 1,
                        "slug_bg": "a",
                        "slug_en": "a"
                    },
                    "floor": {
                        "id": 1,
                        "slug_bg": "1",
                        "slug_en": "1"
                    }
                }
            ],
            "links": {
                "self": "link-value"
            }
        }
    }
}

HTTP Request

GET api/floor/{id}

Get All Floors.

Example request:

curl -X GET "http://mercury-api.imigix.com/api/floors" \
-H "Accept: application/json"
var settings = {
    "async": true,
    "crossDomain": true,
    "url": "http://mercury-api.imigix.com/api/floors",
    "method": "GET",
    "headers": {
        "accept": "application/json"
    }
}

$.ajax(settings).done(function (response) {
    console.log(response);
});

Example response:

{
    "data": [
        {
            "id": 1,
            "image": "http:\/\/localhost\/uploads\/images\/big\/57_floor1.png",
            "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
            "degrees": 6,
            "title_bg": "1",
            "slug_bg": "1",
            "seo_title_bg": "1 | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "1",
            "slug_en": "1",
            "seo_title_en": "1 | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0,
            "building": {
                "id": 1,
                "slug_bg": "starlight",
                "slug_en": "starlight"
            },
            "entrance": {
                "id": 1,
                "slug_bg": "a",
                "slug_en": "a"
            },
            "apartments": {
                "data": [
                    {
                        "id": 1,
                        "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                        "degrees": null,
                        "status": 1,
                        "floor_for_filters": null,
                        "rooms": 2,
                        "total_area": "68.75",
                        "living_area": "0",
                        "price": 100000,
                        "price_m2": 1455,
                        "image": null,
                        "image2": null,
                        "mezonet": 0,
                        "panorama": 0,
                        "pdf": null,
                        "gallery": null,
                        "title_bg": "Апартамент 1",
                        "text_bg": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                        "details_bg": null,
                        "slug_bg": "apartament-1",
                        "seo_title_bg": "Апартамент 1 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "Apartment 1",
                        "text_en": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                        "details_en": null,
                        "slug_en": "apartment-1",
                        "seo_title_en": "Apartment 1 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 1,
                            "slug_bg": "a",
                            "slug_en": "a"
                        },
                        "floor": {
                            "id": 1,
                            "slug_bg": "1",
                            "slug_en": "1"
                        }
                    },
                    {
                        "id": 192,
                        "coords": "",
                        "degrees": null,
                        "status": 1,
                        "floor_for_filters": null,
                        "rooms": 3,
                        "total_area": "121.26",
                        "living_area": "0",
                        "price": 136000,
                        "price_m2": 1122,
                        "image": null,
                        "image2": null,
                        "mezonet": 0,
                        "panorama": 0,
                        "pdf": null,
                        "gallery": null,
                        "title_bg": "Апартамент 2",
                        "text_bg": "",
                        "details_bg": null,
                        "slug_bg": "apartament-2",
                        "seo_title_bg": "Апартамент 2 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "Apartment 2",
                        "text_en": "",
                        "details_en": null,
                        "slug_en": "apartment-2",
                        "seo_title_en": "Apartment 2 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 1,
                            "slug_bg": "a",
                            "slug_en": "a"
                        },
                        "floor": {
                            "id": 1,
                            "slug_bg": "1",
                            "slug_en": "1"
                        }
                    }
                ],
                "links": {
                    "self": "link-value"
                }
            }
        },
        {
            "id": 44,
            "image": null,
            "coords": "125, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
            "degrees": 6,
            "title_bg": "2",
            "slug_bg": "2",
            "seo_title_bg": "2 | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "2",
            "slug_en": "2",
            "seo_title_en": "2 | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0,
            "building": {
                "id": 1,
                "slug_bg": "starlight",
                "slug_en": "starlight"
            },
            "entrance": {
                "id": 1,
                "slug_bg": "a",
                "slug_en": "a"
            },
            "apartments": {
                "data": [
                    {
                        "id": 194,
                        "coords": "",
                        "degrees": null,
                        "status": 1,
                        "floor_for_filters": null,
                        "rooms": 1,
                        "total_area": "80.65",
                        "living_area": "0",
                        "price": 122500,
                        "price_m2": 1519,
                        "image": null,
                        "image2": null,
                        "mezonet": 0,
                        "panorama": 0,
                        "pdf": null,
                        "gallery": null,
                        "title_bg": "Апартамент 3",
                        "text_bg": "",
                        "details_bg": null,
                        "slug_bg": "apartament-3",
                        "seo_title_bg": "Апартамент 3 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "Apartment 3",
                        "text_en": "",
                        "details_en": null,
                        "slug_en": "apartment-3",
                        "seo_title_en": "Apartment 3 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 1,
                            "slug_bg": "a",
                            "slug_en": "a"
                        },
                        "floor": {
                            "id": 1,
                            "slug_bg": "2",
                            "slug_en": "2"
                        }
                    },
                    {
                        "id": 193,
                        "coords": "",
                        "degrees": null,
                        "status": 2,
                        "floor_for_filters": null,
                        "rooms": 1,
                        "total_area": "80.65",
                        "living_area": "0",
                        "price": 136000,
                        "price_m2": 1686,
                        "image": null,
                        "image2": null,
                        "mezonet": 0,
                        "panorama": 0,
                        "pdf": null,
                        "gallery": null,
                        "title_bg": "Апартамент 4",
                        "text_bg": "",
                        "details_bg": null,
                        "slug_bg": "apartament-4",
                        "seo_title_bg": "Апартамент 4 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "Apartment 4",
                        "text_en": "",
                        "details_en": null,
                        "slug_en": "apartment-4",
                        "seo_title_en": "Apartment 4 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 1,
                            "slug_bg": "a",
                            "slug_en": "a"
                        },
                        "floor": {
                            "id": 1,
                            "slug_bg": "2",
                            "slug_en": "2"
                        }
                    }
                ],
                "links": {
                    "self": "link-value"
                }
            }
        },
        {
            "id": 45,
            "image": null,
            "coords": "225, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
            "degrees": 6,
            "title_bg": "1",
            "slug_bg": "1",
            "seo_title_bg": "1 | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "1",
            "slug_en": "1",
            "seo_title_en": "1 | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0,
            "building": {
                "id": 1,
                "slug_bg": "starlight",
                "slug_en": "starlight"
            },
            "entrance": {
                "id": 11,
                "slug_bg": "b",
                "slug_en": "b"
            },
            "apartments": {
                "data": [
                    {
                        "id": 195,
                        "coords": "",
                        "degrees": null,
                        "status": 1,
                        "floor_for_filters": null,
                        "rooms": 3,
                        "total_area": "150.86",
                        "living_area": "0",
                        "price": 141000,
                        "price_m2": 935,
                        "image": null,
                        "image2": null,
                        "mezonet": 0,
                        "panorama": 0,
                        "pdf": null,
                        "gallery": null,
                        "title_bg": "Апартамент 5",
                        "text_bg": "",
                        "details_bg": null,
                        "slug_bg": "apartament-5",
                        "seo_title_bg": "Апартамент 5 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "Apartment 5",
                        "text_en": "",
                        "details_en": null,
                        "slug_en": "apartment-5",
                        "seo_title_en": "Apartment 5 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 11,
                            "slug_bg": "b",
                            "slug_en": "b"
                        },
                        "floor": {
                            "id": 11,
                            "slug_bg": "1",
                            "slug_en": "1"
                        }
                    },
                    {
                        "id": 196,
                        "coords": "",
                        "degrees": null,
                        "status": 1,
                        "floor_for_filters": null,
                        "rooms": 1,
                        "total_area": "121.26",
                        "living_area": "0",
                        "price": 100000,
                        "price_m2": 825,
                        "image": null,
                        "image2": null,
                        "mezonet": 0,
                        "panorama": 0,
                        "pdf": null,
                        "gallery": null,
                        "title_bg": "Апартамент 6",
                        "text_bg": "",
                        "details_bg": null,
                        "slug_bg": "apartament-6",
                        "seo_title_bg": "Апартамент 6 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "Apartment 6",
                        "text_en": "",
                        "details_en": null,
                        "slug_en": "apartment-6",
                        "seo_title_en": "Apartment 6 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 11,
                            "slug_bg": "b",
                            "slug_en": "b"
                        },
                        "floor": {
                            "id": 11,
                            "slug_bg": "1",
                            "slug_en": "1"
                        }
                    }
                ],
                "links": {
                    "self": "link-value"
                }
            }
        },
        {
            "id": 46,
            "image": null,
            "coords": "325, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
            "degrees": 6,
            "title_bg": "2",
            "slug_bg": "2",
            "seo_title_bg": "2 | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "2",
            "slug_en": "2",
            "seo_title_en": "2 | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0,
            "building": {
                "id": 1,
                "slug_bg": "starlight",
                "slug_en": "starlight"
            },
            "entrance": {
                "id": 11,
                "slug_bg": "b",
                "slug_en": "b"
            },
            "apartments": {
                "data": [
                    {
                        "id": 197,
                        "coords": "",
                        "degrees": null,
                        "status": 3,
                        "floor_for_filters": null,
                        "rooms": 2,
                        "total_area": "158.17",
                        "living_area": "0",
                        "price": 141000,
                        "price_m2": 891,
                        "image": null,
                        "image2": null,
                        "mezonet": 1,
                        "panorama": 0,
                        "pdf": null,
                        "gallery": null,
                        "title_bg": "Апартамент 7",
                        "text_bg": "",
                        "details_bg": null,
                        "slug_bg": "apartament-7",
                        "seo_title_bg": "Апартамент 7 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "Apartment 7",
                        "text_en": "",
                        "details_en": null,
                        "slug_en": "apartment-7",
                        "seo_title_en": "Apartment 7 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 11,
                            "slug_bg": "b",
                            "slug_en": "b"
                        },
                        "floor": {
                            "id": 11,
                            "slug_bg": "2",
                            "slug_en": "2"
                        }
                    }
                ],
                "links": {
                    "self": "link-value"
                }
            }
        }
    ],
    "links": {
        "self": "link-value"
    }
}

HTTP Request

GET api/floors

Get Floors By Entrance ID.

Example request:

curl -X GET "http://mercury-api.imigix.com/api/floors/entrance/{id}" \
-H "Accept: application/json"
var settings = {
    "async": true,
    "crossDomain": true,
    "url": "http://mercury-api.imigix.com/api/floors/entrance/{id}",
    "method": "GET",
    "headers": {
        "accept": "application/json"
    }
}

$.ajax(settings).done(function (response) {
    console.log(response);
});

Example response:

{
    "data": [
        {
            "id": 1,
            "image": "http:\/\/localhost\/uploads\/images\/big\/57_floor1.png",
            "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
            "degrees": 6,
            "title_bg": "1",
            "slug_bg": "1",
            "seo_title_bg": "1 | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "1",
            "slug_en": "1",
            "seo_title_en": "1 | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0,
            "building": {
                "id": 1,
                "slug_bg": "starlight",
                "slug_en": "starlight"
            },
            "entrance": {
                "id": 1,
                "slug_bg": "a",
                "slug_en": "a"
            },
            "apartments": {
                "data": [
                    {
                        "id": 1,
                        "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                        "degrees": null,
                        "status": 1,
                        "floor_for_filters": null,
                        "rooms": 2,
                        "total_area": "68.75",
                        "living_area": "0",
                        "price": 100000,
                        "price_m2": 1455,
                        "image": null,
                        "image2": null,
                        "mezonet": 0,
                        "panorama": 0,
                        "pdf": null,
                        "gallery": null,
                        "title_bg": "Апартамент 1",
                        "text_bg": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                        "details_bg": null,
                        "slug_bg": "apartament-1",
                        "seo_title_bg": "Апартамент 1 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "Apartment 1",
                        "text_en": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                        "details_en": null,
                        "slug_en": "apartment-1",
                        "seo_title_en": "Apartment 1 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 1,
                            "slug_bg": "a",
                            "slug_en": "a"
                        },
                        "floor": {
                            "id": 1,
                            "slug_bg": "1",
                            "slug_en": "1"
                        }
                    },
                    {
                        "id": 192,
                        "coords": "",
                        "degrees": null,
                        "status": 1,
                        "floor_for_filters": null,
                        "rooms": 3,
                        "total_area": "121.26",
                        "living_area": "0",
                        "price": 136000,
                        "price_m2": 1122,
                        "image": null,
                        "image2": null,
                        "mezonet": 0,
                        "panorama": 0,
                        "pdf": null,
                        "gallery": null,
                        "title_bg": "Апартамент 2",
                        "text_bg": "",
                        "details_bg": null,
                        "slug_bg": "apartament-2",
                        "seo_title_bg": "Апартамент 2 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "Apartment 2",
                        "text_en": "",
                        "details_en": null,
                        "slug_en": "apartment-2",
                        "seo_title_en": "Apartment 2 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 1,
                            "slug_bg": "a",
                            "slug_en": "a"
                        },
                        "floor": {
                            "id": 1,
                            "slug_bg": "1",
                            "slug_en": "1"
                        }
                    }
                ],
                "links": {
                    "self": "link-value"
                }
            }
        },
        {
            "id": 44,
            "image": null,
            "coords": "125, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
            "degrees": 6,
            "title_bg": "2",
            "slug_bg": "2",
            "seo_title_bg": "2 | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "2",
            "slug_en": "2",
            "seo_title_en": "2 | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0,
            "building": {
                "id": 1,
                "slug_bg": "starlight",
                "slug_en": "starlight"
            },
            "entrance": {
                "id": 1,
                "slug_bg": "a",
                "slug_en": "a"
            },
            "apartments": {
                "data": [
                    {
                        "id": 194,
                        "coords": "",
                        "degrees": null,
                        "status": 1,
                        "floor_for_filters": null,
                        "rooms": 1,
                        "total_area": "80.65",
                        "living_area": "0",
                        "price": 122500,
                        "price_m2": 1519,
                        "image": null,
                        "image2": null,
                        "mezonet": 0,
                        "panorama": 0,
                        "pdf": null,
                        "gallery": null,
                        "title_bg": "Апартамент 3",
                        "text_bg": "",
                        "details_bg": null,
                        "slug_bg": "apartament-3",
                        "seo_title_bg": "Апартамент 3 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "Apartment 3",
                        "text_en": "",
                        "details_en": null,
                        "slug_en": "apartment-3",
                        "seo_title_en": "Apartment 3 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 1,
                            "slug_bg": "a",
                            "slug_en": "a"
                        },
                        "floor": {
                            "id": 1,
                            "slug_bg": "2",
                            "slug_en": "2"
                        }
                    },
                    {
                        "id": 193,
                        "coords": "",
                        "degrees": null,
                        "status": 2,
                        "floor_for_filters": null,
                        "rooms": 1,
                        "total_area": "80.65",
                        "living_area": "0",
                        "price": 136000,
                        "price_m2": 1686,
                        "image": null,
                        "image2": null,
                        "mezonet": 0,
                        "panorama": 0,
                        "pdf": null,
                        "gallery": null,
                        "title_bg": "Апартамент 4",
                        "text_bg": "",
                        "details_bg": null,
                        "slug_bg": "apartament-4",
                        "seo_title_bg": "Апартамент 4 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "Apartment 4",
                        "text_en": "",
                        "details_en": null,
                        "slug_en": "apartment-4",
                        "seo_title_en": "Apartment 4 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 1,
                            "slug_bg": "a",
                            "slug_en": "a"
                        },
                        "floor": {
                            "id": 1,
                            "slug_bg": "2",
                            "slug_en": "2"
                        }
                    }
                ],
                "links": {
                    "self": "link-value"
                }
            }
        }
    ],
    "links": {
        "self": "link-value"
    }
}

HTTP Request

GET api/floors/entrance/{id}

Get Floors By Building ID.

Example request:

curl -X GET "http://mercury-api.imigix.com/api/floors/building/{id}" \
-H "Accept: application/json"
var settings = {
    "async": true,
    "crossDomain": true,
    "url": "http://mercury-api.imigix.com/api/floors/building/{id}",
    "method": "GET",
    "headers": {
        "accept": "application/json"
    }
}

$.ajax(settings).done(function (response) {
    console.log(response);
});

Example response:

{
    "data": [
        {
            "id": 1,
            "image": "http:\/\/localhost\/uploads\/images\/big\/57_floor1.png",
            "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
            "degrees": 6,
            "title_bg": "1",
            "slug_bg": "1",
            "seo_title_bg": "1 | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "1",
            "slug_en": "1",
            "seo_title_en": "1 | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0,
            "building": {
                "id": 1,
                "slug_bg": "starlight",
                "slug_en": "starlight"
            },
            "entrance": {
                "id": 1,
                "slug_bg": "a",
                "slug_en": "a"
            },
            "apartments": {
                "data": [
                    {
                        "id": 1,
                        "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                        "degrees": null,
                        "status": 1,
                        "floor_for_filters": null,
                        "rooms": 2,
                        "total_area": "68.75",
                        "living_area": "0",
                        "price": 100000,
                        "price_m2": 1455,
                        "image": null,
                        "image2": null,
                        "mezonet": 0,
                        "panorama": 0,
                        "pdf": null,
                        "gallery": null,
                        "title_bg": "Апартамент 1",
                        "text_bg": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                        "details_bg": null,
                        "slug_bg": "apartament-1",
                        "seo_title_bg": "Апартамент 1 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "Apartment 1",
                        "text_en": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                        "details_en": null,
                        "slug_en": "apartment-1",
                        "seo_title_en": "Apartment 1 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 1,
                            "slug_bg": "a",
                            "slug_en": "a"
                        },
                        "floor": {
                            "id": 1,
                            "slug_bg": "1",
                            "slug_en": "1"
                        }
                    },
                    {
                        "id": 192,
                        "coords": "",
                        "degrees": null,
                        "status": 1,
                        "floor_for_filters": null,
                        "rooms": 3,
                        "total_area": "121.26",
                        "living_area": "0",
                        "price": 136000,
                        "price_m2": 1122,
                        "image": null,
                        "image2": null,
                        "mezonet": 0,
                        "panorama": 0,
                        "pdf": null,
                        "gallery": null,
                        "title_bg": "Апартамент 2",
                        "text_bg": "",
                        "details_bg": null,
                        "slug_bg": "apartament-2",
                        "seo_title_bg": "Апартамент 2 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "Apartment 2",
                        "text_en": "",
                        "details_en": null,
                        "slug_en": "apartment-2",
                        "seo_title_en": "Apartment 2 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 1,
                            "slug_bg": "a",
                            "slug_en": "a"
                        },
                        "floor": {
                            "id": 1,
                            "slug_bg": "1",
                            "slug_en": "1"
                        }
                    }
                ],
                "links": {
                    "self": "link-value"
                }
            }
        },
        {
            "id": 44,
            "image": null,
            "coords": "125, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
            "degrees": 6,
            "title_bg": "2",
            "slug_bg": "2",
            "seo_title_bg": "2 | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "2",
            "slug_en": "2",
            "seo_title_en": "2 | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0,
            "building": {
                "id": 1,
                "slug_bg": "starlight",
                "slug_en": "starlight"
            },
            "entrance": {
                "id": 1,
                "slug_bg": "a",
                "slug_en": "a"
            },
            "apartments": {
                "data": [
                    {
                        "id": 194,
                        "coords": "",
                        "degrees": null,
                        "status": 1,
                        "floor_for_filters": null,
                        "rooms": 1,
                        "total_area": "80.65",
                        "living_area": "0",
                        "price": 122500,
                        "price_m2": 1519,
                        "image": null,
                        "image2": null,
                        "mezonet": 0,
                        "panorama": 0,
                        "pdf": null,
                        "gallery": null,
                        "title_bg": "Апартамент 3",
                        "text_bg": "",
                        "details_bg": null,
                        "slug_bg": "apartament-3",
                        "seo_title_bg": "Апартамент 3 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "Apartment 3",
                        "text_en": "",
                        "details_en": null,
                        "slug_en": "apartment-3",
                        "seo_title_en": "Apartment 3 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 1,
                            "slug_bg": "a",
                            "slug_en": "a"
                        },
                        "floor": {
                            "id": 1,
                            "slug_bg": "2",
                            "slug_en": "2"
                        }
                    },
                    {
                        "id": 193,
                        "coords": "",
                        "degrees": null,
                        "status": 2,
                        "floor_for_filters": null,
                        "rooms": 1,
                        "total_area": "80.65",
                        "living_area": "0",
                        "price": 136000,
                        "price_m2": 1686,
                        "image": null,
                        "image2": null,
                        "mezonet": 0,
                        "panorama": 0,
                        "pdf": null,
                        "gallery": null,
                        "title_bg": "Апартамент 4",
                        "text_bg": "",
                        "details_bg": null,
                        "slug_bg": "apartament-4",
                        "seo_title_bg": "Апартамент 4 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "Apartment 4",
                        "text_en": "",
                        "details_en": null,
                        "slug_en": "apartment-4",
                        "seo_title_en": "Apartment 4 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 1,
                            "slug_bg": "a",
                            "slug_en": "a"
                        },
                        "floor": {
                            "id": 1,
                            "slug_bg": "2",
                            "slug_en": "2"
                        }
                    }
                ],
                "links": {
                    "self": "link-value"
                }
            }
        },
        {
            "id": 45,
            "image": null,
            "coords": "225, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
            "degrees": 6,
            "title_bg": "1",
            "slug_bg": "1",
            "seo_title_bg": "1 | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "1",
            "slug_en": "1",
            "seo_title_en": "1 | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0,
            "building": {
                "id": 1,
                "slug_bg": "starlight",
                "slug_en": "starlight"
            },
            "entrance": {
                "id": 11,
                "slug_bg": "b",
                "slug_en": "b"
            },
            "apartments": {
                "data": [
                    {
                        "id": 195,
                        "coords": "",
                        "degrees": null,
                        "status": 1,
                        "floor_for_filters": null,
                        "rooms": 3,
                        "total_area": "150.86",
                        "living_area": "0",
                        "price": 141000,
                        "price_m2": 935,
                        "image": null,
                        "image2": null,
                        "mezonet": 0,
                        "panorama": 0,
                        "pdf": null,
                        "gallery": null,
                        "title_bg": "Апартамент 5",
                        "text_bg": "",
                        "details_bg": null,
                        "slug_bg": "apartament-5",
                        "seo_title_bg": "Апартамент 5 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "Apartment 5",
                        "text_en": "",
                        "details_en": null,
                        "slug_en": "apartment-5",
                        "seo_title_en": "Apartment 5 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 11,
                            "slug_bg": "b",
                            "slug_en": "b"
                        },
                        "floor": {
                            "id": 11,
                            "slug_bg": "1",
                            "slug_en": "1"
                        }
                    },
                    {
                        "id": 196,
                        "coords": "",
                        "degrees": null,
                        "status": 1,
                        "floor_for_filters": null,
                        "rooms": 1,
                        "total_area": "121.26",
                        "living_area": "0",
                        "price": 100000,
                        "price_m2": 825,
                        "image": null,
                        "image2": null,
                        "mezonet": 0,
                        "panorama": 0,
                        "pdf": null,
                        "gallery": null,
                        "title_bg": "Апартамент 6",
                        "text_bg": "",
                        "details_bg": null,
                        "slug_bg": "apartament-6",
                        "seo_title_bg": "Апартамент 6 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "Apartment 6",
                        "text_en": "",
                        "details_en": null,
                        "slug_en": "apartment-6",
                        "seo_title_en": "Apartment 6 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 11,
                            "slug_bg": "b",
                            "slug_en": "b"
                        },
                        "floor": {
                            "id": 11,
                            "slug_bg": "1",
                            "slug_en": "1"
                        }
                    }
                ],
                "links": {
                    "self": "link-value"
                }
            }
        },
        {
            "id": 46,
            "image": null,
            "coords": "325, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
            "degrees": 6,
            "title_bg": "2",
            "slug_bg": "2",
            "seo_title_bg": "2 | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "2",
            "slug_en": "2",
            "seo_title_en": "2 | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0,
            "building": {
                "id": 1,
                "slug_bg": "starlight",
                "slug_en": "starlight"
            },
            "entrance": {
                "id": 11,
                "slug_bg": "b",
                "slug_en": "b"
            },
            "apartments": {
                "data": [
                    {
                        "id": 197,
                        "coords": "",
                        "degrees": null,
                        "status": 3,
                        "floor_for_filters": null,
                        "rooms": 2,
                        "total_area": "158.17",
                        "living_area": "0",
                        "price": 141000,
                        "price_m2": 891,
                        "image": null,
                        "image2": null,
                        "mezonet": 1,
                        "panorama": 0,
                        "pdf": null,
                        "gallery": null,
                        "title_bg": "Апартамент 7",
                        "text_bg": "",
                        "details_bg": null,
                        "slug_bg": "apartament-7",
                        "seo_title_bg": "Апартамент 7 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "Apartment 7",
                        "text_en": "",
                        "details_en": null,
                        "slug_en": "apartment-7",
                        "seo_title_en": "Apartment 7 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 11,
                            "slug_bg": "b",
                            "slug_en": "b"
                        },
                        "floor": {
                            "id": 11,
                            "slug_bg": "2",
                            "slug_en": "2"
                        }
                    }
                ],
                "links": {
                    "self": "link-value"
                }
            }
        }
    ],
    "links": {
        "self": "link-value"
    }
}

HTTP Request

GET api/floors/building/{id}

Get Apartment by ID.

Example request:

curl -X GET "http://mercury-api.imigix.com/api/apartment/{id}" \
-H "Accept: application/json"
var settings = {
    "async": true,
    "crossDomain": true,
    "url": "http://mercury-api.imigix.com/api/apartment/{id}",
    "method": "GET",
    "headers": {
        "accept": "application/json"
    }
}

$.ajax(settings).done(function (response) {
    console.log(response);
});

Example response:

{
    "data": {
        "id": 1,
        "status": 1,
        "floor_for_filters": null,
        "rooms": 2,
        "total_area": "68.75",
        "living_area": "0",
        "price": 100000,
        "price_m2": 1455,
        "image": null,
        "image2": null,
        "mezonet": 0,
        "panorama": 0,
        "pdf": null,
        "gallery": [],
        "title_bg": "Апартамент 1",
        "text_bg": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
        "details_bg": null,
        "slug_bg": "apartament-1",
        "seo_title_bg": "Апартамент 1 | Меркурий 99",
        "seo_description_bg": null,
        "seo_keywords_bg": null,
        "hide_sitemap_bg": 0,
        "title_en": "Apartment 1",
        "text_en": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
        "details_en": null,
        "slug_en": "apartment-1",
        "seo_title_en": "Apartment 1 | Mercury 99",
        "seo_description_en": null,
        "seo_keywords_en": null,
        "hide_sitemap_en": 0,
        "prev_apartment": null,
        "next_apartment": null,
        "floor": {
            "id": 1,
            "image": "http:\/\/localhost\/uploads\/images\/big\/57_floor1.png",
            "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
            "title_bg": "1",
            "slug_bg": "1",
            "seo_title_bg": "1 | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "1",
            "slug_en": "1",
            "seo_title_en": "1 | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0,
            "prev_floor": null,
            "next_floor": null,
            "building": {
                "id": 1,
                "image": "http:\/\/localhost\/uploads\/images\/big\/17_build-starlight.jpg",
                "thumb": null,
                "pdf": null,
                "map": "http:\/\/localhost\/uploads\/images\/big\/16_map.jpg",
                "status": 1,
                "google_map": "https:\/\/www.google.com\/maps\/embed?pb=!1m17!1m8!1m3!1d11723.450867031348!2d23.304417599999997!3d42.72779635!3m2!1i1024!2i768!4f13.1!4m6!3e0!4m3!3m2!1d42.7293567!2d23.2992676!4m0!5e0!3m2!1sbg!2sbg!4v1539100876083",
                "use_svg": 0,
                "gallery": null,
                "title_bg": "Старлайт Тестова",
                "annonce_bg": "Lorem Ipsum е елементарен примерен текст, използван в печатарската и типографската индустрия.",
                "text_bg": "<p>A collection of textile samples lay spread out on the table - Samsa was a travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer. Gregor then turned to look out the window at the dull weather.&nbsp;A collection of textile samples lay spread out on the table - Samsa was a travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer. Gregor then turned to look out the window at the dull weather. &nbsp;<\/p>\r\n\r\n<p>A collection of textile samples lay spread out on the table - Samsa was a travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer. Gregor then turned to look out the window at the dull weather.<\/p>",
                "slug_bg": "starlight",
                "seo_title_bg": "Старлайт Тестова | Меркурий 99",
                "seo_description_bg": null,
                "seo_keywords_bg": null,
                "hide_sitemap_bg": 0,
                "title_en": "Starlight Testing",
                "annonce_en": "Gregor then turned to look out the window at the dull weather.",
                "text_en": "<p>A collection of textile samples lay spread out on the table - Samsa was a travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer. Gregor then turned to look out the window at the dull weather.&nbsp;A collection of textile samples lay spread out on the table - Samsa was a travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer. Gregor then turned to look out the window at the dull weather. &nbsp;<\/p>\r\n\r\n<p>A collection of textile samples lay spread out on the table - Samsa was a travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer. Gregor then turned to look out the window at the dull weather.<\/p>",
                "slug_en": "starlight",
                "seo_title_en": "Starlight Testing | Mercury 99",
                "seo_description_en": null,
                "seo_keywords_en": null,
                "hide_sitemap_en": 0,
                "prev_building": null,
                "next_building": null,
                "entrances": {
                    "data": [
                        {
                            "id": 1,
                            "image": null,
                            "coords": "coords",
                            "title_bg": "A",
                            "slug_bg": "a",
                            "seo_title_bg": "A | Меркурий 99",
                            "seo_description_bg": null,
                            "seo_keywords_bg": null,
                            "hide_sitemap_bg": 0,
                            "title_en": "A",
                            "slug_en": "a",
                            "seo_title_en": "A | Mercury 99",
                            "seo_description_en": null,
                            "seo_keywords_en": null,
                            "hide_sitemap_en": 0,
                            "building": {
                                "id": 1,
                                "slug_bg": "starlight",
                                "slug_en": "starlight"
                            },
                            "floors": {
                                "data": [
                                    {
                                        "id": 1,
                                        "image": "http:\/\/localhost\/uploads\/images\/big\/57_floor1.png",
                                        "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                                        "degrees": 6,
                                        "title_bg": "1",
                                        "slug_bg": "1",
                                        "seo_title_bg": "1 | Меркурий 99",
                                        "seo_description_bg": null,
                                        "seo_keywords_bg": null,
                                        "hide_sitemap_bg": 0,
                                        "title_en": "1",
                                        "slug_en": "1",
                                        "seo_title_en": "1 | Mercury 99",
                                        "seo_description_en": null,
                                        "seo_keywords_en": null,
                                        "hide_sitemap_en": 0,
                                        "building": {
                                            "id": 1,
                                            "slug_bg": "starlight",
                                            "slug_en": "starlight"
                                        },
                                        "entrance": {
                                            "id": 1,
                                            "slug_bg": "a",
                                            "slug_en": "a"
                                        },
                                        "apartments": {
                                            "data": [
                                                {
                                                    "id": 1,
                                                    "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                                                    "degrees": null,
                                                    "status": 1,
                                                    "floor_for_filters": null,
                                                    "rooms": 2,
                                                    "total_area": "68.75",
                                                    "living_area": "0",
                                                    "price": 100000,
                                                    "price_m2": 1455,
                                                    "image": null,
                                                    "image2": null,
                                                    "mezonet": 0,
                                                    "panorama": 0,
                                                    "pdf": null,
                                                    "gallery": null,
                                                    "title_bg": "Апартамент 1",
                                                    "text_bg": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                                                    "details_bg": null,
                                                    "slug_bg": "apartament-1",
                                                    "seo_title_bg": "Апартамент 1 | Меркурий 99",
                                                    "seo_description_bg": null,
                                                    "seo_keywords_bg": null,
                                                    "hide_sitemap_bg": 0,
                                                    "title_en": "Apartment 1",
                                                    "text_en": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                                                    "details_en": null,
                                                    "slug_en": "apartment-1",
                                                    "seo_title_en": "Apartment 1 | Mercury 99",
                                                    "seo_description_en": null,
                                                    "seo_keywords_en": null,
                                                    "hide_sitemap_en": 0,
                                                    "building": {
                                                        "id": 1,
                                                        "slug_bg": "starlight",
                                                        "slug_en": "starlight"
                                                    },
                                                    "entrance": {
                                                        "id": 1,
                                                        "slug_bg": "a",
                                                        "slug_en": "a"
                                                    },
                                                    "floor": {
                                                        "id": 1,
                                                        "slug_bg": "1",
                                                        "slug_en": "1"
                                                    }
                                                },
                                                {
                                                    "id": 192,
                                                    "coords": "",
                                                    "degrees": null,
                                                    "status": 1,
                                                    "floor_for_filters": null,
                                                    "rooms": 3,
                                                    "total_area": "121.26",
                                                    "living_area": "0",
                                                    "price": 136000,
                                                    "price_m2": 1122,
                                                    "image": null,
                                                    "image2": null,
                                                    "mezonet": 0,
                                                    "panorama": 0,
                                                    "pdf": null,
                                                    "gallery": null,
                                                    "title_bg": "Апартамент 2",
                                                    "text_bg": "",
                                                    "details_bg": null,
                                                    "slug_bg": "apartament-2",
                                                    "seo_title_bg": "Апартамент 2 | Меркурий 99",
                                                    "seo_description_bg": null,
                                                    "seo_keywords_bg": null,
                                                    "hide_sitemap_bg": 0,
                                                    "title_en": "Apartment 2",
                                                    "text_en": "",
                                                    "details_en": null,
                                                    "slug_en": "apartment-2",
                                                    "seo_title_en": "Apartment 2 | Mercury 99",
                                                    "seo_description_en": null,
                                                    "seo_keywords_en": null,
                                                    "hide_sitemap_en": 0,
                                                    "building": {
                                                        "id": 1,
                                                        "slug_bg": "starlight",
                                                        "slug_en": "starlight"
                                                    },
                                                    "entrance": {
                                                        "id": 1,
                                                        "slug_bg": "a",
                                                        "slug_en": "a"
                                                    },
                                                    "floor": {
                                                        "id": 1,
                                                        "slug_bg": "1",
                                                        "slug_en": "1"
                                                    }
                                                }
                                            ],
                                            "links": {
                                                "self": "link-value"
                                            }
                                        }
                                    },
                                    {
                                        "id": 44,
                                        "image": null,
                                        "coords": "125, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                                        "degrees": 6,
                                        "title_bg": "2",
                                        "slug_bg": "2",
                                        "seo_title_bg": "2 | Меркурий 99",
                                        "seo_description_bg": null,
                                        "seo_keywords_bg": null,
                                        "hide_sitemap_bg": 0,
                                        "title_en": "2",
                                        "slug_en": "2",
                                        "seo_title_en": "2 | Mercury 99",
                                        "seo_description_en": null,
                                        "seo_keywords_en": null,
                                        "hide_sitemap_en": 0,
                                        "building": {
                                            "id": 1,
                                            "slug_bg": "starlight",
                                            "slug_en": "starlight"
                                        },
                                        "entrance": {
                                            "id": 1,
                                            "slug_bg": "a",
                                            "slug_en": "a"
                                        },
                                        "apartments": {
                                            "data": [
                                                {
                                                    "id": 193,
                                                    "coords": "",
                                                    "degrees": null,
                                                    "status": 2,
                                                    "floor_for_filters": null,
                                                    "rooms": 1,
                                                    "total_area": "80.65",
                                                    "living_area": "0",
                                                    "price": 136000,
                                                    "price_m2": 1686,
                                                    "image": null,
                                                    "image2": null,
                                                    "mezonet": 0,
                                                    "panorama": 0,
                                                    "pdf": null,
                                                    "gallery": null,
                                                    "title_bg": "Апартамент 4",
                                                    "text_bg": "",
                                                    "details_bg": null,
                                                    "slug_bg": "apartament-4",
                                                    "seo_title_bg": "Апартамент 4 | Меркурий 99",
                                                    "seo_description_bg": null,
                                                    "seo_keywords_bg": null,
                                                    "hide_sitemap_bg": 0,
                                                    "title_en": "Apartment 4",
                                                    "text_en": "",
                                                    "details_en": null,
                                                    "slug_en": "apartment-4",
                                                    "seo_title_en": "Apartment 4 | Mercury 99",
                                                    "seo_description_en": null,
                                                    "seo_keywords_en": null,
                                                    "hide_sitemap_en": 0,
                                                    "building": {
                                                        "id": 1,
                                                        "slug_bg": "starlight",
                                                        "slug_en": "starlight"
                                                    },
                                                    "entrance": {
                                                        "id": 1,
                                                        "slug_bg": "a",
                                                        "slug_en": "a"
                                                    },
                                                    "floor": {
                                                        "id": 1,
                                                        "slug_bg": "2",
                                                        "slug_en": "2"
                                                    }
                                                },
                                                {
                                                    "id": 194,
                                                    "coords": "",
                                                    "degrees": null,
                                                    "status": 1,
                                                    "floor_for_filters": null,
                                                    "rooms": 1,
                                                    "total_area": "80.65",
                                                    "living_area": "0",
                                                    "price": 122500,
                                                    "price_m2": 1519,
                                                    "image": null,
                                                    "image2": null,
                                                    "mezonet": 0,
                                                    "panorama": 0,
                                                    "pdf": null,
                                                    "gallery": null,
                                                    "title_bg": "Апартамент 3",
                                                    "text_bg": "",
                                                    "details_bg": null,
                                                    "slug_bg": "apartament-3",
                                                    "seo_title_bg": "Апартамент 3 | Меркурий 99",
                                                    "seo_description_bg": null,
                                                    "seo_keywords_bg": null,
                                                    "hide_sitemap_bg": 0,
                                                    "title_en": "Apartment 3",
                                                    "text_en": "",
                                                    "details_en": null,
                                                    "slug_en": "apartment-3",
                                                    "seo_title_en": "Apartment 3 | Mercury 99",
                                                    "seo_description_en": null,
                                                    "seo_keywords_en": null,
                                                    "hide_sitemap_en": 0,
                                                    "building": {
                                                        "id": 1,
                                                        "slug_bg": "starlight",
                                                        "slug_en": "starlight"
                                                    },
                                                    "entrance": {
                                                        "id": 1,
                                                        "slug_bg": "a",
                                                        "slug_en": "a"
                                                    },
                                                    "floor": {
                                                        "id": 1,
                                                        "slug_bg": "2",
                                                        "slug_en": "2"
                                                    }
                                                }
                                            ],
                                            "links": {
                                                "self": "link-value"
                                            }
                                        }
                                    }
                                ],
                                "links": {
                                    "self": "link-value"
                                }
                            }
                        },
                        {
                            "id": 11,
                            "image": null,
                            "coords": "coords",
                            "title_bg": "Б",
                            "slug_bg": "b",
                            "seo_title_bg": "Б | Меркурий 99",
                            "seo_description_bg": null,
                            "seo_keywords_bg": null,
                            "hide_sitemap_bg": 0,
                            "title_en": "B",
                            "slug_en": "b",
                            "seo_title_en": "B | Mercury 99",
                            "seo_description_en": null,
                            "seo_keywords_en": null,
                            "hide_sitemap_en": 0,
                            "building": {
                                "id": 1,
                                "slug_bg": "starlight",
                                "slug_en": "starlight"
                            },
                            "floors": {
                                "data": [
                                    {
                                        "id": 45,
                                        "image": null,
                                        "coords": "225, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                                        "degrees": 6,
                                        "title_bg": "1",
                                        "slug_bg": "1",
                                        "seo_title_bg": "1 | Меркурий 99",
                                        "seo_description_bg": null,
                                        "seo_keywords_bg": null,
                                        "hide_sitemap_bg": 0,
                                        "title_en": "1",
                                        "slug_en": "1",
                                        "seo_title_en": "1 | Mercury 99",
                                        "seo_description_en": null,
                                        "seo_keywords_en": null,
                                        "hide_sitemap_en": 0,
                                        "building": {
                                            "id": 1,
                                            "slug_bg": "starlight",
                                            "slug_en": "starlight"
                                        },
                                        "entrance": {
                                            "id": 11,
                                            "slug_bg": "b",
                                            "slug_en": "b"
                                        },
                                        "apartments": {
                                            "data": [
                                                {
                                                    "id": 195,
                                                    "coords": "",
                                                    "degrees": null,
                                                    "status": 1,
                                                    "floor_for_filters": null,
                                                    "rooms": 3,
                                                    "total_area": "150.86",
                                                    "living_area": "0",
                                                    "price": 141000,
                                                    "price_m2": 935,
                                                    "image": null,
                                                    "image2": null,
                                                    "mezonet": 0,
                                                    "panorama": 0,
                                                    "pdf": null,
                                                    "gallery": null,
                                                    "title_bg": "Апартамент 5",
                                                    "text_bg": "",
                                                    "details_bg": null,
                                                    "slug_bg": "apartament-5",
                                                    "seo_title_bg": "Апартамент 5 | Меркурий 99",
                                                    "seo_description_bg": null,
                                                    "seo_keywords_bg": null,
                                                    "hide_sitemap_bg": 0,
                                                    "title_en": "Apartment 5",
                                                    "text_en": "",
                                                    "details_en": null,
                                                    "slug_en": "apartment-5",
                                                    "seo_title_en": "Apartment 5 | Mercury 99",
                                                    "seo_description_en": null,
                                                    "seo_keywords_en": null,
                                                    "hide_sitemap_en": 0,
                                                    "building": {
                                                        "id": 1,
                                                        "slug_bg": "starlight",
                                                        "slug_en": "starlight"
                                                    },
                                                    "entrance": {
                                                        "id": 11,
                                                        "slug_bg": "b",
                                                        "slug_en": "b"
                                                    },
                                                    "floor": {
                                                        "id": 11,
                                                        "slug_bg": "1",
                                                        "slug_en": "1"
                                                    }
                                                },
                                                {
                                                    "id": 196,
                                                    "coords": "",
                                                    "degrees": null,
                                                    "status": 1,
                                                    "floor_for_filters": null,
                                                    "rooms": 1,
                                                    "total_area": "121.26",
                                                    "living_area": "0",
                                                    "price": 100000,
                                                    "price_m2": 825,
                                                    "image": null,
                                                    "image2": null,
                                                    "mezonet": 0,
                                                    "panorama": 0,
                                                    "pdf": null,
                                                    "gallery": null,
                                                    "title_bg": "Апартамент 6",
                                                    "text_bg": "",
                                                    "details_bg": null,
                                                    "slug_bg": "apartament-6",
                                                    "seo_title_bg": "Апартамент 6 | Меркурий 99",
                                                    "seo_description_bg": null,
                                                    "seo_keywords_bg": null,
                                                    "hide_sitemap_bg": 0,
                                                    "title_en": "Apartment 6",
                                                    "text_en": "",
                                                    "details_en": null,
                                                    "slug_en": "apartment-6",
                                                    "seo_title_en": "Apartment 6 | Mercury 99",
                                                    "seo_description_en": null,
                                                    "seo_keywords_en": null,
                                                    "hide_sitemap_en": 0,
                                                    "building": {
                                                        "id": 1,
                                                        "slug_bg": "starlight",
                                                        "slug_en": "starlight"
                                                    },
                                                    "entrance": {
                                                        "id": 11,
                                                        "slug_bg": "b",
                                                        "slug_en": "b"
                                                    },
                                                    "floor": {
                                                        "id": 11,
                                                        "slug_bg": "1",
                                                        "slug_en": "1"
                                                    }
                                                }
                                            ],
                                            "links": {
                                                "self": "link-value"
                                            }
                                        }
                                    },
                                    {
                                        "id": 46,
                                        "image": null,
                                        "coords": "325, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                                        "degrees": 6,
                                        "title_bg": "2",
                                        "slug_bg": "2",
                                        "seo_title_bg": "2 | Меркурий 99",
                                        "seo_description_bg": null,
                                        "seo_keywords_bg": null,
                                        "hide_sitemap_bg": 0,
                                        "title_en": "2",
                                        "slug_en": "2",
                                        "seo_title_en": "2 | Mercury 99",
                                        "seo_description_en": null,
                                        "seo_keywords_en": null,
                                        "hide_sitemap_en": 0,
                                        "building": {
                                            "id": 1,
                                            "slug_bg": "starlight",
                                            "slug_en": "starlight"
                                        },
                                        "entrance": {
                                            "id": 11,
                                            "slug_bg": "b",
                                            "slug_en": "b"
                                        },
                                        "apartments": {
                                            "data": [
                                                {
                                                    "id": 197,
                                                    "coords": "",
                                                    "degrees": null,
                                                    "status": 3,
                                                    "floor_for_filters": null,
                                                    "rooms": 2,
                                                    "total_area": "158.17",
                                                    "living_area": "0",
                                                    "price": 141000,
                                                    "price_m2": 891,
                                                    "image": null,
                                                    "image2": null,
                                                    "mezonet": 1,
                                                    "panorama": 0,
                                                    "pdf": null,
                                                    "gallery": null,
                                                    "title_bg": "Апартамент 7",
                                                    "text_bg": "",
                                                    "details_bg": null,
                                                    "slug_bg": "apartament-7",
                                                    "seo_title_bg": "Апартамент 7 | Меркурий 99",
                                                    "seo_description_bg": null,
                                                    "seo_keywords_bg": null,
                                                    "hide_sitemap_bg": 0,
                                                    "title_en": "Apartment 7",
                                                    "text_en": "",
                                                    "details_en": null,
                                                    "slug_en": "apartment-7",
                                                    "seo_title_en": "Apartment 7 | Mercury 99",
                                                    "seo_description_en": null,
                                                    "seo_keywords_en": null,
                                                    "hide_sitemap_en": 0,
                                                    "building": {
                                                        "id": 1,
                                                        "slug_bg": "starlight",
                                                        "slug_en": "starlight"
                                                    },
                                                    "entrance": {
                                                        "id": 11,
                                                        "slug_bg": "b",
                                                        "slug_en": "b"
                                                    },
                                                    "floor": {
                                                        "id": 11,
                                                        "slug_bg": "2",
                                                        "slug_en": "2"
                                                    }
                                                }
                                            ],
                                            "links": {
                                                "self": "link-value"
                                            }
                                        }
                                    }
                                ],
                                "links": {
                                    "self": "link-value"
                                }
                            }
                        }
                    ],
                    "links": {
                        "self": "link-value"
                    }
                },
                "floors": {
                    "data": [
                        {
                            "id": 1,
                            "image": "http:\/\/localhost\/uploads\/images\/big\/57_floor1.png",
                            "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                            "degrees": 6,
                            "title_bg": "1",
                            "slug_bg": "1",
                            "seo_title_bg": "1 | Меркурий 99",
                            "seo_description_bg": null,
                            "seo_keywords_bg": null,
                            "hide_sitemap_bg": 0,
                            "title_en": "1",
                            "slug_en": "1",
                            "seo_title_en": "1 | Mercury 99",
                            "seo_description_en": null,
                            "seo_keywords_en": null,
                            "hide_sitemap_en": 0,
                            "building": {
                                "id": 1,
                                "slug_bg": "starlight",
                                "slug_en": "starlight"
                            },
                            "entrance": {
                                "id": 1,
                                "slug_bg": "a",
                                "slug_en": "a"
                            },
                            "apartments": {
                                "data": [
                                    {
                                        "id": 1,
                                        "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                                        "degrees": null,
                                        "status": 1,
                                        "floor_for_filters": null,
                                        "rooms": 2,
                                        "total_area": "68.75",
                                        "living_area": "0",
                                        "price": 100000,
                                        "price_m2": 1455,
                                        "image": null,
                                        "image2": null,
                                        "mezonet": 0,
                                        "panorama": 0,
                                        "pdf": null,
                                        "gallery": null,
                                        "title_bg": "Апартамент 1",
                                        "text_bg": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                                        "details_bg": null,
                                        "slug_bg": "apartament-1",
                                        "seo_title_bg": "Апартамент 1 | Меркурий 99",
                                        "seo_description_bg": null,
                                        "seo_keywords_bg": null,
                                        "hide_sitemap_bg": 0,
                                        "title_en": "Apartment 1",
                                        "text_en": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                                        "details_en": null,
                                        "slug_en": "apartment-1",
                                        "seo_title_en": "Apartment 1 | Mercury 99",
                                        "seo_description_en": null,
                                        "seo_keywords_en": null,
                                        "hide_sitemap_en": 0,
                                        "building": {
                                            "id": 1,
                                            "slug_bg": "starlight",
                                            "slug_en": "starlight"
                                        },
                                        "entrance": {
                                            "id": 1,
                                            "slug_bg": "a",
                                            "slug_en": "a"
                                        },
                                        "floor": {
                                            "id": 1,
                                            "slug_bg": "1",
                                            "slug_en": "1"
                                        }
                                    },
                                    {
                                        "id": 192,
                                        "coords": "",
                                        "degrees": null,
                                        "status": 1,
                                        "floor_for_filters": null,
                                        "rooms": 3,
                                        "total_area": "121.26",
                                        "living_area": "0",
                                        "price": 136000,
                                        "price_m2": 1122,
                                        "image": null,
                                        "image2": null,
                                        "mezonet": 0,
                                        "panorama": 0,
                                        "pdf": null,
                                        "gallery": null,
                                        "title_bg": "Апартамент 2",
                                        "text_bg": "",
                                        "details_bg": null,
                                        "slug_bg": "apartament-2",
                                        "seo_title_bg": "Апартамент 2 | Меркурий 99",
                                        "seo_description_bg": null,
                                        "seo_keywords_bg": null,
                                        "hide_sitemap_bg": 0,
                                        "title_en": "Apartment 2",
                                        "text_en": "",
                                        "details_en": null,
                                        "slug_en": "apartment-2",
                                        "seo_title_en": "Apartment 2 | Mercury 99",
                                        "seo_description_en": null,
                                        "seo_keywords_en": null,
                                        "hide_sitemap_en": 0,
                                        "building": {
                                            "id": 1,
                                            "slug_bg": "starlight",
                                            "slug_en": "starlight"
                                        },
                                        "entrance": {
                                            "id": 1,
                                            "slug_bg": "a",
                                            "slug_en": "a"
                                        },
                                        "floor": {
                                            "id": 1,
                                            "slug_bg": "1",
                                            "slug_en": "1"
                                        }
                                    }
                                ],
                                "links": {
                                    "self": "link-value"
                                }
                            }
                        },
                        {
                            "id": 44,
                            "image": null,
                            "coords": "125, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                            "degrees": 6,
                            "title_bg": "2",
                            "slug_bg": "2",
                            "seo_title_bg": "2 | Меркурий 99",
                            "seo_description_bg": null,
                            "seo_keywords_bg": null,
                            "hide_sitemap_bg": 0,
                            "title_en": "2",
                            "slug_en": "2",
                            "seo_title_en": "2 | Mercury 99",
                            "seo_description_en": null,
                            "seo_keywords_en": null,
                            "hide_sitemap_en": 0,
                            "building": {
                                "id": 1,
                                "slug_bg": "starlight",
                                "slug_en": "starlight"
                            },
                            "entrance": {
                                "id": 1,
                                "slug_bg": "a",
                                "slug_en": "a"
                            },
                            "apartments": {
                                "data": [
                                    {
                                        "id": 193,
                                        "coords": "",
                                        "degrees": null,
                                        "status": 2,
                                        "floor_for_filters": null,
                                        "rooms": 1,
                                        "total_area": "80.65",
                                        "living_area": "0",
                                        "price": 136000,
                                        "price_m2": 1686,
                                        "image": null,
                                        "image2": null,
                                        "mezonet": 0,
                                        "panorama": 0,
                                        "pdf": null,
                                        "gallery": null,
                                        "title_bg": "Апартамент 4",
                                        "text_bg": "",
                                        "details_bg": null,
                                        "slug_bg": "apartament-4",
                                        "seo_title_bg": "Апартамент 4 | Меркурий 99",
                                        "seo_description_bg": null,
                                        "seo_keywords_bg": null,
                                        "hide_sitemap_bg": 0,
                                        "title_en": "Apartment 4",
                                        "text_en": "",
                                        "details_en": null,
                                        "slug_en": "apartment-4",
                                        "seo_title_en": "Apartment 4 | Mercury 99",
                                        "seo_description_en": null,
                                        "seo_keywords_en": null,
                                        "hide_sitemap_en": 0,
                                        "building": {
                                            "id": 1,
                                            "slug_bg": "starlight",
                                            "slug_en": "starlight"
                                        },
                                        "entrance": {
                                            "id": 1,
                                            "slug_bg": "a",
                                            "slug_en": "a"
                                        },
                                        "floor": {
                                            "id": 1,
                                            "slug_bg": "2",
                                            "slug_en": "2"
                                        }
                                    },
                                    {
                                        "id": 194,
                                        "coords": "",
                                        "degrees": null,
                                        "status": 1,
                                        "floor_for_filters": null,
                                        "rooms": 1,
                                        "total_area": "80.65",
                                        "living_area": "0",
                                        "price": 122500,
                                        "price_m2": 1519,
                                        "image": null,
                                        "image2": null,
                                        "mezonet": 0,
                                        "panorama": 0,
                                        "pdf": null,
                                        "gallery": null,
                                        "title_bg": "Апартамент 3",
                                        "text_bg": "",
                                        "details_bg": null,
                                        "slug_bg": "apartament-3",
                                        "seo_title_bg": "Апартамент 3 | Меркурий 99",
                                        "seo_description_bg": null,
                                        "seo_keywords_bg": null,
                                        "hide_sitemap_bg": 0,
                                        "title_en": "Apartment 3",
                                        "text_en": "",
                                        "details_en": null,
                                        "slug_en": "apartment-3",
                                        "seo_title_en": "Apartment 3 | Mercury 99",
                                        "seo_description_en": null,
                                        "seo_keywords_en": null,
                                        "hide_sitemap_en": 0,
                                        "building": {
                                            "id": 1,
                                            "slug_bg": "starlight",
                                            "slug_en": "starlight"
                                        },
                                        "entrance": {
                                            "id": 1,
                                            "slug_bg": "a",
                                            "slug_en": "a"
                                        },
                                        "floor": {
                                            "id": 1,
                                            "slug_bg": "2",
                                            "slug_en": "2"
                                        }
                                    }
                                ],
                                "links": {
                                    "self": "link-value"
                                }
                            }
                        },
                        {
                            "id": 45,
                            "image": null,
                            "coords": "225, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                            "degrees": 6,
                            "title_bg": "1",
                            "slug_bg": "1",
                            "seo_title_bg": "1 | Меркурий 99",
                            "seo_description_bg": null,
                            "seo_keywords_bg": null,
                            "hide_sitemap_bg": 0,
                            "title_en": "1",
                            "slug_en": "1",
                            "seo_title_en": "1 | Mercury 99",
                            "seo_description_en": null,
                            "seo_keywords_en": null,
                            "hide_sitemap_en": 0,
                            "building": {
                                "id": 1,
                                "slug_bg": "starlight",
                                "slug_en": "starlight"
                            },
                            "entrance": {
                                "id": 11,
                                "slug_bg": "b",
                                "slug_en": "b"
                            },
                            "apartments": {
                                "data": [
                                    {
                                        "id": 195,
                                        "coords": "",
                                        "degrees": null,
                                        "status": 1,
                                        "floor_for_filters": null,
                                        "rooms": 3,
                                        "total_area": "150.86",
                                        "living_area": "0",
                                        "price": 141000,
                                        "price_m2": 935,
                                        "image": null,
                                        "image2": null,
                                        "mezonet": 0,
                                        "panorama": 0,
                                        "pdf": null,
                                        "gallery": null,
                                        "title_bg": "Апартамент 5",
                                        "text_bg": "",
                                        "details_bg": null,
                                        "slug_bg": "apartament-5",
                                        "seo_title_bg": "Апартамент 5 | Меркурий 99",
                                        "seo_description_bg": null,
                                        "seo_keywords_bg": null,
                                        "hide_sitemap_bg": 0,
                                        "title_en": "Apartment 5",
                                        "text_en": "",
                                        "details_en": null,
                                        "slug_en": "apartment-5",
                                        "seo_title_en": "Apartment 5 | Mercury 99",
                                        "seo_description_en": null,
                                        "seo_keywords_en": null,
                                        "hide_sitemap_en": 0,
                                        "building": {
                                            "id": 1,
                                            "slug_bg": "starlight",
                                            "slug_en": "starlight"
                                        },
                                        "entrance": {
                                            "id": 11,
                                            "slug_bg": "b",
                                            "slug_en": "b"
                                        },
                                        "floor": {
                                            "id": 11,
                                            "slug_bg": "1",
                                            "slug_en": "1"
                                        }
                                    },
                                    {
                                        "id": 196,
                                        "coords": "",
                                        "degrees": null,
                                        "status": 1,
                                        "floor_for_filters": null,
                                        "rooms": 1,
                                        "total_area": "121.26",
                                        "living_area": "0",
                                        "price": 100000,
                                        "price_m2": 825,
                                        "image": null,
                                        "image2": null,
                                        "mezonet": 0,
                                        "panorama": 0,
                                        "pdf": null,
                                        "gallery": null,
                                        "title_bg": "Апартамент 6",
                                        "text_bg": "",
                                        "details_bg": null,
                                        "slug_bg": "apartament-6",
                                        "seo_title_bg": "Апартамент 6 | Меркурий 99",
                                        "seo_description_bg": null,
                                        "seo_keywords_bg": null,
                                        "hide_sitemap_bg": 0,
                                        "title_en": "Apartment 6",
                                        "text_en": "",
                                        "details_en": null,
                                        "slug_en": "apartment-6",
                                        "seo_title_en": "Apartment 6 | Mercury 99",
                                        "seo_description_en": null,
                                        "seo_keywords_en": null,
                                        "hide_sitemap_en": 0,
                                        "building": {
                                            "id": 1,
                                            "slug_bg": "starlight",
                                            "slug_en": "starlight"
                                        },
                                        "entrance": {
                                            "id": 11,
                                            "slug_bg": "b",
                                            "slug_en": "b"
                                        },
                                        "floor": {
                                            "id": 11,
                                            "slug_bg": "1",
                                            "slug_en": "1"
                                        }
                                    }
                                ],
                                "links": {
                                    "self": "link-value"
                                }
                            }
                        },
                        {
                            "id": 46,
                            "image": null,
                            "coords": "325, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                            "degrees": 6,
                            "title_bg": "2",
                            "slug_bg": "2",
                            "seo_title_bg": "2 | Меркурий 99",
                            "seo_description_bg": null,
                            "seo_keywords_bg": null,
                            "hide_sitemap_bg": 0,
                            "title_en": "2",
                            "slug_en": "2",
                            "seo_title_en": "2 | Mercury 99",
                            "seo_description_en": null,
                            "seo_keywords_en": null,
                            "hide_sitemap_en": 0,
                            "building": {
                                "id": 1,
                                "slug_bg": "starlight",
                                "slug_en": "starlight"
                            },
                            "entrance": {
                                "id": 11,
                                "slug_bg": "b",
                                "slug_en": "b"
                            },
                            "apartments": {
                                "data": [
                                    {
                                        "id": 197,
                                        "coords": "",
                                        "degrees": null,
                                        "status": 3,
                                        "floor_for_filters": null,
                                        "rooms": 2,
                                        "total_area": "158.17",
                                        "living_area": "0",
                                        "price": 141000,
                                        "price_m2": 891,
                                        "image": null,
                                        "image2": null,
                                        "mezonet": 1,
                                        "panorama": 0,
                                        "pdf": null,
                                        "gallery": null,
                                        "title_bg": "Апартамент 7",
                                        "text_bg": "",
                                        "details_bg": null,
                                        "slug_bg": "apartament-7",
                                        "seo_title_bg": "Апартамент 7 | Меркурий 99",
                                        "seo_description_bg": null,
                                        "seo_keywords_bg": null,
                                        "hide_sitemap_bg": 0,
                                        "title_en": "Apartment 7",
                                        "text_en": "",
                                        "details_en": null,
                                        "slug_en": "apartment-7",
                                        "seo_title_en": "Apartment 7 | Mercury 99",
                                        "seo_description_en": null,
                                        "seo_keywords_en": null,
                                        "hide_sitemap_en": 0,
                                        "building": {
                                            "id": 1,
                                            "slug_bg": "starlight",
                                            "slug_en": "starlight"
                                        },
                                        "entrance": {
                                            "id": 11,
                                            "slug_bg": "b",
                                            "slug_en": "b"
                                        },
                                        "floor": {
                                            "id": 11,
                                            "slug_bg": "2",
                                            "slug_en": "2"
                                        }
                                    }
                                ],
                                "links": {
                                    "self": "link-value"
                                }
                            }
                        }
                    ],
                    "links": {
                        "self": "link-value"
                    }
                },
                "apartments": {
                    "data": [
                        {
                            "id": 1,
                            "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                            "degrees": null,
                            "status": 1,
                            "floor_for_filters": null,
                            "rooms": 2,
                            "total_area": "68.75",
                            "living_area": "0",
                            "price": 100000,
                            "price_m2": 1455,
                            "image": null,
                            "image2": null,
                            "mezonet": 0,
                            "panorama": 0,
                            "pdf": null,
                            "gallery": null,
                            "title_bg": "Апартамент 1",
                            "text_bg": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                            "details_bg": null,
                            "slug_bg": "apartament-1",
                            "seo_title_bg": "Апартамент 1 | Меркурий 99",
                            "seo_description_bg": null,
                            "seo_keywords_bg": null,
                            "hide_sitemap_bg": 0,
                            "title_en": "Apartment 1",
                            "text_en": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                            "details_en": null,
                            "slug_en": "apartment-1",
                            "seo_title_en": "Apartment 1 | Mercury 99",
                            "seo_description_en": null,
                            "seo_keywords_en": null,
                            "hide_sitemap_en": 0,
                            "building": {
                                "id": 1,
                                "slug_bg": "starlight",
                                "slug_en": "starlight"
                            },
                            "entrance": {
                                "id": 1,
                                "slug_bg": "a",
                                "slug_en": "a"
                            },
                            "floor": {
                                "id": 1,
                                "slug_bg": "1",
                                "slug_en": "1"
                            }
                        },
                        {
                            "id": 192,
                            "coords": "",
                            "degrees": null,
                            "status": 1,
                            "floor_for_filters": null,
                            "rooms": 3,
                            "total_area": "121.26",
                            "living_area": "0",
                            "price": 136000,
                            "price_m2": 1122,
                            "image": null,
                            "image2": null,
                            "mezonet": 0,
                            "panorama": 0,
                            "pdf": null,
                            "gallery": null,
                            "title_bg": "Апартамент 2",
                            "text_bg": "",
                            "details_bg": null,
                            "slug_bg": "apartament-2",
                            "seo_title_bg": "Апартамент 2 | Меркурий 99",
                            "seo_description_bg": null,
                            "seo_keywords_bg": null,
                            "hide_sitemap_bg": 0,
                            "title_en": "Apartment 2",
                            "text_en": "",
                            "details_en": null,
                            "slug_en": "apartment-2",
                            "seo_title_en": "Apartment 2 | Mercury 99",
                            "seo_description_en": null,
                            "seo_keywords_en": null,
                            "hide_sitemap_en": 0,
                            "building": {
                                "id": 1,
                                "slug_bg": "starlight",
                                "slug_en": "starlight"
                            },
                            "entrance": {
                                "id": 1,
                                "slug_bg": "a",
                                "slug_en": "a"
                            },
                            "floor": {
                                "id": 1,
                                "slug_bg": "1",
                                "slug_en": "1"
                            }
                        },
                        {
                            "id": 193,
                            "coords": "",
                            "degrees": null,
                            "status": 2,
                            "floor_for_filters": null,
                            "rooms": 1,
                            "total_area": "80.65",
                            "living_area": "0",
                            "price": 136000,
                            "price_m2": 1686,
                            "image": null,
                            "image2": null,
                            "mezonet": 0,
                            "panorama": 0,
                            "pdf": null,
                            "gallery": null,
                            "title_bg": "Апартамент 4",
                            "text_bg": "",
                            "details_bg": null,
                            "slug_bg": "apartament-4",
                            "seo_title_bg": "Апартамент 4 | Меркурий 99",
                            "seo_description_bg": null,
                            "seo_keywords_bg": null,
                            "hide_sitemap_bg": 0,
                            "title_en": "Apartment 4",
                            "text_en": "",
                            "details_en": null,
                            "slug_en": "apartment-4",
                            "seo_title_en": "Apartment 4 | Mercury 99",
                            "seo_description_en": null,
                            "seo_keywords_en": null,
                            "hide_sitemap_en": 0,
                            "building": {
                                "id": 1,
                                "slug_bg": "starlight",
                                "slug_en": "starlight"
                            },
                            "entrance": {
                                "id": 1,
                                "slug_bg": "a",
                                "slug_en": "a"
                            },
                            "floor": {
                                "id": 1,
                                "slug_bg": "2",
                                "slug_en": "2"
                            }
                        },
                        {
                            "id": 194,
                            "coords": "",
                            "degrees": null,
                            "status": 1,
                            "floor_for_filters": null,
                            "rooms": 1,
                            "total_area": "80.65",
                            "living_area": "0",
                            "price": 122500,
                            "price_m2": 1519,
                            "image": null,
                            "image2": null,
                            "mezonet": 0,
                            "panorama": 0,
                            "pdf": null,
                            "gallery": null,
                            "title_bg": "Апартамент 3",
                            "text_bg": "",
                            "details_bg": null,
                            "slug_bg": "apartament-3",
                            "seo_title_bg": "Апартамент 3 | Меркурий 99",
                            "seo_description_bg": null,
                            "seo_keywords_bg": null,
                            "hide_sitemap_bg": 0,
                            "title_en": "Apartment 3",
                            "text_en": "",
                            "details_en": null,
                            "slug_en": "apartment-3",
                            "seo_title_en": "Apartment 3 | Mercury 99",
                            "seo_description_en": null,
                            "seo_keywords_en": null,
                            "hide_sitemap_en": 0,
                            "building": {
                                "id": 1,
                                "slug_bg": "starlight",
                                "slug_en": "starlight"
                            },
                            "entrance": {
                                "id": 1,
                                "slug_bg": "a",
                                "slug_en": "a"
                            },
                            "floor": {
                                "id": 1,
                                "slug_bg": "2",
                                "slug_en": "2"
                            }
                        },
                        {
                            "id": 195,
                            "coords": "",
                            "degrees": null,
                            "status": 1,
                            "floor_for_filters": null,
                            "rooms": 3,
                            "total_area": "150.86",
                            "living_area": "0",
                            "price": 141000,
                            "price_m2": 935,
                            "image": null,
                            "image2": null,
                            "mezonet": 0,
                            "panorama": 0,
                            "pdf": null,
                            "gallery": null,
                            "title_bg": "Апартамент 5",
                            "text_bg": "",
                            "details_bg": null,
                            "slug_bg": "apartament-5",
                            "seo_title_bg": "Апартамент 5 | Меркурий 99",
                            "seo_description_bg": null,
                            "seo_keywords_bg": null,
                            "hide_sitemap_bg": 0,
                            "title_en": "Apartment 5",
                            "text_en": "",
                            "details_en": null,
                            "slug_en": "apartment-5",
                            "seo_title_en": "Apartment 5 | Mercury 99",
                            "seo_description_en": null,
                            "seo_keywords_en": null,
                            "hide_sitemap_en": 0,
                            "building": {
                                "id": 1,
                                "slug_bg": "starlight",
                                "slug_en": "starlight"
                            },
                            "entrance": {
                                "id": 11,
                                "slug_bg": "b",
                                "slug_en": "b"
                            },
                            "floor": {
                                "id": 11,
                                "slug_bg": "1",
                                "slug_en": "1"
                            }
                        },
                        {
                            "id": 196,
                            "coords": "",
                            "degrees": null,
                            "status": 1,
                            "floor_for_filters": null,
                            "rooms": 1,
                            "total_area": "121.26",
                            "living_area": "0",
                            "price": 100000,
                            "price_m2": 825,
                            "image": null,
                            "image2": null,
                            "mezonet": 0,
                            "panorama": 0,
                            "pdf": null,
                            "gallery": null,
                            "title_bg": "Апартамент 6",
                            "text_bg": "",
                            "details_bg": null,
                            "slug_bg": "apartament-6",
                            "seo_title_bg": "Апартамент 6 | Меркурий 99",
                            "seo_description_bg": null,
                            "seo_keywords_bg": null,
                            "hide_sitemap_bg": 0,
                            "title_en": "Apartment 6",
                            "text_en": "",
                            "details_en": null,
                            "slug_en": "apartment-6",
                            "seo_title_en": "Apartment 6 | Mercury 99",
                            "seo_description_en": null,
                            "seo_keywords_en": null,
                            "hide_sitemap_en": 0,
                            "building": {
                                "id": 1,
                                "slug_bg": "starlight",
                                "slug_en": "starlight"
                            },
                            "entrance": {
                                "id": 11,
                                "slug_bg": "b",
                                "slug_en": "b"
                            },
                            "floor": {
                                "id": 11,
                                "slug_bg": "1",
                                "slug_en": "1"
                            }
                        },
                        {
                            "id": 197,
                            "coords": "",
                            "degrees": null,
                            "status": 3,
                            "floor_for_filters": null,
                            "rooms": 2,
                            "total_area": "158.17",
                            "living_area": "0",
                            "price": 141000,
                            "price_m2": 891,
                            "image": null,
                            "image2": null,
                            "mezonet": 1,
                            "panorama": 0,
                            "pdf": null,
                            "gallery": null,
                            "title_bg": "Апартамент 7",
                            "text_bg": "",
                            "details_bg": null,
                            "slug_bg": "apartament-7",
                            "seo_title_bg": "Апартамент 7 | Меркурий 99",
                            "seo_description_bg": null,
                            "seo_keywords_bg": null,
                            "hide_sitemap_bg": 0,
                            "title_en": "Apartment 7",
                            "text_en": "",
                            "details_en": null,
                            "slug_en": "apartment-7",
                            "seo_title_en": "Apartment 7 | Mercury 99",
                            "seo_description_en": null,
                            "seo_keywords_en": null,
                            "hide_sitemap_en": 0,
                            "building": {
                                "id": 1,
                                "slug_bg": "starlight",
                                "slug_en": "starlight"
                            },
                            "entrance": {
                                "id": 11,
                                "slug_bg": "b",
                                "slug_en": "b"
                            },
                            "floor": {
                                "id": 11,
                                "slug_bg": "2",
                                "slug_en": "2"
                            }
                        }
                    ],
                    "links": {
                        "self": "link-value"
                    }
                }
            },
            "apartments": {
                "data": [
                    {
                        "id": 1,
                        "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                        "degrees": null,
                        "status": 1,
                        "floor_for_filters": null,
                        "rooms": 2,
                        "total_area": "68.75",
                        "living_area": "0",
                        "price": 100000,
                        "price_m2": 1455,
                        "image": null,
                        "image2": null,
                        "mezonet": 0,
                        "panorama": 0,
                        "pdf": null,
                        "gallery": null,
                        "title_bg": "Апартамент 1",
                        "text_bg": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                        "details_bg": null,
                        "slug_bg": "apartament-1",
                        "seo_title_bg": "Апартамент 1 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "Apartment 1",
                        "text_en": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                        "details_en": null,
                        "slug_en": "apartment-1",
                        "seo_title_en": "Apartment 1 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 1,
                            "slug_bg": "a",
                            "slug_en": "a"
                        },
                        "floor": {
                            "id": 1,
                            "slug_bg": "1",
                            "slug_en": "1"
                        }
                    },
                    {
                        "id": 192,
                        "coords": "",
                        "degrees": null,
                        "status": 1,
                        "floor_for_filters": null,
                        "rooms": 3,
                        "total_area": "121.26",
                        "living_area": "0",
                        "price": 136000,
                        "price_m2": 1122,
                        "image": null,
                        "image2": null,
                        "mezonet": 0,
                        "panorama": 0,
                        "pdf": null,
                        "gallery": null,
                        "title_bg": "Апартамент 2",
                        "text_bg": "",
                        "details_bg": null,
                        "slug_bg": "apartament-2",
                        "seo_title_bg": "Апартамент 2 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "Apartment 2",
                        "text_en": "",
                        "details_en": null,
                        "slug_en": "apartment-2",
                        "seo_title_en": "Apartment 2 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 1,
                            "slug_bg": "a",
                            "slug_en": "a"
                        },
                        "floor": {
                            "id": 1,
                            "slug_bg": "1",
                            "slug_en": "1"
                        }
                    }
                ],
                "links": {
                    "self": "link-value"
                }
            }
        },
        "building": {
            "id": 1,
            "image": "http:\/\/localhost\/uploads\/images\/big\/17_build-starlight.jpg",
            "thumb": null,
            "pdf": null,
            "map": "http:\/\/localhost\/uploads\/images\/big\/16_map.jpg",
            "status": 1,
            "google_map": "https:\/\/www.google.com\/maps\/embed?pb=!1m17!1m8!1m3!1d11723.450867031348!2d23.304417599999997!3d42.72779635!3m2!1i1024!2i768!4f13.1!4m6!3e0!4m3!3m2!1d42.7293567!2d23.2992676!4m0!5e0!3m2!1sbg!2sbg!4v1539100876083",
            "use_svg": 0,
            "gallery": null,
            "title_bg": "Старлайт Тестова",
            "annonce_bg": "Lorem Ipsum е елементарен примерен текст, използван в печатарската и типографската индустрия.",
            "text_bg": "<p>A collection of textile samples lay spread out on the table - Samsa was a travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer. Gregor then turned to look out the window at the dull weather.&nbsp;A collection of textile samples lay spread out on the table - Samsa was a travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer. Gregor then turned to look out the window at the dull weather. &nbsp;<\/p>\r\n\r\n<p>A collection of textile samples lay spread out on the table - Samsa was a travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer. Gregor then turned to look out the window at the dull weather.<\/p>",
            "slug_bg": "starlight",
            "seo_title_bg": "Старлайт Тестова | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "Starlight Testing",
            "annonce_en": "Gregor then turned to look out the window at the dull weather.",
            "text_en": "<p>A collection of textile samples lay spread out on the table - Samsa was a travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer. Gregor then turned to look out the window at the dull weather.&nbsp;A collection of textile samples lay spread out on the table - Samsa was a travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer. Gregor then turned to look out the window at the dull weather. &nbsp;<\/p>\r\n\r\n<p>A collection of textile samples lay spread out on the table - Samsa was a travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer. Gregor then turned to look out the window at the dull weather.<\/p>",
            "slug_en": "starlight",
            "seo_title_en": "Starlight Testing | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0,
            "prev_building": null,
            "next_building": null,
            "entrances": {
                "data": [
                    {
                        "id": 1,
                        "image": null,
                        "coords": "coords",
                        "title_bg": "A",
                        "slug_bg": "a",
                        "seo_title_bg": "A | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "A",
                        "slug_en": "a",
                        "seo_title_en": "A | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "floors": {
                            "data": [
                                {
                                    "id": 1,
                                    "image": "http:\/\/localhost\/uploads\/images\/big\/57_floor1.png",
                                    "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                                    "degrees": 6,
                                    "title_bg": "1",
                                    "slug_bg": "1",
                                    "seo_title_bg": "1 | Меркурий 99",
                                    "seo_description_bg": null,
                                    "seo_keywords_bg": null,
                                    "hide_sitemap_bg": 0,
                                    "title_en": "1",
                                    "slug_en": "1",
                                    "seo_title_en": "1 | Mercury 99",
                                    "seo_description_en": null,
                                    "seo_keywords_en": null,
                                    "hide_sitemap_en": 0,
                                    "building": {
                                        "id": 1,
                                        "slug_bg": "starlight",
                                        "slug_en": "starlight"
                                    },
                                    "entrance": {
                                        "id": 1,
                                        "slug_bg": "a",
                                        "slug_en": "a"
                                    },
                                    "apartments": {
                                        "data": [
                                            {
                                                "id": 1,
                                                "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                                                "degrees": null,
                                                "status": 1,
                                                "floor_for_filters": null,
                                                "rooms": 2,
                                                "total_area": "68.75",
                                                "living_area": "0",
                                                "price": 100000,
                                                "price_m2": 1455,
                                                "image": null,
                                                "image2": null,
                                                "mezonet": 0,
                                                "panorama": 0,
                                                "pdf": null,
                                                "gallery": null,
                                                "title_bg": "Апартамент 1",
                                                "text_bg": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                                                "details_bg": null,
                                                "slug_bg": "apartament-1",
                                                "seo_title_bg": "Апартамент 1 | Меркурий 99",
                                                "seo_description_bg": null,
                                                "seo_keywords_bg": null,
                                                "hide_sitemap_bg": 0,
                                                "title_en": "Apartment 1",
                                                "text_en": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                                                "details_en": null,
                                                "slug_en": "apartment-1",
                                                "seo_title_en": "Apartment 1 | Mercury 99",
                                                "seo_description_en": null,
                                                "seo_keywords_en": null,
                                                "hide_sitemap_en": 0,
                                                "building": {
                                                    "id": 1,
                                                    "slug_bg": "starlight",
                                                    "slug_en": "starlight"
                                                },
                                                "entrance": {
                                                    "id": 1,
                                                    "slug_bg": "a",
                                                    "slug_en": "a"
                                                },
                                                "floor": {
                                                    "id": 1,
                                                    "slug_bg": "1",
                                                    "slug_en": "1"
                                                }
                                            },
                                            {
                                                "id": 192,
                                                "coords": "",
                                                "degrees": null,
                                                "status": 1,
                                                "floor_for_filters": null,
                                                "rooms": 3,
                                                "total_area": "121.26",
                                                "living_area": "0",
                                                "price": 136000,
                                                "price_m2": 1122,
                                                "image": null,
                                                "image2": null,
                                                "mezonet": 0,
                                                "panorama": 0,
                                                "pdf": null,
                                                "gallery": null,
                                                "title_bg": "Апартамент 2",
                                                "text_bg": "",
                                                "details_bg": null,
                                                "slug_bg": "apartament-2",
                                                "seo_title_bg": "Апартамент 2 | Меркурий 99",
                                                "seo_description_bg": null,
                                                "seo_keywords_bg": null,
                                                "hide_sitemap_bg": 0,
                                                "title_en": "Apartment 2",
                                                "text_en": "",
                                                "details_en": null,
                                                "slug_en": "apartment-2",
                                                "seo_title_en": "Apartment 2 | Mercury 99",
                                                "seo_description_en": null,
                                                "seo_keywords_en": null,
                                                "hide_sitemap_en": 0,
                                                "building": {
                                                    "id": 1,
                                                    "slug_bg": "starlight",
                                                    "slug_en": "starlight"
                                                },
                                                "entrance": {
                                                    "id": 1,
                                                    "slug_bg": "a",
                                                    "slug_en": "a"
                                                },
                                                "floor": {
                                                    "id": 1,
                                                    "slug_bg": "1",
                                                    "slug_en": "1"
                                                }
                                            }
                                        ],
                                        "links": {
                                            "self": "link-value"
                                        }
                                    }
                                },
                                {
                                    "id": 44,
                                    "image": null,
                                    "coords": "125, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                                    "degrees": 6,
                                    "title_bg": "2",
                                    "slug_bg": "2",
                                    "seo_title_bg": "2 | Меркурий 99",
                                    "seo_description_bg": null,
                                    "seo_keywords_bg": null,
                                    "hide_sitemap_bg": 0,
                                    "title_en": "2",
                                    "slug_en": "2",
                                    "seo_title_en": "2 | Mercury 99",
                                    "seo_description_en": null,
                                    "seo_keywords_en": null,
                                    "hide_sitemap_en": 0,
                                    "building": {
                                        "id": 1,
                                        "slug_bg": "starlight",
                                        "slug_en": "starlight"
                                    },
                                    "entrance": {
                                        "id": 1,
                                        "slug_bg": "a",
                                        "slug_en": "a"
                                    },
                                    "apartments": {
                                        "data": [
                                            {
                                                "id": 193,
                                                "coords": "",
                                                "degrees": null,
                                                "status": 2,
                                                "floor_for_filters": null,
                                                "rooms": 1,
                                                "total_area": "80.65",
                                                "living_area": "0",
                                                "price": 136000,
                                                "price_m2": 1686,
                                                "image": null,
                                                "image2": null,
                                                "mezonet": 0,
                                                "panorama": 0,
                                                "pdf": null,
                                                "gallery": null,
                                                "title_bg": "Апартамент 4",
                                                "text_bg": "",
                                                "details_bg": null,
                                                "slug_bg": "apartament-4",
                                                "seo_title_bg": "Апартамент 4 | Меркурий 99",
                                                "seo_description_bg": null,
                                                "seo_keywords_bg": null,
                                                "hide_sitemap_bg": 0,
                                                "title_en": "Apartment 4",
                                                "text_en": "",
                                                "details_en": null,
                                                "slug_en": "apartment-4",
                                                "seo_title_en": "Apartment 4 | Mercury 99",
                                                "seo_description_en": null,
                                                "seo_keywords_en": null,
                                                "hide_sitemap_en": 0,
                                                "building": {
                                                    "id": 1,
                                                    "slug_bg": "starlight",
                                                    "slug_en": "starlight"
                                                },
                                                "entrance": {
                                                    "id": 1,
                                                    "slug_bg": "a",
                                                    "slug_en": "a"
                                                },
                                                "floor": {
                                                    "id": 1,
                                                    "slug_bg": "2",
                                                    "slug_en": "2"
                                                }
                                            },
                                            {
                                                "id": 194,
                                                "coords": "",
                                                "degrees": null,
                                                "status": 1,
                                                "floor_for_filters": null,
                                                "rooms": 1,
                                                "total_area": "80.65",
                                                "living_area": "0",
                                                "price": 122500,
                                                "price_m2": 1519,
                                                "image": null,
                                                "image2": null,
                                                "mezonet": 0,
                                                "panorama": 0,
                                                "pdf": null,
                                                "gallery": null,
                                                "title_bg": "Апартамент 3",
                                                "text_bg": "",
                                                "details_bg": null,
                                                "slug_bg": "apartament-3",
                                                "seo_title_bg": "Апартамент 3 | Меркурий 99",
                                                "seo_description_bg": null,
                                                "seo_keywords_bg": null,
                                                "hide_sitemap_bg": 0,
                                                "title_en": "Apartment 3",
                                                "text_en": "",
                                                "details_en": null,
                                                "slug_en": "apartment-3",
                                                "seo_title_en": "Apartment 3 | Mercury 99",
                                                "seo_description_en": null,
                                                "seo_keywords_en": null,
                                                "hide_sitemap_en": 0,
                                                "building": {
                                                    "id": 1,
                                                    "slug_bg": "starlight",
                                                    "slug_en": "starlight"
                                                },
                                                "entrance": {
                                                    "id": 1,
                                                    "slug_bg": "a",
                                                    "slug_en": "a"
                                                },
                                                "floor": {
                                                    "id": 1,
                                                    "slug_bg": "2",
                                                    "slug_en": "2"
                                                }
                                            }
                                        ],
                                        "links": {
                                            "self": "link-value"
                                        }
                                    }
                                }
                            ],
                            "links": {
                                "self": "link-value"
                            }
                        }
                    },
                    {
                        "id": 11,
                        "image": null,
                        "coords": "coords",
                        "title_bg": "Б",
                        "slug_bg": "b",
                        "seo_title_bg": "Б | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "B",
                        "slug_en": "b",
                        "seo_title_en": "B | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "floors": {
                            "data": [
                                {
                                    "id": 45,
                                    "image": null,
                                    "coords": "225, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                                    "degrees": 6,
                                    "title_bg": "1",
                                    "slug_bg": "1",
                                    "seo_title_bg": "1 | Меркурий 99",
                                    "seo_description_bg": null,
                                    "seo_keywords_bg": null,
                                    "hide_sitemap_bg": 0,
                                    "title_en": "1",
                                    "slug_en": "1",
                                    "seo_title_en": "1 | Mercury 99",
                                    "seo_description_en": null,
                                    "seo_keywords_en": null,
                                    "hide_sitemap_en": 0,
                                    "building": {
                                        "id": 1,
                                        "slug_bg": "starlight",
                                        "slug_en": "starlight"
                                    },
                                    "entrance": {
                                        "id": 11,
                                        "slug_bg": "b",
                                        "slug_en": "b"
                                    },
                                    "apartments": {
                                        "data": [
                                            {
                                                "id": 195,
                                                "coords": "",
                                                "degrees": null,
                                                "status": 1,
                                                "floor_for_filters": null,
                                                "rooms": 3,
                                                "total_area": "150.86",
                                                "living_area": "0",
                                                "price": 141000,
                                                "price_m2": 935,
                                                "image": null,
                                                "image2": null,
                                                "mezonet": 0,
                                                "panorama": 0,
                                                "pdf": null,
                                                "gallery": null,
                                                "title_bg": "Апартамент 5",
                                                "text_bg": "",
                                                "details_bg": null,
                                                "slug_bg": "apartament-5",
                                                "seo_title_bg": "Апартамент 5 | Меркурий 99",
                                                "seo_description_bg": null,
                                                "seo_keywords_bg": null,
                                                "hide_sitemap_bg": 0,
                                                "title_en": "Apartment 5",
                                                "text_en": "",
                                                "details_en": null,
                                                "slug_en": "apartment-5",
                                                "seo_title_en": "Apartment 5 | Mercury 99",
                                                "seo_description_en": null,
                                                "seo_keywords_en": null,
                                                "hide_sitemap_en": 0,
                                                "building": {
                                                    "id": 1,
                                                    "slug_bg": "starlight",
                                                    "slug_en": "starlight"
                                                },
                                                "entrance": {
                                                    "id": 11,
                                                    "slug_bg": "b",
                                                    "slug_en": "b"
                                                },
                                                "floor": {
                                                    "id": 11,
                                                    "slug_bg": "1",
                                                    "slug_en": "1"
                                                }
                                            },
                                            {
                                                "id": 196,
                                                "coords": "",
                                                "degrees": null,
                                                "status": 1,
                                                "floor_for_filters": null,
                                                "rooms": 1,
                                                "total_area": "121.26",
                                                "living_area": "0",
                                                "price": 100000,
                                                "price_m2": 825,
                                                "image": null,
                                                "image2": null,
                                                "mezonet": 0,
                                                "panorama": 0,
                                                "pdf": null,
                                                "gallery": null,
                                                "title_bg": "Апартамент 6",
                                                "text_bg": "",
                                                "details_bg": null,
                                                "slug_bg": "apartament-6",
                                                "seo_title_bg": "Апартамент 6 | Меркурий 99",
                                                "seo_description_bg": null,
                                                "seo_keywords_bg": null,
                                                "hide_sitemap_bg": 0,
                                                "title_en": "Apartment 6",
                                                "text_en": "",
                                                "details_en": null,
                                                "slug_en": "apartment-6",
                                                "seo_title_en": "Apartment 6 | Mercury 99",
                                                "seo_description_en": null,
                                                "seo_keywords_en": null,
                                                "hide_sitemap_en": 0,
                                                "building": {
                                                    "id": 1,
                                                    "slug_bg": "starlight",
                                                    "slug_en": "starlight"
                                                },
                                                "entrance": {
                                                    "id": 11,
                                                    "slug_bg": "b",
                                                    "slug_en": "b"
                                                },
                                                "floor": {
                                                    "id": 11,
                                                    "slug_bg": "1",
                                                    "slug_en": "1"
                                                }
                                            }
                                        ],
                                        "links": {
                                            "self": "link-value"
                                        }
                                    }
                                },
                                {
                                    "id": 46,
                                    "image": null,
                                    "coords": "325, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                                    "degrees": 6,
                                    "title_bg": "2",
                                    "slug_bg": "2",
                                    "seo_title_bg": "2 | Меркурий 99",
                                    "seo_description_bg": null,
                                    "seo_keywords_bg": null,
                                    "hide_sitemap_bg": 0,
                                    "title_en": "2",
                                    "slug_en": "2",
                                    "seo_title_en": "2 | Mercury 99",
                                    "seo_description_en": null,
                                    "seo_keywords_en": null,
                                    "hide_sitemap_en": 0,
                                    "building": {
                                        "id": 1,
                                        "slug_bg": "starlight",
                                        "slug_en": "starlight"
                                    },
                                    "entrance": {
                                        "id": 11,
                                        "slug_bg": "b",
                                        "slug_en": "b"
                                    },
                                    "apartments": {
                                        "data": [
                                            {
                                                "id": 197,
                                                "coords": "",
                                                "degrees": null,
                                                "status": 3,
                                                "floor_for_filters": null,
                                                "rooms": 2,
                                                "total_area": "158.17",
                                                "living_area": "0",
                                                "price": 141000,
                                                "price_m2": 891,
                                                "image": null,
                                                "image2": null,
                                                "mezonet": 1,
                                                "panorama": 0,
                                                "pdf": null,
                                                "gallery": null,
                                                "title_bg": "Апартамент 7",
                                                "text_bg": "",
                                                "details_bg": null,
                                                "slug_bg": "apartament-7",
                                                "seo_title_bg": "Апартамент 7 | Меркурий 99",
                                                "seo_description_bg": null,
                                                "seo_keywords_bg": null,
                                                "hide_sitemap_bg": 0,
                                                "title_en": "Apartment 7",
                                                "text_en": "",
                                                "details_en": null,
                                                "slug_en": "apartment-7",
                                                "seo_title_en": "Apartment 7 | Mercury 99",
                                                "seo_description_en": null,
                                                "seo_keywords_en": null,
                                                "hide_sitemap_en": 0,
                                                "building": {
                                                    "id": 1,
                                                    "slug_bg": "starlight",
                                                    "slug_en": "starlight"
                                                },
                                                "entrance": {
                                                    "id": 11,
                                                    "slug_bg": "b",
                                                    "slug_en": "b"
                                                },
                                                "floor": {
                                                    "id": 11,
                                                    "slug_bg": "2",
                                                    "slug_en": "2"
                                                }
                                            }
                                        ],
                                        "links": {
                                            "self": "link-value"
                                        }
                                    }
                                }
                            ],
                            "links": {
                                "self": "link-value"
                            }
                        }
                    }
                ],
                "links": {
                    "self": "link-value"
                }
            },
            "floors": {
                "data": [
                    {
                        "id": 1,
                        "image": "http:\/\/localhost\/uploads\/images\/big\/57_floor1.png",
                        "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                        "degrees": 6,
                        "title_bg": "1",
                        "slug_bg": "1",
                        "seo_title_bg": "1 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "1",
                        "slug_en": "1",
                        "seo_title_en": "1 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 1,
                            "slug_bg": "a",
                            "slug_en": "a"
                        },
                        "apartments": {
                            "data": [
                                {
                                    "id": 1,
                                    "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                                    "degrees": null,
                                    "status": 1,
                                    "floor_for_filters": null,
                                    "rooms": 2,
                                    "total_area": "68.75",
                                    "living_area": "0",
                                    "price": 100000,
                                    "price_m2": 1455,
                                    "image": null,
                                    "image2": null,
                                    "mezonet": 0,
                                    "panorama": 0,
                                    "pdf": null,
                                    "gallery": null,
                                    "title_bg": "Апартамент 1",
                                    "text_bg": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                                    "details_bg": null,
                                    "slug_bg": "apartament-1",
                                    "seo_title_bg": "Апартамент 1 | Меркурий 99",
                                    "seo_description_bg": null,
                                    "seo_keywords_bg": null,
                                    "hide_sitemap_bg": 0,
                                    "title_en": "Apartment 1",
                                    "text_en": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                                    "details_en": null,
                                    "slug_en": "apartment-1",
                                    "seo_title_en": "Apartment 1 | Mercury 99",
                                    "seo_description_en": null,
                                    "seo_keywords_en": null,
                                    "hide_sitemap_en": 0,
                                    "building": {
                                        "id": 1,
                                        "slug_bg": "starlight",
                                        "slug_en": "starlight"
                                    },
                                    "entrance": {
                                        "id": 1,
                                        "slug_bg": "a",
                                        "slug_en": "a"
                                    },
                                    "floor": {
                                        "id": 1,
                                        "slug_bg": "1",
                                        "slug_en": "1"
                                    }
                                },
                                {
                                    "id": 192,
                                    "coords": "",
                                    "degrees": null,
                                    "status": 1,
                                    "floor_for_filters": null,
                                    "rooms": 3,
                                    "total_area": "121.26",
                                    "living_area": "0",
                                    "price": 136000,
                                    "price_m2": 1122,
                                    "image": null,
                                    "image2": null,
                                    "mezonet": 0,
                                    "panorama": 0,
                                    "pdf": null,
                                    "gallery": null,
                                    "title_bg": "Апартамент 2",
                                    "text_bg": "",
                                    "details_bg": null,
                                    "slug_bg": "apartament-2",
                                    "seo_title_bg": "Апартамент 2 | Меркурий 99",
                                    "seo_description_bg": null,
                                    "seo_keywords_bg": null,
                                    "hide_sitemap_bg": 0,
                                    "title_en": "Apartment 2",
                                    "text_en": "",
                                    "details_en": null,
                                    "slug_en": "apartment-2",
                                    "seo_title_en": "Apartment 2 | Mercury 99",
                                    "seo_description_en": null,
                                    "seo_keywords_en": null,
                                    "hide_sitemap_en": 0,
                                    "building": {
                                        "id": 1,
                                        "slug_bg": "starlight",
                                        "slug_en": "starlight"
                                    },
                                    "entrance": {
                                        "id": 1,
                                        "slug_bg": "a",
                                        "slug_en": "a"
                                    },
                                    "floor": {
                                        "id": 1,
                                        "slug_bg": "1",
                                        "slug_en": "1"
                                    }
                                }
                            ],
                            "links": {
                                "self": "link-value"
                            }
                        }
                    },
                    {
                        "id": 44,
                        "image": null,
                        "coords": "125, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                        "degrees": 6,
                        "title_bg": "2",
                        "slug_bg": "2",
                        "seo_title_bg": "2 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "2",
                        "slug_en": "2",
                        "seo_title_en": "2 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 1,
                            "slug_bg": "a",
                            "slug_en": "a"
                        },
                        "apartments": {
                            "data": [
                                {
                                    "id": 193,
                                    "coords": "",
                                    "degrees": null,
                                    "status": 2,
                                    "floor_for_filters": null,
                                    "rooms": 1,
                                    "total_area": "80.65",
                                    "living_area": "0",
                                    "price": 136000,
                                    "price_m2": 1686,
                                    "image": null,
                                    "image2": null,
                                    "mezonet": 0,
                                    "panorama": 0,
                                    "pdf": null,
                                    "gallery": null,
                                    "title_bg": "Апартамент 4",
                                    "text_bg": "",
                                    "details_bg": null,
                                    "slug_bg": "apartament-4",
                                    "seo_title_bg": "Апартамент 4 | Меркурий 99",
                                    "seo_description_bg": null,
                                    "seo_keywords_bg": null,
                                    "hide_sitemap_bg": 0,
                                    "title_en": "Apartment 4",
                                    "text_en": "",
                                    "details_en": null,
                                    "slug_en": "apartment-4",
                                    "seo_title_en": "Apartment 4 | Mercury 99",
                                    "seo_description_en": null,
                                    "seo_keywords_en": null,
                                    "hide_sitemap_en": 0,
                                    "building": {
                                        "id": 1,
                                        "slug_bg": "starlight",
                                        "slug_en": "starlight"
                                    },
                                    "entrance": {
                                        "id": 1,
                                        "slug_bg": "a",
                                        "slug_en": "a"
                                    },
                                    "floor": {
                                        "id": 1,
                                        "slug_bg": "2",
                                        "slug_en": "2"
                                    }
                                },
                                {
                                    "id": 194,
                                    "coords": "",
                                    "degrees": null,
                                    "status": 1,
                                    "floor_for_filters": null,
                                    "rooms": 1,
                                    "total_area": "80.65",
                                    "living_area": "0",
                                    "price": 122500,
                                    "price_m2": 1519,
                                    "image": null,
                                    "image2": null,
                                    "mezonet": 0,
                                    "panorama": 0,
                                    "pdf": null,
                                    "gallery": null,
                                    "title_bg": "Апартамент 3",
                                    "text_bg": "",
                                    "details_bg": null,
                                    "slug_bg": "apartament-3",
                                    "seo_title_bg": "Апартамент 3 | Меркурий 99",
                                    "seo_description_bg": null,
                                    "seo_keywords_bg": null,
                                    "hide_sitemap_bg": 0,
                                    "title_en": "Apartment 3",
                                    "text_en": "",
                                    "details_en": null,
                                    "slug_en": "apartment-3",
                                    "seo_title_en": "Apartment 3 | Mercury 99",
                                    "seo_description_en": null,
                                    "seo_keywords_en": null,
                                    "hide_sitemap_en": 0,
                                    "building": {
                                        "id": 1,
                                        "slug_bg": "starlight",
                                        "slug_en": "starlight"
                                    },
                                    "entrance": {
                                        "id": 1,
                                        "slug_bg": "a",
                                        "slug_en": "a"
                                    },
                                    "floor": {
                                        "id": 1,
                                        "slug_bg": "2",
                                        "slug_en": "2"
                                    }
                                }
                            ],
                            "links": {
                                "self": "link-value"
                            }
                        }
                    },
                    {
                        "id": 45,
                        "image": null,
                        "coords": "225, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                        "degrees": 6,
                        "title_bg": "1",
                        "slug_bg": "1",
                        "seo_title_bg": "1 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "1",
                        "slug_en": "1",
                        "seo_title_en": "1 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 11,
                            "slug_bg": "b",
                            "slug_en": "b"
                        },
                        "apartments": {
                            "data": [
                                {
                                    "id": 195,
                                    "coords": "",
                                    "degrees": null,
                                    "status": 1,
                                    "floor_for_filters": null,
                                    "rooms": 3,
                                    "total_area": "150.86",
                                    "living_area": "0",
                                    "price": 141000,
                                    "price_m2": 935,
                                    "image": null,
                                    "image2": null,
                                    "mezonet": 0,
                                    "panorama": 0,
                                    "pdf": null,
                                    "gallery": null,
                                    "title_bg": "Апартамент 5",
                                    "text_bg": "",
                                    "details_bg": null,
                                    "slug_bg": "apartament-5",
                                    "seo_title_bg": "Апартамент 5 | Меркурий 99",
                                    "seo_description_bg": null,
                                    "seo_keywords_bg": null,
                                    "hide_sitemap_bg": 0,
                                    "title_en": "Apartment 5",
                                    "text_en": "",
                                    "details_en": null,
                                    "slug_en": "apartment-5",
                                    "seo_title_en": "Apartment 5 | Mercury 99",
                                    "seo_description_en": null,
                                    "seo_keywords_en": null,
                                    "hide_sitemap_en": 0,
                                    "building": {
                                        "id": 1,
                                        "slug_bg": "starlight",
                                        "slug_en": "starlight"
                                    },
                                    "entrance": {
                                        "id": 11,
                                        "slug_bg": "b",
                                        "slug_en": "b"
                                    },
                                    "floor": {
                                        "id": 11,
                                        "slug_bg": "1",
                                        "slug_en": "1"
                                    }
                                },
                                {
                                    "id": 196,
                                    "coords": "",
                                    "degrees": null,
                                    "status": 1,
                                    "floor_for_filters": null,
                                    "rooms": 1,
                                    "total_area": "121.26",
                                    "living_area": "0",
                                    "price": 100000,
                                    "price_m2": 825,
                                    "image": null,
                                    "image2": null,
                                    "mezonet": 0,
                                    "panorama": 0,
                                    "pdf": null,
                                    "gallery": null,
                                    "title_bg": "Апартамент 6",
                                    "text_bg": "",
                                    "details_bg": null,
                                    "slug_bg": "apartament-6",
                                    "seo_title_bg": "Апартамент 6 | Меркурий 99",
                                    "seo_description_bg": null,
                                    "seo_keywords_bg": null,
                                    "hide_sitemap_bg": 0,
                                    "title_en": "Apartment 6",
                                    "text_en": "",
                                    "details_en": null,
                                    "slug_en": "apartment-6",
                                    "seo_title_en": "Apartment 6 | Mercury 99",
                                    "seo_description_en": null,
                                    "seo_keywords_en": null,
                                    "hide_sitemap_en": 0,
                                    "building": {
                                        "id": 1,
                                        "slug_bg": "starlight",
                                        "slug_en": "starlight"
                                    },
                                    "entrance": {
                                        "id": 11,
                                        "slug_bg": "b",
                                        "slug_en": "b"
                                    },
                                    "floor": {
                                        "id": 11,
                                        "slug_bg": "1",
                                        "slug_en": "1"
                                    }
                                }
                            ],
                            "links": {
                                "self": "link-value"
                            }
                        }
                    },
                    {
                        "id": 46,
                        "image": null,
                        "coords": "325, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                        "degrees": 6,
                        "title_bg": "2",
                        "slug_bg": "2",
                        "seo_title_bg": "2 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "2",
                        "slug_en": "2",
                        "seo_title_en": "2 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 11,
                            "slug_bg": "b",
                            "slug_en": "b"
                        },
                        "apartments": {
                            "data": [
                                {
                                    "id": 197,
                                    "coords": "",
                                    "degrees": null,
                                    "status": 3,
                                    "floor_for_filters": null,
                                    "rooms": 2,
                                    "total_area": "158.17",
                                    "living_area": "0",
                                    "price": 141000,
                                    "price_m2": 891,
                                    "image": null,
                                    "image2": null,
                                    "mezonet": 1,
                                    "panorama": 0,
                                    "pdf": null,
                                    "gallery": null,
                                    "title_bg": "Апартамент 7",
                                    "text_bg": "",
                                    "details_bg": null,
                                    "slug_bg": "apartament-7",
                                    "seo_title_bg": "Апартамент 7 | Меркурий 99",
                                    "seo_description_bg": null,
                                    "seo_keywords_bg": null,
                                    "hide_sitemap_bg": 0,
                                    "title_en": "Apartment 7",
                                    "text_en": "",
                                    "details_en": null,
                                    "slug_en": "apartment-7",
                                    "seo_title_en": "Apartment 7 | Mercury 99",
                                    "seo_description_en": null,
                                    "seo_keywords_en": null,
                                    "hide_sitemap_en": 0,
                                    "building": {
                                        "id": 1,
                                        "slug_bg": "starlight",
                                        "slug_en": "starlight"
                                    },
                                    "entrance": {
                                        "id": 11,
                                        "slug_bg": "b",
                                        "slug_en": "b"
                                    },
                                    "floor": {
                                        "id": 11,
                                        "slug_bg": "2",
                                        "slug_en": "2"
                                    }
                                }
                            ],
                            "links": {
                                "self": "link-value"
                            }
                        }
                    }
                ],
                "links": {
                    "self": "link-value"
                }
            },
            "apartments": {
                "data": [
                    {
                        "id": 1,
                        "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
                        "degrees": null,
                        "status": 1,
                        "floor_for_filters": null,
                        "rooms": 2,
                        "total_area": "68.75",
                        "living_area": "0",
                        "price": 100000,
                        "price_m2": 1455,
                        "image": null,
                        "image2": null,
                        "mezonet": 0,
                        "panorama": 0,
                        "pdf": null,
                        "gallery": null,
                        "title_bg": "Апартамент 1",
                        "text_bg": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                        "details_bg": null,
                        "slug_bg": "apartament-1",
                        "seo_title_bg": "Апартамент 1 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "Apartment 1",
                        "text_en": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
                        "details_en": null,
                        "slug_en": "apartment-1",
                        "seo_title_en": "Apartment 1 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 1,
                            "slug_bg": "a",
                            "slug_en": "a"
                        },
                        "floor": {
                            "id": 1,
                            "slug_bg": "1",
                            "slug_en": "1"
                        }
                    },
                    {
                        "id": 192,
                        "coords": "",
                        "degrees": null,
                        "status": 1,
                        "floor_for_filters": null,
                        "rooms": 3,
                        "total_area": "121.26",
                        "living_area": "0",
                        "price": 136000,
                        "price_m2": 1122,
                        "image": null,
                        "image2": null,
                        "mezonet": 0,
                        "panorama": 0,
                        "pdf": null,
                        "gallery": null,
                        "title_bg": "Апартамент 2",
                        "text_bg": "",
                        "details_bg": null,
                        "slug_bg": "apartament-2",
                        "seo_title_bg": "Апартамент 2 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "Apartment 2",
                        "text_en": "",
                        "details_en": null,
                        "slug_en": "apartment-2",
                        "seo_title_en": "Apartment 2 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 1,
                            "slug_bg": "a",
                            "slug_en": "a"
                        },
                        "floor": {
                            "id": 1,
                            "slug_bg": "1",
                            "slug_en": "1"
                        }
                    },
                    {
                        "id": 193,
                        "coords": "",
                        "degrees": null,
                        "status": 2,
                        "floor_for_filters": null,
                        "rooms": 1,
                        "total_area": "80.65",
                        "living_area": "0",
                        "price": 136000,
                        "price_m2": 1686,
                        "image": null,
                        "image2": null,
                        "mezonet": 0,
                        "panorama": 0,
                        "pdf": null,
                        "gallery": null,
                        "title_bg": "Апартамент 4",
                        "text_bg": "",
                        "details_bg": null,
                        "slug_bg": "apartament-4",
                        "seo_title_bg": "Апартамент 4 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "Apartment 4",
                        "text_en": "",
                        "details_en": null,
                        "slug_en": "apartment-4",
                        "seo_title_en": "Apartment 4 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 1,
                            "slug_bg": "a",
                            "slug_en": "a"
                        },
                        "floor": {
                            "id": 1,
                            "slug_bg": "2",
                            "slug_en": "2"
                        }
                    },
                    {
                        "id": 194,
                        "coords": "",
                        "degrees": null,
                        "status": 1,
                        "floor_for_filters": null,
                        "rooms": 1,
                        "total_area": "80.65",
                        "living_area": "0",
                        "price": 122500,
                        "price_m2": 1519,
                        "image": null,
                        "image2": null,
                        "mezonet": 0,
                        "panorama": 0,
                        "pdf": null,
                        "gallery": null,
                        "title_bg": "Апартамент 3",
                        "text_bg": "",
                        "details_bg": null,
                        "slug_bg": "apartament-3",
                        "seo_title_bg": "Апартамент 3 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "Apartment 3",
                        "text_en": "",
                        "details_en": null,
                        "slug_en": "apartment-3",
                        "seo_title_en": "Apartment 3 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 1,
                            "slug_bg": "a",
                            "slug_en": "a"
                        },
                        "floor": {
                            "id": 1,
                            "slug_bg": "2",
                            "slug_en": "2"
                        }
                    },
                    {
                        "id": 195,
                        "coords": "",
                        "degrees": null,
                        "status": 1,
                        "floor_for_filters": null,
                        "rooms": 3,
                        "total_area": "150.86",
                        "living_area": "0",
                        "price": 141000,
                        "price_m2": 935,
                        "image": null,
                        "image2": null,
                        "mezonet": 0,
                        "panorama": 0,
                        "pdf": null,
                        "gallery": null,
                        "title_bg": "Апартамент 5",
                        "text_bg": "",
                        "details_bg": null,
                        "slug_bg": "apartament-5",
                        "seo_title_bg": "Апартамент 5 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "Apartment 5",
                        "text_en": "",
                        "details_en": null,
                        "slug_en": "apartment-5",
                        "seo_title_en": "Apartment 5 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 11,
                            "slug_bg": "b",
                            "slug_en": "b"
                        },
                        "floor": {
                            "id": 11,
                            "slug_bg": "1",
                            "slug_en": "1"
                        }
                    },
                    {
                        "id": 196,
                        "coords": "",
                        "degrees": null,
                        "status": 1,
                        "floor_for_filters": null,
                        "rooms": 1,
                        "total_area": "121.26",
                        "living_area": "0",
                        "price": 100000,
                        "price_m2": 825,
                        "image": null,
                        "image2": null,
                        "mezonet": 0,
                        "panorama": 0,
                        "pdf": null,
                        "gallery": null,
                        "title_bg": "Апартамент 6",
                        "text_bg": "",
                        "details_bg": null,
                        "slug_bg": "apartament-6",
                        "seo_title_bg": "Апартамент 6 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "Apartment 6",
                        "text_en": "",
                        "details_en": null,
                        "slug_en": "apartment-6",
                        "seo_title_en": "Apartment 6 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 11,
                            "slug_bg": "b",
                            "slug_en": "b"
                        },
                        "floor": {
                            "id": 11,
                            "slug_bg": "1",
                            "slug_en": "1"
                        }
                    },
                    {
                        "id": 197,
                        "coords": "",
                        "degrees": null,
                        "status": 3,
                        "floor_for_filters": null,
                        "rooms": 2,
                        "total_area": "158.17",
                        "living_area": "0",
                        "price": 141000,
                        "price_m2": 891,
                        "image": null,
                        "image2": null,
                        "mezonet": 1,
                        "panorama": 0,
                        "pdf": null,
                        "gallery": null,
                        "title_bg": "Апартамент 7",
                        "text_bg": "",
                        "details_bg": null,
                        "slug_bg": "apartament-7",
                        "seo_title_bg": "Апартамент 7 | Меркурий 99",
                        "seo_description_bg": null,
                        "seo_keywords_bg": null,
                        "hide_sitemap_bg": 0,
                        "title_en": "Apartment 7",
                        "text_en": "",
                        "details_en": null,
                        "slug_en": "apartment-7",
                        "seo_title_en": "Apartment 7 | Mercury 99",
                        "seo_description_en": null,
                        "seo_keywords_en": null,
                        "hide_sitemap_en": 0,
                        "building": {
                            "id": 1,
                            "slug_bg": "starlight",
                            "slug_en": "starlight"
                        },
                        "entrance": {
                            "id": 11,
                            "slug_bg": "b",
                            "slug_en": "b"
                        },
                        "floor": {
                            "id": 11,
                            "slug_bg": "2",
                            "slug_en": "2"
                        }
                    }
                ],
                "links": {
                    "self": "link-value"
                }
            }
        },
        "direction": {
            "id": 1,
            "image": null,
            "title_bg": "Юг",
            "title_en": "South"
        }
    }
}

HTTP Request

GET api/apartment/{id}

Get All Apartments.

Example request:

curl -X GET "http://mercury-api.imigix.com/api/apartments" \
-H "Accept: application/json"
var settings = {
    "async": true,
    "crossDomain": true,
    "url": "http://mercury-api.imigix.com/api/apartments",
    "method": "GET",
    "headers": {
        "accept": "application/json"
    }
}

$.ajax(settings).done(function (response) {
    console.log(response);
});

Example response:

{
    "data": [
        {
            "id": 1,
            "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
            "degrees": null,
            "status": 1,
            "floor_for_filters": null,
            "rooms": 2,
            "total_area": "68.75",
            "living_area": "0",
            "price": 100000,
            "price_m2": 1455,
            "image": null,
            "image2": null,
            "mezonet": 0,
            "panorama": 0,
            "pdf": null,
            "gallery": null,
            "title_bg": "Апартамент 1",
            "text_bg": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
            "details_bg": null,
            "slug_bg": "apartament-1",
            "seo_title_bg": "Апартамент 1 | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "Apartment 1",
            "text_en": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
            "details_en": null,
            "slug_en": "apartment-1",
            "seo_title_en": "Apartment 1 | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0,
            "building": {
                "id": 1,
                "slug_bg": "starlight",
                "slug_en": "starlight"
            },
            "entrance": {
                "id": 1,
                "slug_bg": "a",
                "slug_en": "a"
            },
            "floor": {
                "id": 1,
                "slug_bg": "1",
                "slug_en": "1"
            }
        },
        {
            "id": 192,
            "coords": "",
            "degrees": null,
            "status": 1,
            "floor_for_filters": null,
            "rooms": 3,
            "total_area": "121.26",
            "living_area": "0",
            "price": 136000,
            "price_m2": 1122,
            "image": null,
            "image2": null,
            "mezonet": 0,
            "panorama": 0,
            "pdf": null,
            "gallery": null,
            "title_bg": "Апартамент 2",
            "text_bg": "",
            "details_bg": null,
            "slug_bg": "apartament-2",
            "seo_title_bg": "Апартамент 2 | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "Apartment 2",
            "text_en": "",
            "details_en": null,
            "slug_en": "apartment-2",
            "seo_title_en": "Apartment 2 | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0,
            "building": {
                "id": 1,
                "slug_bg": "starlight",
                "slug_en": "starlight"
            },
            "entrance": {
                "id": 1,
                "slug_bg": "a",
                "slug_en": "a"
            },
            "floor": {
                "id": 1,
                "slug_bg": "1",
                "slug_en": "1"
            }
        },
        {
            "id": 194,
            "coords": "",
            "degrees": null,
            "status": 1,
            "floor_for_filters": null,
            "rooms": 1,
            "total_area": "80.65",
            "living_area": "0",
            "price": 122500,
            "price_m2": 1519,
            "image": null,
            "image2": null,
            "mezonet": 0,
            "panorama": 0,
            "pdf": null,
            "gallery": null,
            "title_bg": "Апартамент 3",
            "text_bg": "",
            "details_bg": null,
            "slug_bg": "apartament-3",
            "seo_title_bg": "Апартамент 3 | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "Apartment 3",
            "text_en": "",
            "details_en": null,
            "slug_en": "apartment-3",
            "seo_title_en": "Apartment 3 | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0,
            "building": {
                "id": 1,
                "slug_bg": "starlight",
                "slug_en": "starlight"
            },
            "entrance": {
                "id": 1,
                "slug_bg": "a",
                "slug_en": "a"
            },
            "floor": {
                "id": 1,
                "slug_bg": "2",
                "slug_en": "2"
            }
        },
        {
            "id": 193,
            "coords": "",
            "degrees": null,
            "status": 2,
            "floor_for_filters": null,
            "rooms": 1,
            "total_area": "80.65",
            "living_area": "0",
            "price": 136000,
            "price_m2": 1686,
            "image": null,
            "image2": null,
            "mezonet": 0,
            "panorama": 0,
            "pdf": null,
            "gallery": null,
            "title_bg": "Апартамент 4",
            "text_bg": "",
            "details_bg": null,
            "slug_bg": "apartament-4",
            "seo_title_bg": "Апартамент 4 | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "Apartment 4",
            "text_en": "",
            "details_en": null,
            "slug_en": "apartment-4",
            "seo_title_en": "Apartment 4 | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0,
            "building": {
                "id": 1,
                "slug_bg": "starlight",
                "slug_en": "starlight"
            },
            "entrance": {
                "id": 1,
                "slug_bg": "a",
                "slug_en": "a"
            },
            "floor": {
                "id": 1,
                "slug_bg": "2",
                "slug_en": "2"
            }
        },
        {
            "id": 195,
            "coords": "",
            "degrees": null,
            "status": 1,
            "floor_for_filters": null,
            "rooms": 3,
            "total_area": "150.86",
            "living_area": "0",
            "price": 141000,
            "price_m2": 935,
            "image": null,
            "image2": null,
            "mezonet": 0,
            "panorama": 0,
            "pdf": null,
            "gallery": null,
            "title_bg": "Апартамент 5",
            "text_bg": "",
            "details_bg": null,
            "slug_bg": "apartament-5",
            "seo_title_bg": "Апартамент 5 | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "Apartment 5",
            "text_en": "",
            "details_en": null,
            "slug_en": "apartment-5",
            "seo_title_en": "Apartment 5 | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0,
            "building": {
                "id": 1,
                "slug_bg": "starlight",
                "slug_en": "starlight"
            },
            "entrance": {
                "id": 11,
                "slug_bg": "b",
                "slug_en": "b"
            },
            "floor": {
                "id": 11,
                "slug_bg": "1",
                "slug_en": "1"
            }
        },
        {
            "id": 196,
            "coords": "",
            "degrees": null,
            "status": 1,
            "floor_for_filters": null,
            "rooms": 1,
            "total_area": "121.26",
            "living_area": "0",
            "price": 100000,
            "price_m2": 825,
            "image": null,
            "image2": null,
            "mezonet": 0,
            "panorama": 0,
            "pdf": null,
            "gallery": null,
            "title_bg": "Апартамент 6",
            "text_bg": "",
            "details_bg": null,
            "slug_bg": "apartament-6",
            "seo_title_bg": "Апартамент 6 | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "Apartment 6",
            "text_en": "",
            "details_en": null,
            "slug_en": "apartment-6",
            "seo_title_en": "Apartment 6 | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0,
            "building": {
                "id": 1,
                "slug_bg": "starlight",
                "slug_en": "starlight"
            },
            "entrance": {
                "id": 11,
                "slug_bg": "b",
                "slug_en": "b"
            },
            "floor": {
                "id": 11,
                "slug_bg": "1",
                "slug_en": "1"
            }
        },
        {
            "id": 197,
            "coords": "",
            "degrees": null,
            "status": 3,
            "floor_for_filters": null,
            "rooms": 2,
            "total_area": "158.17",
            "living_area": "0",
            "price": 141000,
            "price_m2": 891,
            "image": null,
            "image2": null,
            "mezonet": 1,
            "panorama": 0,
            "pdf": null,
            "gallery": null,
            "title_bg": "Апартамент 7",
            "text_bg": "",
            "details_bg": null,
            "slug_bg": "apartament-7",
            "seo_title_bg": "Апартамент 7 | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "Apartment 7",
            "text_en": "",
            "details_en": null,
            "slug_en": "apartment-7",
            "seo_title_en": "Apartment 7 | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0,
            "building": {
                "id": 1,
                "slug_bg": "starlight",
                "slug_en": "starlight"
            },
            "entrance": {
                "id": 11,
                "slug_bg": "b",
                "slug_en": "b"
            },
            "floor": {
                "id": 11,
                "slug_bg": "2",
                "slug_en": "2"
            }
        }
    ],
    "links": {
        "self": "link-value"
    }
}

HTTP Request

GET api/apartments

Get All Apartments By Floor ID.

Example request:

curl -X GET "http://mercury-api.imigix.com/api/apartments/floor/{id}" \
-H "Accept: application/json"
var settings = {
    "async": true,
    "crossDomain": true,
    "url": "http://mercury-api.imigix.com/api/apartments/floor/{id}",
    "method": "GET",
    "headers": {
        "accept": "application/json"
    }
}

$.ajax(settings).done(function (response) {
    console.log(response);
});

Example response:

{
    "data": [
        {
            "id": 1,
            "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
            "degrees": null,
            "status": 1,
            "floor_for_filters": null,
            "rooms": 2,
            "total_area": "68.75",
            "living_area": "0",
            "price": 100000,
            "price_m2": 1455,
            "image": null,
            "image2": null,
            "mezonet": 0,
            "panorama": 0,
            "pdf": null,
            "gallery": null,
            "title_bg": "Апартамент 1",
            "text_bg": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
            "details_bg": null,
            "slug_bg": "apartament-1",
            "seo_title_bg": "Апартамент 1 | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "Apartment 1",
            "text_en": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
            "details_en": null,
            "slug_en": "apartment-1",
            "seo_title_en": "Apartment 1 | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0,
            "building": {
                "id": 1,
                "slug_bg": "starlight",
                "slug_en": "starlight"
            },
            "entrance": {
                "id": 1,
                "slug_bg": "a",
                "slug_en": "a"
            },
            "floor": {
                "id": 1,
                "slug_bg": "1",
                "slug_en": "1"
            }
        },
        {
            "id": 192,
            "coords": "",
            "degrees": null,
            "status": 1,
            "floor_for_filters": null,
            "rooms": 3,
            "total_area": "121.26",
            "living_area": "0",
            "price": 136000,
            "price_m2": 1122,
            "image": null,
            "image2": null,
            "mezonet": 0,
            "panorama": 0,
            "pdf": null,
            "gallery": null,
            "title_bg": "Апартамент 2",
            "text_bg": "",
            "details_bg": null,
            "slug_bg": "apartament-2",
            "seo_title_bg": "Апартамент 2 | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "Apartment 2",
            "text_en": "",
            "details_en": null,
            "slug_en": "apartment-2",
            "seo_title_en": "Apartment 2 | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0,
            "building": {
                "id": 1,
                "slug_bg": "starlight",
                "slug_en": "starlight"
            },
            "entrance": {
                "id": 1,
                "slug_bg": "a",
                "slug_en": "a"
            },
            "floor": {
                "id": 1,
                "slug_bg": "1",
                "slug_en": "1"
            }
        }
    ],
    "links": {
        "self": "link-value"
    }
}

HTTP Request

GET api/apartments/floor/{id}

Get All Apartments By Building ID.

Example request:

curl -X GET "http://mercury-api.imigix.com/api/apartments/building/{id}" \
-H "Accept: application/json"
var settings = {
    "async": true,
    "crossDomain": true,
    "url": "http://mercury-api.imigix.com/api/apartments/building/{id}",
    "method": "GET",
    "headers": {
        "accept": "application/json"
    }
}

$.ajax(settings).done(function (response) {
    console.log(response);
});

Example response:

{
    "data": [
        {
            "id": 1,
            "coords": "25, 573, 38, 578, 40, 601, 70, 571, 86, 573, 98, 563, 354, 583, 355, 543, 376, 532, 377, 517, 75, 488",
            "degrees": null,
            "status": 1,
            "floor_for_filters": null,
            "rooms": 2,
            "total_area": "68.75",
            "living_area": "0",
            "price": 100000,
            "price_m2": 1455,
            "image": null,
            "image2": null,
            "mezonet": 0,
            "panorama": 0,
            "pdf": null,
            "gallery": null,
            "title_bg": "Апартамент 1",
            "text_bg": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
            "details_bg": null,
            "slug_bg": "apartament-1",
            "seo_title_bg": "Апартамент 1 | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "Apartment 1",
            "text_en": "<ol>\r\n\t<li>предверие <strong>5.44<\/strong><\/li>\r\n\t<li>дневна с кът за хранене и кухненски бокс <strong>18.18<\/strong><\/li>\r\n\t<li>спалня <strong>12.27<\/strong><\/li>\r\n\t<li>баня и тоалетна <strong>5.92<\/strong><\/li>\r\n\t<li>склад <strong>2.5<\/strong><\/li>\r\n\t<li>тераса <strong>6.88<\/strong><\/li>\r\n\t<li>открита тераса <strong>20<\/strong><\/li>\r\n<\/ol>",
            "details_en": null,
            "slug_en": "apartment-1",
            "seo_title_en": "Apartment 1 | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0,
            "building": {
                "id": 1,
                "slug_bg": "starlight",
                "slug_en": "starlight"
            },
            "entrance": {
                "id": 1,
                "slug_bg": "a",
                "slug_en": "a"
            },
            "floor": {
                "id": 1,
                "slug_bg": "1",
                "slug_en": "1"
            }
        },
        {
            "id": 192,
            "coords": "",
            "degrees": null,
            "status": 1,
            "floor_for_filters": null,
            "rooms": 3,
            "total_area": "121.26",
            "living_area": "0",
            "price": 136000,
            "price_m2": 1122,
            "image": null,
            "image2": null,
            "mezonet": 0,
            "panorama": 0,
            "pdf": null,
            "gallery": null,
            "title_bg": "Апартамент 2",
            "text_bg": "",
            "details_bg": null,
            "slug_bg": "apartament-2",
            "seo_title_bg": "Апартамент 2 | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "Apartment 2",
            "text_en": "",
            "details_en": null,
            "slug_en": "apartment-2",
            "seo_title_en": "Apartment 2 | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0,
            "building": {
                "id": 1,
                "slug_bg": "starlight",
                "slug_en": "starlight"
            },
            "entrance": {
                "id": 1,
                "slug_bg": "a",
                "slug_en": "a"
            },
            "floor": {
                "id": 1,
                "slug_bg": "1",
                "slug_en": "1"
            }
        },
        {
            "id": 194,
            "coords": "",
            "degrees": null,
            "status": 1,
            "floor_for_filters": null,
            "rooms": 1,
            "total_area": "80.65",
            "living_area": "0",
            "price": 122500,
            "price_m2": 1519,
            "image": null,
            "image2": null,
            "mezonet": 0,
            "panorama": 0,
            "pdf": null,
            "gallery": null,
            "title_bg": "Апартамент 3",
            "text_bg": "",
            "details_bg": null,
            "slug_bg": "apartament-3",
            "seo_title_bg": "Апартамент 3 | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "Apartment 3",
            "text_en": "",
            "details_en": null,
            "slug_en": "apartment-3",
            "seo_title_en": "Apartment 3 | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0,
            "building": {
                "id": 1,
                "slug_bg": "starlight",
                "slug_en": "starlight"
            },
            "entrance": {
                "id": 1,
                "slug_bg": "a",
                "slug_en": "a"
            },
            "floor": {
                "id": 1,
                "slug_bg": "2",
                "slug_en": "2"
            }
        },
        {
            "id": 193,
            "coords": "",
            "degrees": null,
            "status": 2,
            "floor_for_filters": null,
            "rooms": 1,
            "total_area": "80.65",
            "living_area": "0",
            "price": 136000,
            "price_m2": 1686,
            "image": null,
            "image2": null,
            "mezonet": 0,
            "panorama": 0,
            "pdf": null,
            "gallery": null,
            "title_bg": "Апартамент 4",
            "text_bg": "",
            "details_bg": null,
            "slug_bg": "apartament-4",
            "seo_title_bg": "Апартамент 4 | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "Apartment 4",
            "text_en": "",
            "details_en": null,
            "slug_en": "apartment-4",
            "seo_title_en": "Apartment 4 | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0,
            "building": {
                "id": 1,
                "slug_bg": "starlight",
                "slug_en": "starlight"
            },
            "entrance": {
                "id": 1,
                "slug_bg": "a",
                "slug_en": "a"
            },
            "floor": {
                "id": 1,
                "slug_bg": "2",
                "slug_en": "2"
            }
        },
        {
            "id": 195,
            "coords": "",
            "degrees": null,
            "status": 1,
            "floor_for_filters": null,
            "rooms": 3,
            "total_area": "150.86",
            "living_area": "0",
            "price": 141000,
            "price_m2": 935,
            "image": null,
            "image2": null,
            "mezonet": 0,
            "panorama": 0,
            "pdf": null,
            "gallery": null,
            "title_bg": "Апартамент 5",
            "text_bg": "",
            "details_bg": null,
            "slug_bg": "apartament-5",
            "seo_title_bg": "Апартамент 5 | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "Apartment 5",
            "text_en": "",
            "details_en": null,
            "slug_en": "apartment-5",
            "seo_title_en": "Apartment 5 | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0,
            "building": {
                "id": 1,
                "slug_bg": "starlight",
                "slug_en": "starlight"
            },
            "entrance": {
                "id": 11,
                "slug_bg": "b",
                "slug_en": "b"
            },
            "floor": {
                "id": 11,
                "slug_bg": "1",
                "slug_en": "1"
            }
        },
        {
            "id": 196,
            "coords": "",
            "degrees": null,
            "status": 1,
            "floor_for_filters": null,
            "rooms": 1,
            "total_area": "121.26",
            "living_area": "0",
            "price": 100000,
            "price_m2": 825,
            "image": null,
            "image2": null,
            "mezonet": 0,
            "panorama": 0,
            "pdf": null,
            "gallery": null,
            "title_bg": "Апартамент 6",
            "text_bg": "",
            "details_bg": null,
            "slug_bg": "apartament-6",
            "seo_title_bg": "Апартамент 6 | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "Apartment 6",
            "text_en": "",
            "details_en": null,
            "slug_en": "apartment-6",
            "seo_title_en": "Apartment 6 | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0,
            "building": {
                "id": 1,
                "slug_bg": "starlight",
                "slug_en": "starlight"
            },
            "entrance": {
                "id": 11,
                "slug_bg": "b",
                "slug_en": "b"
            },
            "floor": {
                "id": 11,
                "slug_bg": "1",
                "slug_en": "1"
            }
        },
        {
            "id": 197,
            "coords": "",
            "degrees": null,
            "status": 3,
            "floor_for_filters": null,
            "rooms": 2,
            "total_area": "158.17",
            "living_area": "0",
            "price": 141000,
            "price_m2": 891,
            "image": null,
            "image2": null,
            "mezonet": 1,
            "panorama": 0,
            "pdf": null,
            "gallery": null,
            "title_bg": "Апартамент 7",
            "text_bg": "",
            "details_bg": null,
            "slug_bg": "apartament-7",
            "seo_title_bg": "Апартамент 7 | Меркурий 99",
            "seo_description_bg": null,
            "seo_keywords_bg": null,
            "hide_sitemap_bg": 0,
            "title_en": "Apartment 7",
            "text_en": "",
            "details_en": null,
            "slug_en": "apartment-7",
            "seo_title_en": "Apartment 7 | Mercury 99",
            "seo_description_en": null,
            "seo_keywords_en": null,
            "hide_sitemap_en": 0,
            "building": {
                "id": 1,
                "slug_bg": "starlight",
                "slug_en": "starlight"
            },
            "entrance": {
                "id": 11,
                "slug_bg": "b",
                "slug_en": "b"
            },
            "floor": {
                "id": 11,
                "slug_bg": "2",
                "slug_en": "2"
            }
        }
    ],
    "links": {
        "self": "link-value"
    }
}

HTTP Request

GET api/apartments/building/{id}

Get All Parkings.

Example request:

curl -X GET "http://mercury-api.imigix.com/api/parkings" \
-H "Accept: application/json"
var settings = {
    "async": true,
    "crossDomain": true,
    "url": "http://mercury-api.imigix.com/api/parkings",
    "method": "GET",
    "headers": {
        "accept": "application/json"
    }
}

$.ajax(settings).done(function (response) {
    console.log(response);
});

Example response:

{
    "data": [
        {
            "id": 5,
            "coords": null,
            "status": 1,
            "total_area": "68.75",
            "price": 100000,
            "image": null,
            "title_bg": "Гараж 1",
            "title_en": "Garage 1",
            "building": {
                "id": 1,
                "slug_bg": "starlight",
                "slug_en": "starlight"
            }
        },
        {
            "id": 6,
            "coords": null,
            "status": 1,
            "total_area": "121.26",
            "price": 136000,
            "image": null,
            "title_bg": "Гараж 2",
            "title_en": "Garage 2",
            "building": {
                "id": 1,
                "slug_bg": "starlight",
                "slug_en": "starlight"
            }
        },
        {
            "id": 7,
            "coords": null,
            "status": 3,
            "total_area": "80.65",
            "price": 122500,
            "image": null,
            "title_bg": "Гараж 3",
            "title_en": "Garage 3",
            "building": {
                "id": 1,
                "slug_bg": "starlight",
                "slug_en": "starlight"
            }
        }
    ],
    "links": {
        "self": "link-value"
    }
}

HTTP Request

GET api/parkings

Get All Parkings By Building ID.

Example request:

curl -X GET "http://mercury-api.imigix.com/api/parkings/building/{id}" \
-H "Accept: application/json"
var settings = {
    "async": true,
    "crossDomain": true,
    "url": "http://mercury-api.imigix.com/api/parkings/building/{id}",
    "method": "GET",
    "headers": {
        "accept": "application/json"
    }
}

$.ajax(settings).done(function (response) {
    console.log(response);
});

Example response:

{
    "data": [
        {
            "id": 5,
            "coords": null,
            "status": 1,
            "total_area": "68.75",
            "price": 100000,
            "image": null,
            "title_bg": "Гараж 1",
            "title_en": "Garage 1",
            "building": {
                "id": 1,
                "slug_bg": "starlight",
                "slug_en": "starlight"
            }
        },
        {
            "id": 6,
            "coords": null,
            "status": 1,
            "total_area": "121.26",
            "price": 136000,
            "image": null,
            "title_bg": "Гараж 2",
            "title_en": "Garage 2",
            "building": {
                "id": 1,
                "slug_bg": "starlight",
                "slug_en": "starlight"
            }
        },
        {
            "id": 7,
            "coords": null,
            "status": 3,
            "total_area": "80.65",
            "price": 122500,
            "image": null,
            "title_bg": "Гараж 3",
            "title_en": "Garage 3",
            "building": {
                "id": 1,
                "slug_bg": "starlight",
                "slug_en": "starlight"
            }
        }
    ],
    "links": {
        "self": "link-value"
    }
}

HTTP Request

GET api/parkings/building/{id}

Get All Facilities By Building Id.

Example request:

curl -X GET "http://mercury-api.imigix.com/api/facilities/building/{id}" \
-H "Accept: application/json"
var settings = {
    "async": true,
    "crossDomain": true,
    "url": "http://mercury-api.imigix.com/api/facilities/building/{id}",
    "method": "GET",
    "headers": {
        "accept": "application/json"
    }
}

$.ajax(settings).done(function (response) {
    console.log(response);
});

Example response:

{
    "data": {
        "1": {
            "id": 5,
            "image": null,
            "title_bg": "На 10 минути от училище",
            "title_en": "10 mins walk from a school",
            "building": {
                "id": 1,
                "slug_bg": "starlight",
                "slug_en": "starlight"
            }
        }
    },
    "links": {
        "self": "link-value"
    }
}

HTTP Request

GET api/facilities/building/{id}

Get All Translations by Languages.

Example request:

curl -X GET "http://mercury-api.imigix.com/api/translations/{lang}" \
-H "Accept: application/json"
var settings = {
    "async": true,
    "crossDomain": true,
    "url": "http://mercury-api.imigix.com/api/translations/{lang}",
    "method": "GET",
    "headers": {
        "accept": "application/json"
    }
}

$.ajax(settings).done(function (response) {
    console.log(response);
});

Example response:

{
    "data": [
        []
    ]
}

HTTP Request

GET api/translations/{lang}