Mabet Integration API Documentation

Base URL (Test): https://mabet.dev/companies/api/v1

Authentication: All endpoints require the header API-Key (provided by Mabet team). Most endpoints require a Bearer token retrieved after login.

To use the API, first login as a company to get a company_jwt_token. Then use this token in subsequent requests.

Download last version of postman collection from here: postman collection

Company Auth - Generate JWT Token

POST https://mabet.dev/companies/api/v1/company-generate-jwt

Headers

KeyValueDescription
API-Key{{ API_KEY }}

Form Data

KeyValueDescription
emailsupport@example.sa
passwordAa123456

Example Response

{
    "access_token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiIsInVpZCI6MX0.eyJpc3MiOiJtYWJldC5kZXYiLCJhdWQiOiJtYWJldC5kZXYiLCJqdGkiOiI2OGMwNWJjYjRjOGZjIiwiaWF0IjoxNzU3NDM2ODc1LjMxMjc1NjA2MTU1Mzk1NTA3ODEyNSwibmJmIjoxNzU3NDM2ODc1LjMxMjc1NjA2MTU1Mzk1NTA3ODEyNSwiZXhwIjoxNzY1MjEyODc1LjMxMjc1NjA2MTU1Mzk1NTA3ODEyNSwic3ViIjoiMSJ9.azTvEltYyJee6cMU7lroxZx3djH4jDLu_JWiHuHxhwY",
    "token_type": "bearer",
    "expires_in": 7776000
}

Company Auth - Company Info

GET https://mabet.dev/companies/api/v1/company/info

Headers

KeyValueDescription
Acceptapplication/json
API-Key{{ API_KEY }}

Example Response

{
    "id": 1,
    "name": "wasal",
    "email": "support@example.sa",
    "company_link": "https://example.sa",
    "logo_url": "https://cdn.example.sa/images/example-logo-ar.svg"
}

Company Auth - Refresh

POST https://mabet.dev/companies/api/v1/company/refresh

Headers

KeyValueDescription
API-Key{{ API_KEY }}

Example Response

{
    "access_token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiIsInVpZCI6MX0.eyJpc3MiOiJtYWJldC5kZXYiLCJhdWQiOiJtYWJldC5kZXYiLCJqdGkiOiI2OGMwNWVlMDA5MmI2IiwiaWF0IjoxNzU3NDM3NjY0LjAzNjQ0Mzk0ODc0NTcyNzUzOTA2MjUsIm5iZiI6MTc1NzQzNzY2NC4wMzY0NDM5NDg3NDU3Mjc1MzkwNjI1LCJleHAiOjE3NjUyMTM2NjQuMDM2NDQzOTQ4NzQ1NzI3NTM5MDYyNSwic3ViIjoiMSJ9.hb6FGqMPXSKXoerLXI2QFDo40D7OTO4HEzswB-1hNjI",
    "token_type": "bearer",
    "expires_in": 7776000
}

Company Auth - Logout

POST https://mabet.dev/companies/api/v1/company/logout

Headers

KeyValueDescription
API-Key{{ API_KEY }}

Example Response

{
    "message": "Successfully logged out"
}

User Auth - Login

POST https://mabet.dev/companies/api/v1/user/login

Headers

KeyValueDescription
API-Key{{ API_KEY }}

Form Data

KeyValueDescription
phonenumber0547869735

Example Response

{
    "token": 2317
}

User Auth - Check otp

POST https://mabet.dev/companies/api/v1/user/check-otp

Headers

KeyValueDescription
API-Key{{ API_KEY }}

Form Data

KeyValueDescription
phonenumber0547869735
token1795

Example Response

{
    "access_token": "120|8tIATQQhrU7cRWs7MvODhagqj6Vy6xSH3iCiyl02acd5796d",
    "token_type": "Bearer"
}

User Auth - Refresh

POST https://mabet.dev/companies/api/v1/user/refresh

Headers

KeyValueDescription
API-Key{{ API_KEY }}

Example Response

{
    "data": {
        "data": {
            "access_token": "123|0M7wxB8FooOrTmyI8ff0q8oPUPdjBgcDnDzo4mjQfdc5988e",
            "user": {
                "id": 8385,
                "name": null,
                "email": null,
                "country_code": null,
                "phonenumber": "0547869735",
                "user_type": null,
                "nationality_id": null,
                "citizenship_number": null,
                "resident_number": null,
                "passport_number": null,
                "date_of_birth": null,
                "points": null,
                "nafath_validated": false,
                "is_contract_signed": false,
                "down_payment_percent": 25,
                "avatar": "https://eu.ui-avatars.com/api/?size=128&rounded=true&bold=true&background=4dbeb1&color=fff&name=",
                "wallet_plain": "0.00",
                "wallet": "0.00 ر.س",
                "sales_total": "0.00 ر.س",
                "units_count": 0,
                "unlicensed_count": 0,
                "reservation_count": 0,
                "review_total": 0,
                "arrival_instructions_complete": false,
                "terms_and_conditions_complete": false,
                "tabby_enabled": true,
                "licenses_completed": false,
                "cancellation_policy": null,
                "has_draft": false,
                "last_draft_step": null,
                "unit_data_to_complete": [],
                "user_identifier": "partner_api_8385"
            },
            "token_type": "bearer",
            "expires_in": null
        }
    },
    "message": null,
    "success": true
}

User Auth - Logout

POST https://mabet.dev/companies/api/v1/user/logout

Headers

KeyValueDescription
API-Key{{ API_KEY }}

Example Response

{
    "message": "Successfully logged out"
}

Lists - Countries

GET https://mabet.dev/companies/api/v1/location/countries

Headers

KeyValueDescription
API-Key{{ API_KEY }}

Query Parameters

KeyValueDescription
sort_byname
sort_orderascasc/desc

Example Response

{
    "data": {
        "countries": [
            {
                "dial_code": "+966",
                "code": "966",
                "name": "السعودية"
            },
            {
                "dial_code": "+965",
                "code": "965",
                "name": "الكويت"
            },
            {
                "dial_code": "+973",
                "code": "973",
                "name": "البحرين"
            },
            {
                "dial_code": "+974",
                "code": "974",
                "name": "قطر"
            },
            {
                "dial_code": "+971",
                "code": "971",
                "name": "الإمارات"
            },
            {
                "dial_code": "+967",
                "code": "967",
                "name": "اليمن"
            },
            {
                "dial_code": "+968",
                "code": "968",
                "name": "عُمان"
            },
            {
                "dial_code": "+269",
                "code": "269",
                "name": "جزر القمر"
            },
            {
                "dial_code": "+253",
                "code": "253",
                "name": "جيبوتي"
            },
            {
                "dial_code": "+20",
                "code": "20",
                "name": "مصر"
            },
            {
                "dial_code": "+213",
                "code": "213",
                "name": "الجزائر"
            },
            {
                "dial_code": "+964",
                "code": "964",
                "name": "العراق"
            },
            {
                "dial_code": "+962",
                "code": "962",
                "name": "الأردن"
            },
            {
                "dial_code": "+961",
                "code": "961",
                "name": "لبنان"
            },
            {
                "dial_code": "+218",
                "code": "218",
                "name": "ليبيا"
            },
            {
                "dial_code": "+223",
                "code": "223",
                "name": "مالي"
            },
            {
                "dial_code": "+212",
                "code": "212",
                "name": "المغرب"
            },
            {
                "dial_code": "+970",
                "code": "970",
                "name": "فلسطين"
            },
            {
                "dial_code": "+252",
                "code": "252",
                "name": "الصومال"
            },
            {
                "dial_code": "+249",
                "code": "249",
                "name": "السودان"
            },
            {
                "dial_code": "+963",
                "code": "963",
                "name": "سوريا"
            },
            {
                "dial_code": "+216",
                "code": "216",
                "name": "تونس"
            },
            {
                "dial_code": "+1",
                "code": "1",
                "name": "الولايات المتحدة"
            },
            {
                "dial_code": "+1",
                "code": "1",
                "name": "كندا"
            },
            {
                "dial_code": "+86",
                "code": "86",
                "name": "الصين"
            },
            {
                "dial_code": "+62",
                "code": "62",
                "name": "إندونيسيا"
            },
            {
                "dial_code": "+65",
                "code": "65",
                "name": "سنغافورة"
            },
            {
                "dial_code": "+60",
                "code": "60",
                "name": "ماليزيا"
            },
            {
                "dial_code": "+7",
                "code": "7",
                "name": "روسيا"
            },
            {
                "dial_code": "+33",
                "code": "33",
                "name": "فرنسا"
            },
            {
                "dial_code": "+49",
                "code": "49",
                "name": "ألمانيا"
            },
            {
                "dial_code": "+30",
                "code": "30",
                "name": "اليونان"
            },
            {
                "dial_code": "+31",
                "code": "31",
                "name": "هولندا"
            },
            {
                "dial_code": "+36",
                "code": "36",
                "name": "هنغاريا"
            },
            {
                "dial_code": "+353",
                "code": "353",
                "name": "أيرلندا"
            },
            {
                "dial_code": "+39",
                "code": "39",
                "name": "إيطاليا"
            },
            {
                "dial_code": "+371",
                "code": "371",
                "name": "لاتفيا"
            },
            {
                "dial_code": "+370",
                "code": "370",
                "name": "ليتوانيا"
            },
            {
                "dial_code": "+352",
                "code": "352",
                "name": "لوكسمبورغ"
            },
            {
                "dial_code": "+356",
                "code": "356",
                "name": "مالطا"
            },
            {
                "dial_code": "+48",
                "code": "48",
                "name": "بولندا"
            },
            {
                "dial_code": "+351",
                "code": "351",
                "name": "البرتغال"
            },
            {
                "dial_code": "+40",
                "code": "40",
                "name": "رومانيا"
            },
            {
                "dial_code": "+421",
                "code": "421",
                "name": "سلوفاكيا"
            },
            {
                "dial_code": "+386",
                "code": "386",
                "name": "سلوفينيا"
            },
            {
                "dial_code": "+34",
                "code": "34",
                "name": "إسبانيا"
            },
            {
                "dial_code": "+46",
                "code": "46",
                "name": "السويد"
            },
            {
                "dial_code": "+44",
                "code": "44",
                "name": "المملكة المتحدة"
            },
            {
                "dial_code": "+82",
                "code": "82",
                "name": "كوريا الجنوبية"
            }
        ]
    },
    "message": null,
    "success": true
}

Lists - Cities

GET https://mabet.dev/companies/api/v1/location/cities

Headers

KeyValueDescription
Accept-Languagear
API-Key{{ API_KEY }}

Query Parameters

KeyValueDescription
show_image1
show_count1
showfilled
sort_byunits_count
sort_orderdesc

Example Response

{
    "data": {
        "cities": [
            {
                "id": 7,
                "name": null,
                "image": "http://mabeet.test/images/placeholder.jpg"
            },
            {
                "id": 20,
                "name": null,
                "image": "http://mabeet.test/images/placeholder.jpg"
            },
            {
                "id": 3,
                "name": null,
                "image": "http://mabeet.test/images/placeholder.jpg"
            },
            {
                "id": 2,
                "name": null,
                "image": "http://mabeet.test/images/placeholder.jpg"
            },
            {
                "id": 23,
                "name": null,
                "image": "http://mabeet.test/images/placeholder.jpg"
            },
            {
                "id": 4,
                "name": null,
                "image": "http://mabeet.test/images/placeholder.jpg"
            },
            {
                "id": 1,
                "name": null,
                "image": "http://mabeet.test/images/placeholder.jpg"
            },
            {
                "id": 22,
                "name": null,
                "image": "http://mabeet.test/images/placeholder.jpg"
            },
            {
                "id": 9,
                "name": null,
                "image": "http://mabeet.test/images/placeholder.jpg"
            },
            {
                "id": 14,
                "name": null,
                "image": "http://mabeet.test/images/placeholder.jpg"
            },
            {
                "id": 13,
                "name": null,
                "image": "http://mabeet.test/images/placeholder.jpg"
            },
            {
                "id": 6,
                "name": null,
                "image": "http://mabeet.test/images/placeholder.jpg"
            },
            {
                "id": 5,
                "name": null,
                "image": "http://mabeet.test/images/placeholder.jpg"
            },
            {
                "id": 16,
                "name": null,
                "image": "http://mabeet.test/images/placeholder.jpg"
            },
            {
                "id": 18,
                "name": null,
                "image": "http://mabeet.test/images/placeholder.jpg"
            },
            {
                "id": 19,
                "name": null,
                "image": "http://mabeet.test/images/placeholder.jpg"
            },
            {
                "id": 11,
                "name": null,
                "image": "http://mabeet.test/images/placeholder.jpg"
            },
            {
                "id": 17,
                "name": null,
                "image": "http://mabeet.test/images/placeholder.jpg"
            },
            {
                "id": 10,
                "name": null,
                "image": "http://mabeet.test/images/placeholder.jpg"
            },
            {
                "id": 15,
                "name": null,
                "image": "http://mabeet.test/images/placeholder.jpg"
            },
            {
                "id": 12,
                "name": null,
                "image": "http://mabeet.test/images/placeholder.jpg"
            },
            {
                "id": 21,
                "name": null,
                "image": "http://mabeet.test/images/placeholder.jpg"
            },
            {
                "id": 8,
                "name": null,
                "image": "http://mabeet.test/images/placeholder.jpg"
            }
        ]
    },
    "message": null,
    "success": true
}

Lists - Regions

GET https://mabet.dev/companies/api/v1/location/regions

Headers

KeyValueDescription
API-Key{{ API_KEY }}

Query Parameters

KeyValueDescription
show_image1
show_count1
sort_byunits_count
sort_orderdesc
city_id25
showfilled

Example Response

{
    "data": {
        "districts": [
            {
                "id": 662,
                "name": "حي المروج",
                "units_count": 7,
                "units_count_text": "7 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 640,
                "name": "ابحر الشمالية",
                "units_count": 1,
                "units_count_text": "1 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 637,
                "name": "النسيم الجديد",
                "units_count": 1,
                "units_count_text": "1 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 543,
                "name": "حي البوادي",
                "units_count": 1,
                "units_count_text": "1 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 538,
                "name": "حي الخالدية",
                "units_count": 1,
                "units_count_text": "1 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 525,
                "name": "حي الرحمانية",
                "units_count": 1,
                "units_count_text": "1 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 593,
                "name": "حي السامر",
                "units_count": 1,
                "units_count_text": "1 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 526,
                "name": "حي الصالحية",
                "units_count": 1,
                "units_count_text": "1 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 591,
                "name": "حي الصفا",
                "units_count": 1,
                "units_count_text": "1 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 534,
                "name": "حي العدل",
                "units_count": 1,
                "units_count_text": "1 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 592,
                "name": "حي المروة",
                "units_count": 1,
                "units_count_text": "1 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 633,
                "name": "الاجواد",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 639,
                "name": "الحمدانية",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 634,
                "name": "السنابل",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 658,
                "name": "الشاطئ الازرق",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 638,
                "name": "الفنار",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 649,
                "name": "الفيصل",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 627,
                "name": "المدينة الصناعية الثالثة",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 644,
                "name": "المنارات ( الأجهوري)",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 597,
                "name": "المنطقة الصناعية",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 539,
                "name": "جامعة الملك عبدالعزيز",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 646,
                "name": "جوهرة العروس",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 659,
                "name": "حدة",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 656,
                "name": "حراء الرئيسي",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 613,
                "name": "حي ابحر الجنوبية",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 609,
                "name": "حي ابحر الشمالية",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 580,
                "name": "حي ابرق الرغامة",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 616,
                "name": "حي الاجاويد",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 594,
                "name": "حي الاجواد",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 519,
                "name": "حي الاصالة",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 515,
                "name": "حي الامواج",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 598,
                "name": "حي الامير عبدالمجيد",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 601,
                "name": "حي الامير فواز الجنوبى",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 522,
                "name": "حي الامير فواز الشمالى",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 612,
                "name": "حي الاندلس",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 645,
                "name": "حي البحيرات",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 673,
                "name": "حي البدور",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 554,
                "name": "حي البركة",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 588,
                "name": "حي البساتين",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 583,
                "name": "حي البشائر",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 541,
                "name": "حي البغدادية الشرقية",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 608,
                "name": "حي البغدادية الغربية",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 532,
                "name": "حي البلد",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 551,
                "name": "حي التضامن",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 560,
                "name": "حي التعاون",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 641,
                "name": "حي التيسير",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 531,
                "name": "حي الثعالبة",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 545,
                "name": "حي الثغر",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 603,
                "name": "حي الجامعة",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 631,
                "name": "حي الجموم",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 600,
                "name": "حي الجوهرة",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 625,
                "name": "حي الحرازات",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 620,
                "name": "حي الحمراء",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 653,
                "name": "حي الخليج",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 562,
                "name": "حي الخمرة",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 666,
                "name": "حي الخنساء",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 589,
                "name": "حي الربوة",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 575,
                "name": "حي الرحاب",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 553,
                "name": "حي الرحمة",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 604,
                "name": "حي الروابي",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 665,
                "name": "حي الروضه",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 610,
                "name": "حي الرويس",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 523,
                "name": "حي الرياض",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 527,
                "name": "حي الريان",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 511,
                "name": "حي الزمرد",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 619,
                "name": "حي الزهراء",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 582,
                "name": "حي الساحل",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 670,
                "name": "حي السامر",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 572,
                "name": "حي السبيل",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 561,
                "name": "حي السروات",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 615,
                "name": "حي السرورية",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 663,
                "name": "حي السلام",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 544,
                "name": "حي السلامة",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 654,
                "name": "حي السلامة",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 581,
                "name": "حي السليمانية",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 549,
                "name": "حي السنابل",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 617,
                "name": "حي الشاطئ",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 516,
                "name": "حي الشراع",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 648,
                "name": "حي الشراع",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 546,
                "name": "حي الشرفية",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 521,
                "name": "حي الشروق",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 548,
                "name": "حي الشفا",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 571,
                "name": "حي الصحيفة",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 642,
                "name": "حي الصفاء ٦",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 514,
                "name": "حي الصوارى",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 563,
                "name": "حي الضاحية",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 576,
                "name": "حي العزيزية",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 671,
                "name": "حي العليا",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 570,
                "name": "حي العمارية",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 660,
                "name": "حي الغولا",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 533,
                "name": "حي الفاروق",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 517,
                "name": "حي الفردوس",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 524,
                "name": "حي الفروسية",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 605,
                "name": "حي الفضل",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 559,
                "name": "حي الفضيلة",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 518,
                "name": "حي الفلاح",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 621,
                "name": "حي الفيحاء",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 630,
                "name": "حي الفيروز",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 574,
                "name": "حي الفيصلية",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 567,
                "name": "حي القريات",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 564,
                "name": "حي القرينية",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 557,
                "name": "حي القوزين",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 668,
                "name": "حي القوس",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 664,
                "name": "حي الكامل",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 552,
                "name": "حي الكرامة",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 569,
                "name": "حي الكندرة",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 585,
                "name": "حي الكوثر",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 512,
                "name": "حي اللؤلؤ",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 602,
                "name": "حي المتنزهات",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 626,
                "name": "حي المحاميد",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 536,
                "name": "حي المحجر",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 584,
                "name": "حي المحمدية",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 614,
                "name": "حي المرجان",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 555,
                "name": "حي المسرة",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 556,
                "name": "حي المليساء",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 596,
                "name": "حي المنار",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 530,
                "name": "حي المنتزة",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 540,
                "name": "حي النخيل",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 542,
                "name": "حي النزلة الشرقية",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 565,
                "name": "حي النزلة اليمانية",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 590,
                "name": "حي النزهة",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 566,
                "name": "حي النسيم",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 587,
                "name": "حي النعيم",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 537,
                "name": "حي النهضة",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 651,
                "name": "حي النور",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 550,
                "name": "حي الهدى",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 535,
                "name": "حي الهنداوية",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 579,
                "name": "حي الواحة",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 558,
                "name": "حي الوادي",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 578,
                "name": "حي الورود",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 599,
                "name": "حي الوزيريه",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 624,
                "name": "حي الوفاء",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 513,
                "name": "حي الياقوت",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 606,
                "name": "حي ام السلم",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 528,
                "name": "حي ام حبلين",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 611,
                "name": "حي بترومين",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 622,
                "name": "حي بحرة",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 529,
                "name": "حي بريمان",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 573,
                "name": "حي بنى مالك",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 672,
                "name": "حي خليج سلمان",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 628,
                "name": "حي ذهبان",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 669,
                "name": "حي شعثاء",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 586,
                "name": "حي طيبة",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 661,
                "name": "حي عسفان",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 568,
                "name": "حي غليل",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 618,
                "name": "حي مدائن الفهد",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 520,
                "name": "حي مريخ",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 577,
                "name": "حي مشرفة",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 667,
                "name": "حي هدى الشام",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 629,
                "name": "درة العروس",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 652,
                "name": "ذهبان",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 657,
                "name": "شاطئ البردايس",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 636,
                "name": "طريق مكة القديم",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 643,
                "name": "طيبة",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 547,
                "name": "قاعدة الملك فيصل البحرية",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 635,
                "name": "مخطط الديوانية",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 647,
                "name": "مخطط الفيصل",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 632,
                "name": "مخطط الوليد",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 607,
                "name": "مدينة الملك عبدالعزيز الطبية",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 595,
                "name": "مطار الملك عبدالعزيز الدولي",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 655,
                "name": "منطقه عسفان",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 623,
                "name": "ميناء جدة الاسلامي",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            },
            {
                "id": 650,
                "name": "نهاية خط الكباين",
                "units_count": 0,
                "units_count_text": "0 مبيت",
                "lat": 21.485800000000001119815351557917892932891845703125,
                "lng": 39.19250000000000255795384873636066913604736328125,
                "parents": {
                    "city": {
                        "id": 25,
                        "name": "جدة"
                    },
                    "province": {
                        "id": 12,
                        "name": "مكة المكرمة"
                    }
                }
            }
        ]
    },
    "message": null,
    "success": true
}

Lists - Directions

GET https://mabet.dev/companies/api/v1/location/directions

Headers

KeyValueDescription
Accept-Languageen
API-Key{{ API_KEY }}

Example Response

{
    "data": {
        "directions": [
            {
                "id": 1,
                "name": "شمال"
            },
            {
                "id": 2,
                "name": "جنوب"
            },
            {
                "id": 3,
                "name": "غرب"
            },
            {
                "id": 4,
                "name": "شرق"
            }
        ]
    },
    "message": null,
    "success": true
}

Lists - Unit Types

GET https://mabet.dev/companies/api/v1/lists/unit-types

Headers

KeyValueDescription
Accept-Languagear
API-Key{{url}}

Query Parameters

KeyValueDescription
show_image1
show_count1
showfilled
sort_byunits_count
sort_orderdesc

Example Response

{
    "data": {
        "types": [
            {
                "id": 8,
                "name": "استراحات خاصه",
                "slug": "special-breaks",
                "image": "http://mabeet.test/images/placeholder.jpg",
                "unit_count": "95 مبيت"
            },
            {
                "id": 5,
                "name": "شقق خاصه",
                "slug": "apartments-villa",
                "image": "http://mabeet.test/images/placeholder.jpg",
                "unit_count": "102 مبيت"
            },
            {
                "id": 2,
                "name": "شاليهات شاطئية",
                "slug": "chalets",
                "image": "http://mabeet.test/images/placeholder.jpg",
                "unit_count": "34 مبيت"
            },
            {
                "id": 6,
                "name": "فلل خاصة",
                "slug": "private-villa",
                "image": "http://mabeet.test/images/placeholder.jpg",
                "unit_count": "8 مبيت"
            },
            {
                "id": 7,
                "name": "شقق مطله",
                "slug": "view-apartments",
                "image": "http://mabeet.test/images/placeholder.jpg",
                "unit_count": "6 مبيت"
            },
            {
                "id": 3,
                "name": "مزارع",
                "slug": "farms",
                "image": "http://mabeet.test/images/placeholder.jpg",
                "unit_count": "0 مبيت"
            },
            {
                "id": 4,
                "name": "مخيمات",
                "slug": "camps",
                "image": "http://mabeet.test/images/placeholder.jpg",
                "unit_count": "0 مبيت"
            }
        ]
    },
    "message": null,
    "success": true
}

Lists - Facilities

GET https://mabet.dev/companies/api/v1/lists/facilities

Headers

KeyValueDescription
API-Key{{ API_KEY }}

Query Parameters

KeyValueDescription
show_image1

Example Response

{
    "data": {
        "facilities": [
            {
                "id": 1,
                "name": "مصاعد",
                "icon": "\r\n\t\r\n\t\r\n\t\t\r\n\t\r\n\r\n\r\n\t\r\n\t\t\r\n\t\r\n\r\n\r\n\t\r\n\t\t\r\n\t\r\n\r\n\r\n\t\r\n\t\t\r\n\t\r\n\r\n\r\n\t\r\n\t\t\r\n\t\r\n\r\n\r\n\t\r\n\t\t\r\n\t\r\n\r\n\r\n\t\r\n\t\t\r\n\t\r\n\r\n"
            },
            {
                "id": 2,
                "name": "اطلالة على جبل",
                "icon": "\r\n    "
            },
            {
                "id": 3,
                "name": "طلالة على الحديقة",
                "icon": "\n\n\t\n\t\t\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n"
            },
            {
                "id": 4,
                "name": "اطلالة على البحر",
                "icon": ""
            },
            {
                "id": 5,
                "name": "انترنت",
                "icon": "\n\n\n\n\t\n\t\t\n\t\t\n\t\t\n\t\n\n\n"
            },
            {
                "id": 6,
                "name": "دخول ذاتي",
                "icon": ""
            },
            {
                "id": 7,
                "name": "شاطئ خاص",
                "icon": "\n\n\n\n"
            },
            {
                "id": 8,
                "name": "مدخل سيارة",
                "icon": "\n\n\t\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n"
            },
            {
                "id": 9,
                "name": "مكتب أمن",
                "icon": ""
            }
        ]
    },
    "message": null,
    "success": true
}

Lists - Amenities

GET https://mabet.dev/companies/api/v1/lists/amenities

Headers

KeyValueDescription
Accept-Languagear
API-Key{{ API_KEY }}

Query Parameters

KeyValueDescription
amenity_typeadditionaladditional,pools,kitchens,toilets

Example Response

{
    "data": {
        "amenities": [
            {
                "id": 3,
                "name": "العاب اطفال",
                "image_url": "http://mabeet.test/images/icons/toys.svg"
            },
            {
                "id": 4,
                "name": "اضاءة اضافية",
                "image_url": "http://mabeet.test/images/icons/extra-lighting.svg"
            },
            {
                "id": 5,
                "name": "العاب رملية",
                "image_url": "http://mabeet.test/images/icons/sand-games.svg"
            },
            {
                "id": 6,
                "name": "برميل مندي",
                "image_url": "http://mabeet.test/images/icons/soggy-barrel.svg"
            },
            {
                "id": 7,
                "name": "بروجكتور",
                "image_url": "http://mabeet.test/images/icons/projector.svg"
            },
            {
                "id": 8,
                "name": "بلايستيشن",
                "image_url": "http://mabeet.test/images/icons/play-station.svg"
            },
            {
                "id": 9,
                "name": "بلكونه",
                "image_url": "http://mabeet.test/images/icons/balcony.svg"
            },
            {
                "id": 10,
                "name": "بلياردو",
                "image_url": "http://mabeet.test/images/icons/billiard.svg"
            },
            {
                "id": 14,
                "name": "تلفزيون",
                "image_url": "http://mabeet.test/images/icons/tv.svg"
            },
            {
                "id": 15,
                "name": "جلسة عريش",
                "image_url": "http://mabeet.test/images/icons/royal-session.svg"
            },
            {
                "id": 16,
                "name": "خيمة",
                "image_url": "http://mabeet.test/images/icons/tent.svg"
            },
            {
                "id": 17,
                "name": "رذاذ",
                "image_url": "http://mabeet.test/images/icons/spray.svg"
            },
            {
                "id": 18,
                "name": "ركن شواء",
                "image_url": "http://mabeet.test/images/icons/bbq-corner.svg"
            },
            {
                "id": 19,
                "name": "زحليقة",
                "image_url": "http://mabeet.test/images/icons/slide.svg"
            },
            {
                "id": 20,
                "name": "ستيج مضئ",
                "image_url": "http://mabeet.test/images/icons/lighting-stage.svg"
            },
            {
                "id": 21,
                "name": "سماعات",
                "image_url": "http://mabeet.test/images/icons/speakers.svg"
            },
            {
                "id": 22,
                "name": "صالة طعام",
                "image_url": "http://mabeet.test/images/icons/food-hall.svg"
            },
            {
                "id": 23,
                "name": "طاولة تنس",
                "image_url": "http://mabeet.test/images/icons/tennis.svg"
            },
            {
                "id": 24,
                "name": "غرفة تجهيز عريس",
                "image_url": "http://mabeet.test/images/icons/groom-dressing.svg"
            },
            {
                "id": 25,
                "name": "غرفة سائقين",
                "image_url": "http://mabeet.test/images/icons/drivers-room.svg"
            },
            {
                "id": 26,
                "name": "غرفة سينما",
                "image_url": "http://mabeet.test/images/icons/cinema-room.svg"
            },
            {
                "id": 27,
                "name": "قسمين",
                "image_url": "http://mabeet.test/images/icons/2-sectors.svg"
            }
        ]
    },
    "message": null,
    "success": true
}

Lists - Badges

GET https://mabet.dev/companies/api/v1/lists/badges

Headers

KeyValueDescription
Acceptapplication/json
Accept-Languagear
API-Key{{ API_KEY }}

Example Response

{
    "data": {
        "badges": [
            {
                "id": 1,
                "title": "مميز",
                "subtitle": "توفر لك تجربة سكنية فاخرة ومريحة. يضم هذا التصنيف مجموعة من العقارات التي تتميز بمواقعها الاستراتيجية، تصاميمها العصرية، وجودة التشطيب العالية",
                "icon": "http://mabeet.test/images/icons/favorites.png",
                "icon_svg": "http://mabeet.test/images/icons/favorites.svg",
                "units_count": 1
            },
            {
                "id": 2,
                "title": "فخم",
                "subtitle": "أماكن مبيت فخمة اخترناها من أفضل ما نملك لأفضل اجازة ممكن تحصل عليها",
                "icon": "http://mabeet.test/images/icons/crown.png",
                "icon_svg": "http://mabeet.test/images/icons/crown.svg",
                "units_count": 1
            },
            {
                "id": 3,
                "title": "تراثي",
                "subtitle": "تجربة استثنائية لاستئجار عقارات تتميز بالطابع التراثي والتاريخي. هذه العقارات تجمع بين الأصالة والعراقة، وتمنحك إحساسًا بالعودة إلى الزمن الجميل.",
                "icon": "http://mabeet.test/images/icons/tower.png",
                "icon_svg": "http://mabeet.test/images/icons/tower.svg",
                "units_count": 0
            },
            {
                "id": 4,
                "title": "مزرعة",
                "subtitle": "فرصة رائعة لاستئجار مزارع ساحرة تقع في أماكن طبيعية خلابة من اختياراتنا المميزة",
                "icon": "http://mabeet.test/images/icons/farm-house.png",
                "icon_svg": "http://mabeet.test/images/icons/farm-house.svg",
                "units_count": 0
            },
            {
                "id": 7,
                "title": "جديد",
                "subtitle": "عقارات مضافة حديثا",
                "icon": "http://mabeet.test/images/icons/newly-added.png",
                "icon_svg": "http://mabeet.test/images/icons/newly-added.svg",
                "units_count": 0
            }
        ]
    },
    "message": null,
    "success": true
}

Units - Show Unit By listing ID

GET https://mabet.dev/companies/api/v1/units/:unit

Headers

KeyValueDescription
Acceptapplication/json
Accept-Languageen
API-Key{{ API_KEY }}

Query Parameters

KeyValueDescription
show_terms1

Example Response

{
    "data": {
        "unit": {
            "id": 11,
            "views": 3504,
            "link": "https://mabet.com.sa/ar/units/11",
            "slug": "astrah-alkhyal",
            "name": "منتجع ومزرعه التوت",
            "code": "DOW-3522",
            "province": "الرياض",
            "city": "الرياض",
            "region": "الديره",
            "area": "150 م2",
            "location": "الديره,الرياض",
            "lat": 22.00000021999999688659954699687659740447998046875,
            "lng": 25.000000249999999368810676969587802886962890625,
            "coupon": {
                "id": 129,
                "code": "new2",
                "text": "هناك خصم اضافي 25 % علي الحجز، أحصل عليه الأن.",
                "color": "#f97066",
                "bg_color": "#fef3f2"
            },
            "badge": {
                "text": "مميز",
                "color": "#5b409f",
                "bg_color": "#ffffff",
                "border_color": "#5b409f",
                "icon": "http://mabeet.test/images/icons/favorites-colored.png",
                "icon_svg": "http://mabeet.test/images/icons/favorites.svg"
            },
            "stars": "9.0",
            "reviews_count": 0,
            "reviews_count_text": "",
            "unit_type": "مزارع",
            "checkin_time": "04:20 مساءاََ",
            "checkout_time": "11:30 مساءاََ",
            "currency": "SAR",
            "unit_for_sentence": "عوائل",
            "unit_for": [
                {
                    "text": "عوائل",
                    "icon": "http://mabeet.test/images/icons/family.png",
                    "icon_svg": "http://mabeet.test/images/icons/family.svg",
                    "color": "#bfa94e",
                    "bg_color": "#f2eedc"
                }
            ],
            "details": "hdhdhehehdh",
            "unit_content": [
                {
                    "key": "toilets",
                    "count": "4",
                    "icon": "http://mabeet.test/images/icons/toilets.png",
                    "icon_svg": "http://mabeet.test/images/icons/toilets.svg"
                },
                {
                    "key": "area",
                    "count": "150 م2",
                    "icon": "http://mabeet.test/images/icons/area.png",
                    "icon_svg": "http://mabeet.test/images/icons/area.svg"
                },
                {
                    "key": "kitchens",
                    "count": "2",
                    "icon": "http://mabeet.test/images/icons/kitchens.png",
                    "icon_svg": "http://mabeet.test/images/icons/kitchens.svg"
                }
            ],
            "counts": {
                "room_count": 2,
                "receptions_count": 0,
                "toilets_count": 4,
                "pools_count": 1,
                "kitchens_count": 2
            },
            "has_videos": false,
            "features": [
                {
                    "name": "يوجد مبلغ تأمين 600.00 ر.س",
                    "icon": "http://mabeet.test/images/icons/insurance.png",
                    "icon_svg": "http://mabeet.test/images/icons/insurance.svg",
                    "list": []
                },
                {
                    "name": "الطاقة الاستيعابية: 14 شخص",
                    "icon": "http://mabeet.test/images/icons/capacity.png",
                    "icon_svg": "http://mabeet.test/images/icons/capacity.svg",
                    "list": []
                },
                {
                    "id": 1,
                    "name": "غرفة نوم",
                    "icon": "http://mabeet.test/images/icons/rooms.png",
                    "icon_svg": "http://mabeet.test/images/icons/rooms.svg",
                    "list": [
                        "غرفتين"
                    ]
                },
                {
                    "id": 1,
                    "name": "مرافق دورات المياة",
                    "icon": "http://mabeet.test/images/icons/toilets.png",
                    "icon_svg": "http://mabeet.test/images/icons/toilets.svg",
                    "list": [
                        "4 دورات مياة",
                        "شامبو",
                        "سلبر",
                        "مناديل"
                    ]
                },
                {
                    "id": 1,
                    "name": "مرافق المطبخ",
                    "icon": "http://mabeet.test/images/icons/kitchens.png",
                    "icon_svg": "http://mabeet.test/images/icons/kitchens.svg",
                    "list": [
                        "مطبخان",
                        "4 كراسي طاولة طعام",
                        "غلاية",
                        "مايكرويف",
                        "آلة قهوة",
                        "فرن"
                    ]
                },
                {
                    "id": 1,
                    "name": "تفاصيل اضافية للمسبح (اختياري)",
                    "icon": "http://mabeet.test/images/icons/pools.png",
                    "icon_svg": "http://mabeet.test/images/icons/pools.svg",
                    "list": [
                        "مسبح واحد",
                        "المسبح مدرج",
                        "المسبح عام"
                    ]
                },
                {
                    "name": "المرافق الاضافية",
                    "icon": "http://mabeet.test/images/icons/additional.png",
                    "icon_svg": "http://mabeet.test/images/icons/additional.svg",
                    "list": [
                        "العاب اطفال",
                        "اضاءة اضافية",
                        "العاب رملية",
                        "بلايستيشن",
                        "بلكونه",
                        "جلسة عريش",
                        "ركن شواء",
                        "غرفة سينما",
                        "قسمين"
                    ]
                }
            ],
            "images": [
                {
                    "image_path": "https://mabet.b-cdn.net/units/thumbnails/image-picker-5ede0632-c18c-4204-9153-b5083a03a49f-2940-0000011aaa534ca8jpg-1988jpg-4986.jpg",
                    "caption": "Blueberry Resort and Farm",
                    "alt": "Blueberry Resort and Farm"
                },
                {
                    "image_path": "https://mabet.b-cdn.net/units/thumbnails/image-picker-e5d64511-5995-4901-ace8-d8a8c65527ff-2940-0000011aab1a6f75jpg-1408jpg-7500.jpg",
                    "caption": "منتجع ومزرعه التوت",
                    "alt": "منتجع ومزرعه التوت"
                },
                {
                    "image_path": "https://mabet.b-cdn.net/units/thumbnails/image-picker-e5d64511-5995-4901-ace8-d8a8c65527ff-2940-0000011aab1a6f75jpg-1408jpg-7500.jpg",
                    "caption": "منتجع ومزرعه التوت",
                    "alt": "منتجع ومزرعه التوت"
                },
                {
                    "image_path": "https://mabet.b-cdn.net/units/thumbnails/image-picker-868639ac-4618-46ee-8172-c7a22d2f6c9d-2940-0000011aa99cd6dcjpg-9089jpg-1691.jpg",
                    "caption": "منتجع ومزرعه التوت",
                    "alt": "منتجع ومزرعه التوت"
                },
                {
                    "image_path": "https://mabet.b-cdn.net/units/thumbnails/image-picker-868639ac-4618-46ee-8172-c7a22d2f6c9d-2940-0000011aa99cd6dcjpg-9089jpg-1691.jpg",
                    "caption": "منتجع ومزرعه التوت",
                    "alt": "منتجع ومزرعه التوت"
                },
                {
                    "image_path": "https://mabet.b-cdn.net/units/thumbnails/image-picker-94b223eb-0b8c-496b-bbef-5cd7e43bfab5-2940-0000011aaad71b5djpg-2530jpg-9304.jpg",
                    "caption": "منتجع ومزرعه التوت",
                    "alt": "منتجع ومزرعه التوت"
                },
                {
                    "image_path": "https://mabet.b-cdn.net/units/thumbnails/67784d1cceef2.jpg",
                    "caption": "منتجع ومزرعه التوت",
                    "alt": "منتجع ومزرعه التوت"
                },
                {
                    "image_path": "https://mabet.b-cdn.net/units/thumbnails/image-picker-3fae4a1d-c3c2-426b-8060-5465142b9a4d-2940-0000011aaa12b95cjpg-1772jpg-1446.jpg",
                    "caption": "منتجع ومزرعه التوت",
                    "alt": "منتجع ومزرعه التوت"
                },
                {
                    "image_path": "https://mabet.b-cdn.net/units/thumbnails/image-picker-3fae4a1d-c3c2-426b-8060-5465142b9a4d-2940-0000011aaa12b95cjpg-1772jpg-1446.jpg",
                    "caption": "منتجع ومزرعه التوت",
                    "alt": "منتجع ومزرعه التوت"
                },
                {
                    "image_path": "https://mabet.b-cdn.net/units/thumbnails/image-picker-519fef8b-429a-4460-9dd6-2545948b03d5-2940-0000011a790c5179jpg-1299jpg-6244.jpg",
                    "caption": "منتجع ومزرعه التوت",
                    "alt": "منتجع ومزرعه التوت"
                },
                {
                    "image_path": "https://mabet.b-cdn.net/units/thumbnails/image-picker-519fef8b-429a-4460-9dd6-2545948b03d5-2940-0000011a790c5179jpg-1299jpg-6244.jpg",
                    "caption": "منتجع ومزرعه التوت",
                    "alt": "منتجع ومزرعه التوت"
                },
                {
                    "image_path": "https://mabet.b-cdn.net/units/thumbnails/image-picker-e334ad50-6baa-49fa-9e06-ef922ecb726f-2940-0000011aa9373a94jpg-2707-1jpg-2689.jpg",
                    "caption": "منتجع ومزرعه التوت",
                    "alt": "منتجع ومزرعه التوت"
                },
                {
                    "image_path": "https://mabet.b-cdn.net/units/thumbnails/image-picker-e334ad50-6baa-49fa-9e06-ef922ecb726f-2940-0000011aa9373a94jpg-2707-1jpg-2689.jpg",
                    "caption": "منتجع ومزرعه التوت",
                    "alt": "منتجع ومزرعه التوت"
                },
                {
                    "image_path": "https://mabet.b-cdn.net/units/thumbnails/image-picker-e334ad50-6baa-49fa-9e06-ef922ecb726f-2940-0000011aa9373a94jpg-2707jpg-9553.jpg",
                    "caption": "منتجع ومزرعه التوت",
                    "alt": "منتجع ومزرعه التوت"
                },
                {
                    "image_path": "https://mabet.b-cdn.net/units/thumbnails/image-picker-e334ad50-6baa-49fa-9e06-ef922ecb726f-2940-0000011aa9373a94jpg-2707jpg-9553.jpg",
                    "caption": "منتجع ومزرعه التوت",
                    "alt": "منتجع ومزرعه التوت"
                }
            ],
            "cancellation_type": "flexible",
            "cancellation_policy": {
                "title": "بإمكانك إلغاء أو تأجيل الحجز قبل الريخ الدخول ب 48 ساعة وفق سياسة الحجوزات الخاصة بـ مبيت.",
                "description": "بإمكانك إلغاء أو تأجيل الحجز قبل الريخ الدخول ب 48 ساعة وفق سياسة الحجوزات الخاصة بـ مبيت.",
                "title_html": "بإمكانك إلغاء أو تأجيل الحجز قبل تاريخ الدخول ب 48 ساعة وفق سياسة الحجوزات الخاصة بـ مبيت.",
                "description_html": "بإمكانك إلغاء أو تأجيل الحجز قبل تاريخ الدخول ب 48 ساعة وفق سياسة الحجوزات الخاصة بـ مبيت."
            },
            "licence_number": {
                "license_text": "مرخص من وزارة السياحة: 50004519"
            },
            "insurance": 600
        }
    },
    "message": null,
    "success": true
}

Units - Unit Calendar Dates

GET https://mabet.dev/companies/api/v1/units/:listing_id/check-dates

Headers

KeyValueDescription
API-Key{{ API_KEY }}

Query Parameters

KeyValueDescription
checkin2025-10-01
checkout2026-01-01

Example Response

{
    "data": {
        "closed_dates": [
            {
                "date": "2025-10-02",
                "type": "available",
                "min_stay": 20,
                "message": "اقل مدة حجز في التاريخ المختار هي 20 ليلة."
            },
            {
                "date": "2025-10-09",
                "type": "available",
                "min_stay": 20,
                "message": "اقل مدة حجز في التاريخ المختار هي 20 ليلة."
            },
            {
                "date": "2025-10-16",
                "type": "available",
                "min_stay": 20,
                "message": "اقل مدة حجز في التاريخ المختار هي 20 ليلة."
            },
            {
                "date": "2025-10-23",
                "type": "available",
                "min_stay": 20,
                "message": "اقل مدة حجز في التاريخ المختار هي 20 ليلة."
            },
            {
                "date": "2025-10-30",
                "type": "available",
                "min_stay": 20,
                "message": "اقل مدة حجز في التاريخ المختار هي 20 ليلة."
            },
            {
                "date": "2025-11-06",
                "type": "available",
                "min_stay": 20,
                "message": "اقل مدة حجز في التاريخ المختار هي 20 ليلة."
            },
            {
                "date": "2025-11-13",
                "type": "available",
                "min_stay": 20,
                "message": "اقل مدة حجز في التاريخ المختار هي 20 ليلة."
            },
            {
                "date": "2025-11-20",
                "type": "available",
                "min_stay": 20,
                "message": "اقل مدة حجز في التاريخ المختار هي 20 ليلة."
            },
            {
                "date": "2025-11-27",
                "type": "available",
                "min_stay": 20,
                "message": "اقل مدة حجز في التاريخ المختار هي 20 ليلة."
            },
            {
                "date": "2025-12-04",
                "type": "available",
                "min_stay": 20,
                "message": "اقل مدة حجز في التاريخ المختار هي 20 ليلة."
            },
            {
                "date": "2025-12-11",
                "type": "available",
                "min_stay": 20,
                "message": "اقل مدة حجز في التاريخ المختار هي 20 ليلة."
            },
            {
                "date": "2025-12-18",
                "type": "available",
                "min_stay": 20,
                "message": "اقل مدة حجز في التاريخ المختار هي 20 ليلة."
            },
            {
                "date": "2025-12-25",
                "type": "available",
                "min_stay": 20,
                "message": "اقل مدة حجز في التاريخ المختار هي 20 ليلة."
            },
            {
                "date": "2026-01-01",
                "type": "available",
                "min_stay": 20,
                "message": "اقل مدة حجز في التاريخ المختار هي 20 ليلة."
            }
        ]
    },
    "message": null,
    "success": true
}

Units - Unit Media

GET https://mabet.dev/companies/api/v1/units/:listing_id/media

Headers

KeyValueDescription
API-Key{{ API_KEY }}

Query Parameters

KeyValueDescription
typevideosimages/videos

Example Response

{
    "data": {
        "media": [
            {
                "id": 47876,
                "type": "image",
                "url": "https://mabet.b-cdn.net/units/thumbnails/image-picker-e5d64511-5995-4901-ace8-d8a8c65527ff-2940-0000011aab1a6f75jpg-1408jpg-7500.jpg"
            },
            {
                "id": 47877,
                "type": "image",
                "url": "https://mabet.b-cdn.net/units/thumbnails/image-picker-e5d64511-5995-4901-ace8-d8a8c65527ff-2940-0000011aab1a6f75jpg-1408jpg-7500.jpg"
            },
            {
                "id": 47878,
                "type": "image",
                "url": "https://mabet.b-cdn.net/units/thumbnails/image-picker-868639ac-4618-46ee-8172-c7a22d2f6c9d-2940-0000011aa99cd6dcjpg-9089jpg-1691.jpg"
            },
            {
                "id": 47879,
                "type": "image",
                "url": "https://mabet.b-cdn.net/units/thumbnails/image-picker-868639ac-4618-46ee-8172-c7a22d2f6c9d-2940-0000011aa99cd6dcjpg-9089jpg-1691.jpg"
            },
            {
                "id": 47880,
                "type": "image",
                "url": "https://mabet.b-cdn.net/units/thumbnails/image-picker-94b223eb-0b8c-496b-bbef-5cd7e43bfab5-2940-0000011aaad71b5djpg-2530jpg-9304.jpg"
            },
            {
                "id": 47881,
                "type": "image",
                "url": "https://mabet.b-cdn.net/units/thumbnails/67784d1cceef2.jpg"
            },
            {
                "id": 47882,
                "type": "image",
                "url": "https://mabet.b-cdn.net/units/thumbnails/image-picker-3fae4a1d-c3c2-426b-8060-5465142b9a4d-2940-0000011aaa12b95cjpg-1772jpg-1446.jpg"
            },
            {
                "id": 47883,
                "type": "image",
                "url": "https://mabet.b-cdn.net/units/thumbnails/image-picker-3fae4a1d-c3c2-426b-8060-5465142b9a4d-2940-0000011aaa12b95cjpg-1772jpg-1446.jpg"
            },
            {
                "id": 47884,
                "type": "image",
                "url": "https://mabet.b-cdn.net/units/thumbnails/image-picker-519fef8b-429a-4460-9dd6-2545948b03d5-2940-0000011a790c5179jpg-1299jpg-6244.jpg"
            },
            {
                "id": 47885,
                "type": "image",
                "url": "https://mabet.b-cdn.net/units/thumbnails/image-picker-519fef8b-429a-4460-9dd6-2545948b03d5-2940-0000011a790c5179jpg-1299jpg-6244.jpg"
            },
            {
                "id": 47886,
                "type": "image",
                "url": "https://mabet.b-cdn.net/units/thumbnails/image-picker-e334ad50-6baa-49fa-9e06-ef922ecb726f-2940-0000011aa9373a94jpg-2707-1jpg-2689.jpg"
            },
            {
                "id": 47887,
                "type": "image",
                "url": "https://mabet.b-cdn.net/units/thumbnails/image-picker-e334ad50-6baa-49fa-9e06-ef922ecb726f-2940-0000011aa9373a94jpg-2707-1jpg-2689.jpg"
            },
            {
                "id": 47888,
                "type": "image",
                "url": "https://mabet.b-cdn.net/units/thumbnails/image-picker-e334ad50-6baa-49fa-9e06-ef922ecb726f-2940-0000011aa9373a94jpg-2707jpg-9553.jpg"
            },
            {
                "id": 47889,
                "type": "image",
                "url": "https://mabet.b-cdn.net/units/thumbnails/image-picker-e334ad50-6baa-49fa-9e06-ef922ecb726f-2940-0000011aa9373a94jpg-2707jpg-9553.jpg"
            }
        ]
    },
    "message": null,
    "success": true
}

Units - Unit Availability By Listing Id

GET https://mabet.dev/companies/api/v1/units/:listing_id/availability

Headers

KeyValueDescription
Acceptapplication/json
API-Key{{ API_KEY }}

Query Parameters

KeyValueDescription
checkin2025-10-27
checkout2025-10-28

Example Response

{
    "data": {
        "unit": {
            "unit_id": 23,
            "slug": "dr-alaaros-shalyh-aal-albhr",
            "city": null,
            "private": null,
            "min_stay": 1,
            "duration": 1,
            "discount_percent": "41.67",
            "discount_text": "خصم 41.67%",
            "duration_count": "ليلة واحدة",
            "from": "2023-09-26",
            "to": "2023-09-27",
            "price_before": "1,200.00 ر.س",
            "price_before_plain": 1200,
            "price": "700.00 ر.س",
            "price_plain": 700,
            "total_before": "1,200.00 ر.س",
            "total_before_plain": 1200,
            "total": "700.00 ر.س",
            "subtotal_plain": 700,
            "total_plain": 700,
            "final_plain": 720.125,
            "final": "720.13 ر.س",
            "insurance": 0,
            "customer_fees": "20.13 ر.س",
            "pre_down_payment": "350.00 ر.س",
            "down_payment": "370.13 ر.س",
            "down_payment_plain": 350,
            "down_payment_percentage": 50
        }
    },
    "message": null,
    "success": true
}

Units - Check Coupon Code

POST https://mabet.dev/companies/api/v1/units/:listing_id/check-coupon

Headers

KeyValueDescription
API-Key{{ API_KEY }}

Form Data

KeyValueDescription
checkin2025-10-10
checkout2025-10-11
couponSAVE50

Example Response

{
    "data": {
        "valid": false
    },
    "message": null,
    "success": true
}

Units - Unit Reviews By Listing ID

GET https://mabet.dev/companies/api/v1/units/:listing_id/reviews

Headers

KeyValueDescription
API-Key{{ API_KEY }}

Example Response

{
    "data": {
        "statics": [
            {
                "name": "نظافة المكان",
                "stars": "9.0",
                "color": "#4ebeb2",
                "bg_color": "#dcf2f0",
                "icon": "http://mabeet.test/images/icons/cleanliness-rating.png",
                "icon_svg": "http://mabeet.test/images/icons/cleanliness-rating.svg",
                "count": 0
            },
            {
                "name": "المطابقة للمواصفات",
                "stars": "9.0",
                "color": "#bfa94e",
                "bg_color": "#f2eedc",
                "icon": "http://mabeet.test/images/icons/quality-rating.png",
                "icon_svg": "http://mabeet.test/images/icons/quality-rating.svg",
                "count": 0
            },
            {
                "name": "خدمة المضيف",
                "stars": "9.0",
                "color": "#4ebf67",
                "bg_color": "#dcf2e1",
                "icon": "http://mabeet.test/images/icons/service-rating.png",
                "icon_svg": "http://mabeet.test/images/icons/service-rating.svg",
                "count": 0
            },
            {
                "name": "حالة المبيت",
                "stars": "9.0",
                "color": "#4ea6bf",
                "bg_color": "#dcedf2",
                "icon": "http://mabeet.test/images/icons/mabet-condition-rating.png",
                "icon_svg": "http://mabeet.test/images/icons/mabet-condition-rating.svg",
                "count": 0
            }
        ],
        "reviews": [],
        "from": null,
        "to": null,
        "total": 0,
        "per_page": 15,
        "current_page": 1,
        "last_page": 1,
        "next_page_url": null,
        "previous_page_url": null
    },
    "message": null,
    "success": true
}

Booking Payment - Create initial booking

POST https://mabet.dev/companies/api/v1/booking/create-init

Headers

KeyValueDescription
User-Agentmobilemobile or web
Accept-Languagear
API-Key{{ API_KEY }}

Example Response

{
    "data": {
        "booking": {
            "id": 101252,
            "code": "345484",
            "from": "2025-10-27 00:00:00",
            "to": "2025-10-28",
            "duration": 1,
            "night_price": "150.00",
            "night_price_text": "150.00 ر.س",
            "sub_total": "150.00",
            "sub_total_text": "150.00 ر.س",
            "insurance": "600.00",
            "insurance_text": "600.00 ر.س",
            "total": "150.00",
            "total_text": "150.00 ر.س",
            "customer_fees": "8.97",
            "customer_fees_text": "8.97 ر.س",
            "show_down_payment": true,
            "down_payment": "121.47",
            "down_payment_text": "121.47 ر.س",
            "full_payment": "158.97",
            "full_payment_text": "158.97 ر.س",
            "coupon": "",
            "discount_amount": "0.00",
            "discount_amount_text": "0.00 ر.س",
            "discount_percent": "0.00",
            "discount_percent_text": 0,
            "additional_receipt_params": []
        }
    },
    "message": null,
    "success": true
}

Booking Payment - Pay By Card

POST https://mabet.dev/companies/api/v1/payment/pay-by-card

Headers

KeyValueDescription
API-Key{{ API_KEY }}

Form Data

KeyValueDescription
booking_code345484
success_urlhttp://example.sa/success-payment.htmlRedirect if payment is successful
failed_urlhttp://example.sa/error-payment.htmlRedirect if payment was failed

Example Response

{
    "data": {
        "redirect_url": "https://payments-dev.urway-tech.com/URWAYPGService/direct.jsp?paymentid=2527413171108446320"
    },
    "message": null,
    "success": true
}

Booking Payment - Show Bookings

GET https://mabet.dev/companies/api/v1/user/bookings

Headers

KeyValueDescription
Acceptapplication/json
API-Key{{ API_KEY }}
User-Phone-Number544696753

Booking Payment - Show Single Bookings

GET https://mabet.dev/companies/api/v1/user/bookings/:booking_code

Headers

KeyValueDescription
Acceptapplication/json
API-Key{{ API_KEY }}
User-Phone-Number544696753

🔔 Webhooks Integration

You can register webhooks to receive real-time notifications on specific booking events for your company. Each webhook can listen to one or more of the following events:

📌 Available Events

🧪 Register Webhook

Use this endpoint to register a new webhook for your account.

POST /api/company/webhooks
Headers:
Authorization: Bearer <company_token>
Body (JSON):
{
  "url": "https://yourdomain.com/webhooks/listener",
  "events": ["success", "failed"]
}
Response:
{
  "id": 1,
  "url": "https://yourdomain.com/webhooks/listener",
  "events": ["success", "failed"],
  "secret": "abc123xyzsecret",
  "status": "active",
  "created_at": "2025-10-29T14:25:00"
}

🔐 Webhook Signature

Each request sent to your webhook URL will contain a secret key in the headers for validation:

X-Webhook-Signature: <generated_signature>

You should validate this signature using the secret provided during webhook registration to ensure authenticity.

⚠️ Retry Logic

If your endpoint fails to respond with HTTP 200, the system will automatically retry with exponential backoff up to 3 times.

📤 Example Webhook Payload

{
  "event": "success",
  "booking_code": "MB123456",
  "data": {
    "amount": 200.00,
    "status": "confirmed",
    "customer": {
      "name": "Ahmed Yasser",
      "phone": "+966..."
    }
  }
}

For security, please verify all incoming webhook requests using the signature header before processing.