{"info":{"_postman_id":"cf324324-b69f-4881-8a7c-68b7d2667c25","name":"West Wales Holiday Cottages - Partner APIs","description":"<html><head></head><body><p>Welcome to the <strong>West Wales Holiday Cottages Partner API</strong>. This API allows our partners to retrieve <strong>property listings, availability, pricing, and reviews</strong>, while ensuring data integrity and performance. Designed with flexibility in mind, the API supports <strong>HATEOAS (Hypermedia as the Engine of Application State)</strong> principles, enabling seamless navigation through available resources.</p>\n<p>This API is intended for <strong>approved partners</strong> who wish to integrate our property data into their platforms. It provides <strong>real-time updates</strong> on property availability, pricing adjustments, and user-generated content such as reviews.</p>\n<h2 id=\"general-api-rules--best-practices\"><strong>General API Rules &amp; Best Practices</strong></h2>\n<h5 id=\"1-authentication--security\"><strong>1. Authentication &amp; Security</strong></h5>\n<ul>\n<li><p>Each partner is issued an <strong>API token</strong>, which must be included in the <code>Authorization</code> header as a <strong>Bearer token</strong>.</p>\n</li>\n<li><p>Tokens are <strong>private credentials</strong>—do not expose them in public repositories or client-side applications.</p>\n</li>\n</ul>\n<h5 id=\"2-hateoas-compliance\"><strong>2. HATEOAS Compliance</strong></h5>\n<ul>\n<li><p>Every response contains <strong>links</strong> to related resources, ensuring easy navigation.</p>\n</li>\n<li><p>Clients should <strong>always use these links</strong> instead of constructing URLs manually.</p>\n</li>\n</ul>\n<h5 id=\"3-data-integrity--filtering\"><strong>3. Data Integrity &amp; Filtering</strong></h5>\n<ul>\n<li><p>Only <strong>active properties</strong> are returned in any API response.</p>\n</li>\n<li><p>Responses are <strong>paginated</strong> to improve performance.</p>\n</li>\n<li><p>The API supports <strong>filtering</strong> and <strong>query parameters</strong> where applicable.</p>\n</li>\n</ul>\n<h5 id=\"4-rate-limiting--performance\"><strong>4. Rate Limiting &amp; Performance</strong></h5>\n<ul>\n<li><p>The API enforces <strong>rate limits</strong> to ensure fair usage (<code>1000 requests per minute</code>).</p>\n</li>\n<li><p>Large data sets (e.g., property listings) are <strong>paginated</strong>.</p>\n</li>\n<li><p>Our \"changes\" endpoint respects the <code>X-Modified-Since</code> header, which allows efficient retrieval of only changed data.</p>\n</li>\n</ul>\n<h5 id=\"5-handling-property--availability-updates\"><strong>5. Handling Property &amp; Availability Updates</strong></h5>\n<ul>\n<li><p>Use the <strong>Changes API (<strong><strong><code>/api/partners/properties/changes</code></strong></strong>)</strong> to fetch only properties that have been modified since a given date. Passing in your \"X-Modified-Since\" header with the last date and time that you crawled this end point.</p>\n</li>\n<li><p>Availability, pricing, and reviews are fetched <strong>separately</strong> for performance reasons.</p>\n</li>\n</ul>\n<h5 id=\"6-error-handling\"><strong>6. Error Handling</strong></h5>\n<ul>\n<li><p><strong>HTTP Status Codes</strong>:</p>\n<ul>\n<li><p><code>200 OK</code> – Successful response</p>\n</li>\n<li><p><code>400 Bad Request</code> – Invalid input</p>\n</li>\n<li><p><code>401 Unauthorized</code> – Missing or invalid token</p>\n</li>\n<li><p><code>403 Forbidden</code> – Insufficient permissions</p>\n</li>\n<li><p><code>404 Not Found</code> – Resource unavailable</p>\n</li>\n<li><p><code>429 Too Many Requests</code> – Rate limit exceeded</p>\n</li>\n</ul>\n</li>\n</ul>\n<hr>\n<h2 id=\"header-responses\">Header Responses</h2>\n<p>Headers from our API results will include the following information which developers may find useful.</p>\n<ul>\n<li><p><code>X-RateLimit-Limit</code> - The total number of requests per minute this end point allows.</p>\n</li>\n<li><p><code>X-RateLimit-Remaining</code> - The remaining number of requests your IP is limited to.</p>\n</li>\n</ul>\n<hr>\n<h2 id=\"how-to-get-started\"><strong>How to Get Started</strong></h2>\n<ol>\n<li><p><strong>Obtain API Credentials</strong> – Contact our team for access.</p>\n</li>\n<li><p><strong>Authenticate</strong> – Include your API token in the <code>Authorization</code> header.</p>\n</li>\n<li><p><strong>Explore Endpoints</strong> – Retrieve properties, availability, pricing, and reviews.</p>\n</li>\n<li><p><strong>Use HATEOAS Links</strong> – Follow the provided links for seamless navigation.</p>\n</li>\n</ol>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"23538817","collectionId":"cf324324-b69f-4881-8a7c-68b7d2667c25","publishedId":"2sAYkLmbvz","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"38a169"},"publishDate":"2025-05-12T16:18:13.000Z"},"item":[{"name":"Authentication","item":[{"name":"login","event":[{"listen":"test","script":{"id":"5c4d97f6-f08c-40d5-bb1e-77ef065f0667","exec":["// Get the token from the JSON response\r","let jsonData = pm.response.json();\r","\r","// Set it as an environment variable\r","pm.environment.set(\"token\", jsonData.token);\r",""],"type":"text/javascript","packages":{}}}],"id":"6e11df87-8d44-4baa-af39-d48388c4f00f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"email","value":"{{user_email}}","type":"text"},{"key":"password","value":"{{user_password}}","type":"text"}]},"url":"{{domain}}/api/partners/auth/login","description":"<h3 id=\"partner-authentication-login\">Partner Authentication Login</h3>\n<p>This endpoint allows partners to authenticate and obtain a token for accessing protected resources.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<ul>\n<li><p><code>email</code> (text): Email address tied to you account.</p>\n</li>\n<li><p><code>password</code> (text): Your password.</p>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>Upon successful authentication, the server responds with a status code of 200 and a JSON object containing the authentication token.</p>\n<p>Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"token\": \"132|eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9\"\n}\n\n</code></pre>\n","urlObject":{"path":["api","partners","auth","login"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6e11df87-8d44-4baa-af39-d48388c4f00f"},{"name":"change password","event":[{"listen":"test","script":{"id":"5c4d97f6-f08c-40d5-bb1e-77ef065f0667","exec":["// Get the token from the JSON response\r","let jsonData = pm.response.json();\r","\r","// Set it as an environment variable\r","pm.environment.set(\"token\", jsonData.token);\r",""],"type":"text/javascript","packages":{}}}],"id":"2134b01f-3d48-447f-9660-acc67135b836","protocolProfileBehavior":{"disableBodyPruning":true,"followRedirects":true,"disabledSystemHeaders":{}},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"current_password","value":"{{user_password}}","type":"text"},{"key":"new_password","value":"testing","type":"text"},{"key":"new_password_confirmed","value":"test2","type":"text","uuid":"e6bdb57b-841e-4c6c-b0de-8dce20256809"}]},"url":"{{domain}}/api/partners/auth/change-password","description":"<h3 id=\"partner-authentication-login\">Partner Authentication Login</h3>\n<p>This endpoint allows partners to authenticate and obtain a token for accessing protected resources.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<ul>\n<li><p><code>current_password</code> (text): Your current password assigned to the account.</p>\n</li>\n<li><p><code>new_password</code> (text): Your password.</p>\n</li>\n<li><p><code>new_password_confirmation</code> (text): Must match <code>new_password</code>.</p>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>Upon successful authentication, the server responds with a status code of 200 and a JSON object containing the authentication token.</p>\n<p>After changing a password, all previous tokens are revoked.</p>\n<p>Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"message\": \"Password updated successfully.\",\n    \"token\": \"221|OJxkZxI27YiptN7j8QIBlGooi3M2xyIU9FSetitd36db6a3d\"\n}\n\n</code></pre>\n","urlObject":{"path":["api","partners","auth","change-password"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2134b01f-3d48-447f-9660-acc67135b836"},{"name":"my bookings","event":[{"listen":"test","script":{"id":"5c4d97f6-f08c-40d5-bb1e-77ef065f0667","exec":[""],"type":"text/javascript","packages":{}}}],"id":"7a4fe8d6-072b-4945-84ca-3a7f96e56d44","protocolProfileBehavior":{"disableBodyPruning":true,"followRedirects":true,"disabledSystemHeaders":{}},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[{"key":"X-Modified-Since","value":"2025-05-11T00:00:00+00:00","description":"<p>OPTIONAL - ISO 8601 formatted timestamp</p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":"{{domain}}/api/partners/auth/my-bookings","description":"<h3 id=\"get-your-bookings\">Get Your Bookings</h3>\n<p>This endpoint is used to retrieve bookings that you have made based on the provided filters.</p>\n<p>It can be used for reconciliation purposes, as well as to check the status of any given booking you have pushed into our system.</p>\n<p>Each booking will also return a \"value\" field, which is the total amount for the guest. As bookings can occasionally increase or decrease in value after a sale (for example, a guest may add dogs after initially booking), we recommend checking this against your records of what was originally sent to us at time of booking.</p>\n<p>Additionally, \"value_ex_damage_deposit\" is returned, which is the typical total cost of the holiday, minus the amount a guest may be due to be refunded.</p>\n<h4 id=\"expected-input\">Expected Input</h4>\n<ul>\n<li><p>Method: GET</p>\n</li>\n<li><p>URL: {{domain}}/api/partners/auth/my-bookings</p>\n</li>\n</ul>\n<p>All of the following parameters are optional, but can be passed in to filter bookings faster.</p>\n<p>You may use <code>_from</code> and <code>_to</code> type parameters to search ranges, or for simplicity to find exact dates, <code>_on</code> parameters can be used.</p>\n<p>Any dates passed in in the query parameters by default will look from the start of the day, to the end of the day.</p>\n<p>For example, <code>created_on</code> \"2025-05-01\" will search \"2025-05-01 00:00:00\" to \"2025-05-01 23:59:59\".</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>status</code></td>\n<td>Integer</td>\n<td>Filter by booking status:<code>0 = Active 1 = Cancelled 3 = Provisional</code></td>\n</tr>\n<tr>\n<td><code>created_on</code></td>\n<td>Date</td>\n<td>Filter bookings created on this specific date (e.g. <code>2025-04-30</code>).  <br />⛔ <strong>Cannot</strong> be used with <code>created_from</code> / <code>created_to</code></td>\n</tr>\n<tr>\n<td><code>created_from</code></td>\n<td>Date</td>\n<td>Filter bookings created <strong>from</strong> this date. Requires <code>created_to</code>.</td>\n</tr>\n<tr>\n<td><code>created_to</code></td>\n<td>Date</td>\n<td>Filter bookings created <strong>to</strong> this date. Requires <code>created_from</code>.</td>\n</tr>\n<tr>\n<td><code>check_in_on</code></td>\n<td>Date</td>\n<td>Filter bookings arriving on this specific date (e.g. <code>2025-07-18</code>).  <br />⛔ <strong>Cannot</strong> be used with <code>check_in_from</code> / <code>check_in_to</code></td>\n</tr>\n<tr>\n<td><code>check_in_from</code></td>\n<td>Date</td>\n<td>Filter bookings arriving <strong>from</strong> this date. Requires <code>check_in_to</code>.</td>\n</tr>\n<tr>\n<td><code>check_in_to</code></td>\n<td>Date</td>\n<td>Filter bookings arriving <strong>to</strong> this date. Requires <code>check_in_from</code>.</td>\n</tr>\n<tr>\n<td><code>page</code></td>\n<td>Integer</td>\n<td>Page number for pagination (default is <code>1</code>)</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"expected-output\">Expected Output</h4>\n<p>Upon a successful request, the server responds with a status code of 200 and a JSON object containing an array of booking data. Each booking object includes details such as ID, metadata, reservation, customer, and property. Additionally, the response includes links for navigation and metadata about the total number of bookings and pagination.</p>\n<p>The response is paginated, with up to 20 bookings returned per page.</p>\n","urlObject":{"path":["api","partners","auth","my-bookings"],"host":["{{domain}}"],"query":[{"disabled":true,"description":{"content":"<p>OPTIONAL - 0 = ACTIVE (CONFIRMED), 1 = CANCELLED, 3 = PROVISIONAL</p>\n","type":"text/plain"},"key":"status","value":"1"},{"disabled":true,"description":{"content":"<p>OPTIONAL - YYYY-MM-DD, must be paired with check_in_to</p>\n","type":"text/plain"},"key":"check_in_from","value":"2025-07-18"},{"disabled":true,"description":{"content":"<p>OPTIONAL - YYYY-MM-DD, must be paired with check_in_from</p>\n","type":"text/plain"},"key":"check_in_to","value":"2025-07-20"},{"disabled":true,"description":{"content":"<p>OPTIONAL - YYYY-MM-DD, overrides check_in_from/to</p>\n","type":"text/plain"},"key":"check_in_on","value":"2025-07-18"},{"disabled":true,"description":{"content":"<p>OPTIONAL - YYYY-MM-DD, must be paired with created_to</p>\n","type":"text/plain"},"key":"created_from","value":"2025-05-01"},{"disabled":true,"description":{"content":"<p>OPTIONAL - YYYY-MM-DD, must be paired with created_from</p>\n","type":"text/plain"},"key":"created_to","value":"2025-05-02"},{"disabled":true,"description":{"content":"<p>OPTIONAL - YYYY-MM-DD, overrides created_from/to</p>\n","type":"text/plain"},"key":"created_on","value":"2025-04-30"}],"variable":[]}},"response":[{"id":"92b9e3dc-01d4-41e2-acde-f5bf46443cd9","name":"success","originalRequest":{"method":"GET","header":[{"key":"X-Modified-Since","value":"2025-05-11T00:00:00+00:00","description":"OPTIONAL - ISO 8601 formatted timestamp","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{domain}}/api/partners/auth/my-bookings?status=1&check_in_on=2025-07-18&created_on=2025-04-30","host":["{{domain}}"],"path":["api","partners","auth","my-bookings"],"query":[{"key":"status","value":"1","description":"OPTIONAL - 0 = ACTIVE (CONFIRMED), 1 = CANCELLED, 3 = PROVISIONAL"},{"key":"check_in_from","value":"2025-07-18","description":"OPTIONAL - YYYY-MM-DD, must be paired with check_in_to","disabled":true},{"key":"check_in_to","value":"2025-07-20","description":"OPTIONAL - YYYY-MM-DD, must be paired with check_in_from","disabled":true},{"key":"check_in_on","value":"2025-07-18","description":"OPTIONAL - YYYY-MM-DD, overrides check_in_from/to"},{"key":"created_from","value":"2025-05-01","description":"OPTIONAL - YYYY-MM-DD, must be paired with created_to","disabled":true},{"key":"created_to","value":"2025-05-02","description":"OPTIONAL - YYYY-MM-DD, must be paired with created_from","disabled":true},{"key":"created_on","value":"2025-04-30","description":"OPTIONAL - YYYY-MM-DD, overrides created_from/to"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8080"},{"key":"Date","value":"Mon, 02 Jun 2025 09:37:04 GMT"},{"key":"Date","value":"Mon, 02 Jun 2025 09:37:04 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.2.0"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"1000"},{"key":"X-RateLimit-Remaining","value":"999"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 11021771,\n            \"metadata\": {\n                \"booked_at\": \"2025-04-30 5:08:54pm\",\n                \"updated_at\": \"2025-05-28 1:13:28pm\"\n            },\n            \"reservation\": {\n                \"reference\": \"11021771\",\n                \"booked_at\": \"2025-04-30 5:08:54pm\",\n                \"check_in\": \"2025-07-18\",\n                \"check_out\": \"2025-07-25\",\n                \"nights\": \"7\",\n                \"value\": \"1889.00\",\n                \"value_ex_damage_deposit\": \"1889.00\",\n                \"status\": {\n                    \"code\": 1,\n                    \"label\": \"cancelled\"\n                }\n            },\n            \"customer\": {\n                \"last_name\": \"Doe\",\n                \"tel_mob\": \"07898654321\",\n                \"email\": \"valid@email.com\"\n            },\n            \"property\": {\n                \"id\": 11401,\n                \"name\": \"Seabank\",\n                \"ref\": \"seabank\"\n            }\n        },\n        {\n            \"id\": 11021768,\n            \"metadata\": {\n                \"booked_at\": \"2025-04-30 4:07:38pm\",\n                \"updated_at\": \"2025-05-28 1:13:28pm\"\n            },\n            \"reservation\": {\n                \"reference\": \"11021768\",\n                \"booked_at\": \"2025-04-30 4:07:38pm\",\n                \"check_in\": \"2025-07-18\",\n                \"check_out\": \"2025-07-25\",\n                \"nights\": \"7\",\n                \"value\": \"1889.00\",\n                \"value_ex_damage_deposit\": \"1789.00\",\n                \"status\": {\n                    \"code\": 1,\n                    \"label\": \"cancelled\"\n                }\n            },\n            \"customer\": {\n                \"last_name\": \"Doe\",\n                \"tel_mob\": \"07898654321\",\n                \"email\": \"valid@email.com\"\n            },\n            \"property\": {\n                \"id\": 11401,\n                \"name\": \"Seabank\",\n                \"ref\": \"seabank\"\n            }\n        },\n        {\n            \"id\": 11021767,\n            \"metadata\": {\n                \"booked_at\": \"2025-04-30 4:00:42pm\",\n                \"updated_at\": \"2025-05-28 1:13:28pm\"\n            },\n            \"reservation\": {\n                \"reference\": \"11021767\",\n                \"booked_at\": \"2025-04-30 4:00:42pm\",\n                \"check_in\": \"2025-07-18\",\n                \"check_out\": \"2025-07-25\",\n                \"nights\": \"7\",\n                \"value\": \"1889.00\",\n                \"value_ex_damage_deposit\": \"1789.00\",\n                \"status\": {\n                    \"code\": 1,\n                    \"label\": \"cancelled\"\n                }\n            },\n            \"customer\": {\n                \"last_name\": \"Doe\",\n                \"tel_mob\": \"07898654321\",\n                \"email\": \"valid@email.com\"\n            },\n            \"property\": {\n                \"id\": 11401,\n                \"name\": \"Seabank\",\n                \"ref\": \"seabank\"\n            }\n        },\n        {\n            \"id\": 11021764,\n            \"metadata\": {\n                \"booked_at\": \"2025-04-30 2:27:53pm\",\n                \"updated_at\": \"2025-05-28 1:13:28pm\"\n            },\n            \"reservation\": {\n                \"reference\": \"11021764\",\n                \"booked_at\": \"2025-04-30 2:27:53pm\",\n                \"check_in\": \"2025-07-18\",\n                \"check_out\": \"2025-07-25\",\n                \"nights\": \"7\",\n                \"value\": \"1889.00\",\n                \"value_ex_damage_deposit\": \"1789.00\",\n                \"status\": {\n                    \"code\": 1,\n                    \"label\": \"cancelled\"\n                }\n            },\n            \"customer\": {\n                \"last_name\": \"Doe\",\n                \"tel_mob\": \"07898654321\",\n                \"email\": \"valid@email.com\"\n            },\n            \"property\": {\n                \"id\": 11401,\n                \"name\": \"Seabank\",\n                \"ref\": \"seabank\"\n            }\n        },\n        {\n            \"id\": 11021763,\n            \"metadata\": {\n                \"booked_at\": \"2025-04-30 1:11:47pm\",\n                \"updated_at\": \"2025-05-28 1:13:28pm\"\n            },\n            \"reservation\": {\n                \"reference\": \"11021763\",\n                \"booked_at\": \"2025-04-30 1:11:47pm\",\n                \"check_in\": \"2025-07-18\",\n                \"check_out\": \"2025-07-25\",\n                \"nights\": \"7\",\n                \"value\": \"1889.00\",\n                \"value_ex_damage_deposit\": \"1789.00\",\n                \"status\": {\n                    \"code\": 1,\n                    \"label\": \"cancelled\"\n                }\n            },\n            \"customer\": {\n                \"last_name\": \"Doe\",\n                \"tel_mob\": \"07898654321\",\n                \"email\": \"valid@email.com\"\n            },\n            \"property\": {\n                \"id\": 11401,\n                \"name\": \"Seabank\",\n                \"ref\": \"seabank\"\n            }\n        }\n    ],\n    \"_links\": {\n        \"self\": \"{{domain}}/api/partners/auth/my-bookings?page=1\",\n        \"first\": \"{{domain}}/api/partners/auth/my-bookings?page=1\",\n        \"last\": \"{{domain}}/api/partners/auth/my-bookings?page=1\",\n        \"prev\": null,\n        \"next\": null\n    },\n    \"meta\": {\n        \"total\": 5,\n        \"current_page\": 1,\n        \"from\": 1,\n        \"to\": 5,\n        \"per_page\": 20,\n        \"last_page\": 1\n    }\n}"}],"_postman_id":"7a4fe8d6-072b-4945-84ca-3a7f96e56d44"},{"name":"logout","id":"b17d30b1-9fbe-4997-bb3f-813a363b324e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{domain}}/api/partners/logout","urlObject":{"path":["api","partners","logout"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b17d30b1-9fbe-4997-bb3f-813a363b324e"}],"id":"d587ca2b-8005-4c9b-89a3-1a02c070c4ba","description":"<p>Partners must send their <strong>username (email) and password</strong> to the <strong>login endpoint</strong> to receive an authentication token which can be used in all subsequent calls.</p>\n","_postman_id":"d587ca2b-8005-4c9b-89a3-1a02c070c4ba"},{"name":"Properties","item":[{"name":"changes","id":"7fdedd49-af83-4201-9567-ed4e75db7e52","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Modified-Since","value":"2025-03-11T00:00:00+00:00","type":"text"}],"url":"{{domain}}/api/partners/properties/changes","description":"<h3 id=\"changes-endpoint---incremental-updates\">Changes Endpoint - Incremental Updates</h3>\n<p>After your initial crawl and retrieval of all properties, we strongly recommend that you <strong>use this endpoint periodically</strong> rather than continuously re-indexing the entire dataset.</p>\n<p>To do this, you must provide a custom HTTP header:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-yaml\">X-Modified-Since: [ISO 8601 formatted timestamp]\n\n</code></pre>\n<p>This should be the <strong>timestamp of the last time you successfully synced</strong> with our properties API. We will return only the properties that have had relevant changes (e.g. pricing, availability, reviews) since that time.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"3f073019-b235-4945-8bf1-9594767d99d5","id":"3f073019-b235-4945-8bf1-9594767d99d5","name":"Properties","type":"folder"}},"urlObject":{"path":["api","partners","properties","changes"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"92438cfb-1730-4270-851c-c6fcf5f700cc","name":"success","originalRequest":{"method":"GET","header":[{"key":"X-Modified-Since","value":"2025-03-11T00:00:00+00:00","type":"text"}],"url":"{{domain}}/api/partners/properties/changes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 26 Mar 2025 21:39:08 GMT"},{"key":"Server","value":"Apache/2.4.52 (Ubuntu)"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"1000"},{"key":"X-RateLimit-Remaining","value":"999"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Vary","value":"Authorization"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"modified_since\": \"2025-03-11T00:00:00+00:00\",\n        \"changes\": [\n            {\n                \"property_id\": 9697,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9697\",\n                    \"availability\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9697/availability\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9697/pricing\"\n                }\n            },\n            {\n                \"property_id\": 9714,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9714\",\n                    \"availability\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9714/availability\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9714/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11401,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11401\",\n                    \"availability\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11401/availability\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11401/pricing\"\n                }\n            },\n            {\n                \"property_id\": 9749,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9749\",\n                    \"availability\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9749/availability\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9749/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11482,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11482\",\n                    \"availability\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11482/availability\"\n                }\n            },\n            {\n                \"property_id\": 9705,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9705\",\n                    \"availability\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9705/availability\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9705/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11511,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11511\",\n                    \"availability\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11511/availability\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11511/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11117,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11117\",\n                    \"availability\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11117/availability\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11117/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10875,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10875\",\n                    \"availability\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10875/availability\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10875/pricing\"\n                }\n            },\n            {\n                \"property_id\": 9709,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9709\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9709/pricing\"\n                }\n            },\n            {\n                \"property_id\": 9713,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9713\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9713/pricing\"\n                }\n            },\n            {\n                \"property_id\": 9787,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9787\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9787/pricing\"\n                }\n            },\n            {\n                \"property_id\": 9786,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9786\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9786/pricing\"\n                }\n            },\n            {\n                \"property_id\": 9739,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9739\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9739/pricing\"\n                }\n            },\n            {\n                \"property_id\": 9849,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9849\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9849/pricing\"\n                }\n            },\n            {\n                \"property_id\": 9831,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9831\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9831/pricing\"\n                }\n            },\n            {\n                \"property_id\": 9858,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9858\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9858/pricing\"\n                }\n            },\n            {\n                \"property_id\": 9860,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9860\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9860/pricing\"\n                }\n            },\n            {\n                \"property_id\": 9829,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9829\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9829/pricing\"\n                }\n            },\n            {\n                \"property_id\": 9827,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9827\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9827/pricing\"\n                }\n            },\n            {\n                \"property_id\": 9863,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9863\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9863/pricing\"\n                }\n            },\n            {\n                \"property_id\": 9861,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9861\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9861/pricing\"\n                }\n            },\n            {\n                \"property_id\": 9834,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9834\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9834/pricing\"\n                }\n            },\n            {\n                \"property_id\": 9919,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9919\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9919/pricing\"\n                }\n            },\n            {\n                \"property_id\": 9855,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9855\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9855/pricing\"\n                }\n            },\n            {\n                \"property_id\": 9844,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9844\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9844/pricing\"\n                }\n            },\n            {\n                \"property_id\": 9862,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9862\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9862/pricing\"\n                }\n            },\n            {\n                \"property_id\": 9907,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9907\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9907/pricing\"\n                }\n            },\n            {\n                \"property_id\": 9964,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9964\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9964/pricing\"\n                }\n            },\n            {\n                \"property_id\": 9967,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9967\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9967/pricing\"\n                }\n            },\n            {\n                \"property_id\": 9970,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9970\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9970/pricing\"\n                }\n            },\n            {\n                \"property_id\": 9922,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9922\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9922/pricing\"\n                }\n            },\n            {\n                \"property_id\": 9931,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9931\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9931/pricing\"\n                }\n            },\n            {\n                \"property_id\": 9894,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9894\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9894/pricing\"\n                }\n            },\n            {\n                \"property_id\": 9927,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9927\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9927/pricing\"\n                }\n            },\n            {\n                \"property_id\": 9945,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9945\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9945/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10001,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10001\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10001/pricing\"\n                }\n            },\n            {\n                \"property_id\": 9878,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9878\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9878/pricing\"\n                }\n            },\n            {\n                \"property_id\": 9993,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9993\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9993/pricing\"\n                }\n            },\n            {\n                \"property_id\": 9942,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9942\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9942/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10026,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10026\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10026/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10003,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10003\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10003/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10007,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10007\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10007/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10126,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10126\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10126/pricing\"\n                }\n            },\n            {\n                \"property_id\": 9975,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9975\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9975/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10002,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10002\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10002/pricing\"\n                }\n            },\n            {\n                \"property_id\": 9991,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9991\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9991/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10135,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10135\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10135/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10148,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10148\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10148/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10154,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10154\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10154/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10047,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10047\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10047/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10038,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10038\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10038/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10122,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10122\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10122/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10120,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10120\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10120/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10164,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10164\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10164/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10103,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10103\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10103/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10155,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10155\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10155/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10181,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10181\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10181/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10192,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10192\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10192/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10182,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10182\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10182/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10139,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10139\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10139/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10156,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10156\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10156/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10228,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10228\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10228/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10251,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10251\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10251/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10262,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10262\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10262/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10234,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10234\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10234/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10235,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10235\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10235/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10275,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10275\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10275/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10178,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10178\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10178/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10236,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10236\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10236/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10172,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10172\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10172/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10241,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10241\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10241/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10261,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10261\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10261/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10221,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10221\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10221/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10265,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10265\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10265/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10271,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10271\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10271/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10277,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10277\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10277/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10312,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10312\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10312/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10300,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10300\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10300/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10298,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10298\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10298/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10301,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10301\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10301/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10336,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10336\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10336/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10317,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10317\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10317/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10348,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10348\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10348/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10322,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10322\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10322/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10323,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10323\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10323/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10383,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10383\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10383/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10331,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10331\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10331/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10337,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10337\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10337/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10420,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10420\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10420/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10403,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10403\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10403/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10324,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10324\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10324/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10446,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10446\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10446/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10426,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10426\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10426/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10442,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10442\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10442/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10458,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10458\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10458/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10470,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10470\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10470/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10360,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10360\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10360/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10333,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10333\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10333/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10332,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10332\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10332/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10359,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10359\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10359/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10503,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10503\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10503/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10365,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10365\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10365/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10456,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10456\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10456/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10504,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10504\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10504/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10521,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10521\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10521/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10476,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10476\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10476/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10432,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10432\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10432/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10525,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10525\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10525/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10522,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10522\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10522/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10544,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10544\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10544/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10489,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10489\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10489/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10491,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10491\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10491/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10558,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10558\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10558/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10417,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10417\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10417/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10514,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10514\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10514/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10502,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10502\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10502/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10527,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10527\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10527/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10590,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10590\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10590/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10505,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10505\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10505/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10602,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10602\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10602/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10540,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10540\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10540/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10528,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10528\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10528/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10551,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10551\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10551/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10593,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10593\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10593/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10563,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10563\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10563/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10585,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10585\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10585/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10630,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10630\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10630/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10632,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10632\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10632/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10609,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10609\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10609/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10634,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10634\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10634/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10629,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10629\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10629/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10605,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10605\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10605/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10666,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10666\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10666/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10660,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10660\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10660/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10663,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10663\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10663/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10623,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10623\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10623/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10624,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10624\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10624/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10625,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10625\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10625/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10680,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10680\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10680/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10626,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10626\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10626/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10627,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10627\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10627/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10671,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10671\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10671/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10709,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10709\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10709/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10689,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10689\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10689/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10711,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10711\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10711/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10673,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10673\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10673/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10712,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10712\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10712/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10674,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10674\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10674/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10643,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10643\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10643/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10692,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10692\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10692/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10737,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10737\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10737/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10696,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10696\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10696/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10742,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10742\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10742/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10710,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10710\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10710/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10744,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10744\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10744/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10703,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10703\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10703/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10719,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10719\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10719/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10758,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10758\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10758/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10754,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10754\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10754/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10738,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10738\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10738/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10792,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10792\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10792/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10795,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10795\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10795/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10793,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10793\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10793/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10781,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10781\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10781/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10751,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10751\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10751/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10752,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10752\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10752/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10806,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10806\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10806/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10791,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10791\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10791/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10782,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10782\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10782/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10807,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10807\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10807/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10790,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10790\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10790/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10811,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10811\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10811/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10835,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10835\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10835/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10805,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10805\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10805/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10839,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10839\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10839/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10766,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10766\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10766/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10797,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10797\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10797/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10812,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10812\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10812/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10828,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10828\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10828/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10847,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10847\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10847/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10816,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10816\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10816/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10833,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10833\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10833/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10854,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10854\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10854/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10866,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10866\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10866/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10819,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10819\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10819/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10891,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10891\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10891/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10836,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10836\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10836/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10901,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10901\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10901/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10838,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10838\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10838/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10888,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10888\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10888/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10905,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10905\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10905/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10917,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10917\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10917/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10923,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10923\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10923/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10907,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10907\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10907/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10906,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10906\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10906/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10899,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10899\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10899/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10897,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10897\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10897/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10870,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10870\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10870/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10955,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10955\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10955/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10947,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10947\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10947/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10956,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10956\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10956/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10900,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10900\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10900/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10913,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10913\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10913/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10936,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10936\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10936/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10932,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10932\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10932/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10973,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10973\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10973/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10949,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10949\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10949/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10971,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10971\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10971/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10928,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10928\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10928/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10981,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10981\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10981/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10939,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10939\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10939/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10957,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10957\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10957/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10958,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10958\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10958/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10979,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10979\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10979/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10977,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10977\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10977/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11001,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11001\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11001/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11007,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11007\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11007/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11006,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11006\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11006/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10998,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10998\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10998/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10976,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10976\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10976/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10986,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10986\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10986/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11002,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11002\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11002/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10978,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10978\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10978/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11016,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11016\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11016/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11018,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11018\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11018/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11019,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11019\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11019/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11031,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11031\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11031/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11008,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11008\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11008/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11037,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11037\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11037/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11029,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11029\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11029/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11042,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11042\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11042/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11009,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11009\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11009/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11012,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11012\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11012/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11030,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11030\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11030/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11045,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11045\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11045/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11047,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11047\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11047/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11020,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11020\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11020/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11058,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11058\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11058/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11052,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11052\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11052/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11033,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11033\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11033/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11041,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11041\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11041/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11034,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11034\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11034/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11050,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11050\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11050/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11083,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11083\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11083/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11040,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11040\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11040/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11032,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11032\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11032/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11081,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11081\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11081/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11069,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11069\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11069/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11061,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11061\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11061/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11101,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11101\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11101/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11109,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11109\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11109/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11108,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11108\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11108/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11074,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11074\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11074/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11114,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11114\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11114/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11118,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11118\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11118/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11112,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11112\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11112/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11123,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11123\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11123/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11141,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11141\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11141/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11133,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11133\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11133/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11142,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11142\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11142/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11129,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11129\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11129/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11119,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11119\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11119/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11120,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11120\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11120/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11144,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11144\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11144/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11107,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11107\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11107/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11160,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11160\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11160/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11134,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11134\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11134/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11162,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11162\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11162/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11166,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11166\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11166/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11130,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11130\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11130/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11148,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11148\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11148/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11143,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11143\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11143/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11179,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11179\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11179/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11156,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11156\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11156/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11199,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11199\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11199/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11167,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11167\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11167/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11139,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11139\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11139/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11124,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11124\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11124/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11201,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11201\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11201/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11205,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11205\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11205/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11194,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11194\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11194/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11157,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11157\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11157/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11203,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11203\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11203/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11211,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11211\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11211/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11202,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11202\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11202/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11188,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11188\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11188/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11182,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11182\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11182/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11216,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11216\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11216/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11158,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11158\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11158/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11226,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11226\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11226/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11223,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11223\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11223/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11234,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11234\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11234/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11186,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11186\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11186/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11235,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11235\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11235/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11229,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11229\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11229/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11250,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11250\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11250/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11241,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11241\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11241/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11252,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11252\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11252/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11228,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11228\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11228/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11210,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11210\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11210/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11245,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11245\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11245/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11251,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11251\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11251/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11257,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11257\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11257/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11246,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11246\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11246/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11256,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11256\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11256/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11255,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11255\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11255/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11240,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11240\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11240/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11258,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11258\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11258/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11248,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11248\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11248/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11220,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11220\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11220/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11289,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11289\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11289/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11227,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11227\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11227/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11291,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11291\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11291/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11272,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11272\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11272/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11303,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11303\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11303/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11304,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11304\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11304/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11270,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11270\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11270/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11264,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11264\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11264/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11301,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11301\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11301/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11274,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11274\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11274/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11323,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11323\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11323/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11322,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11322\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11322/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11269,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11269\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11269/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11335,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11335\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11335/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11333,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11333\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11333/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11292,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11292\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11292/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11284,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11284\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11284/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11332,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11332\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11332/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11342,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11342\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11342/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11339,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11339\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11339/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11343,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11343\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11343/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11336,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11336\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11336/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11341,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11341\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11341/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11317,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11317\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11317/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11320,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11320\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11320/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11345,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11345\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11345/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11352,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11352\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11352/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11319,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11319\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11319/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11338,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11338\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11338/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11346,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11346\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11346/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11340,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11340\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11340/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11368,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11368\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11368/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11347,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11347\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11347/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11353,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11353\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11353/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11377,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11377\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11377/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11350,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11350\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11350/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11391,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11391\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11391/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11397,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11397\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11397/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11382,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11382\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11382/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11395,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11395\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11395/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11387,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11387\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11387/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11414,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11414\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11414/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11394,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11394\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11394/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11423,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11423\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11423/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11378,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11378\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11378/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11384,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11384\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11384/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11426,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11426\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11426/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11425,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11425\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11425/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11407,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11407\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11407/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11433,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11433\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11433/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11440,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11440\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11440/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11432,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11432\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11432/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11422,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11422\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11422/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11418,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11418\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11418/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11421,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11421\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11421/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11444,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11444\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11444/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11411,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11411\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11411/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11445,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11445\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11445/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11424,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11424\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11424/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11455,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11455\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11455/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11461,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11461\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11461/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11442,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11442\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11442/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11450,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11450\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11450/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11448,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11448\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11448/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11446,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11446\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11446/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11474,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11474\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11474/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11462,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11462\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11462/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11483,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11483\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11483/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11484,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11484\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11484/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11454,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11454\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11454/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11463,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11463\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11463/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11487,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11487\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11487/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11478,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11478\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11478/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11470,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11470\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11470/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11488,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11488\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11488/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11506,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11506\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11506/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11464,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11464\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11464/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11497,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11497\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11497/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11477,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11477\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11477/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11515,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11515\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11515/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11518,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11518\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11518/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11512,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11512\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11512/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11513,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11513\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11513/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11504,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11504\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11504/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11532,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11532\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11532/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11501,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11501\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11501/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11535,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11535\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11535/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11530,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11530\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11530/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11517,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11517\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11517/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11525,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11525\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11525/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11533,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11533\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11533/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11524,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11524\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11524/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11526,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11526\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11526/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11520,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11520\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11520/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11521,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11521\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11521/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11543,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11543\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11543/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11549,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11549\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11549/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11546,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11546\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11546/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11547,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11547\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11547/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11542,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11542\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11542/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11545,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11545\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11545/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11556,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11556\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11556/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11540,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11540\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11540/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11541,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11541\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11541/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11565,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11565\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11565/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11553,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11553\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11553/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11537,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11537\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11537/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11539,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11539\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11539/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11551,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11551\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11551/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11554,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11554\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11554/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11578,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11578\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11578/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11552,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11552\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11552/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11555,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11555\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11555/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11564,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11564\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11564/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11576,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11576\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11576/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11569,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11569\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11569/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11572,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11572\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11572/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11577,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11577\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11577/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11567,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11567\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11567/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11583,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11583\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11583/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11568,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11568\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11568/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11614,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11614\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11614/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11615,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11615\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11615/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11616,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11616\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11616/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11579,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11579\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11579/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11617,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11617\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11617/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11592,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11592\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11592/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11631,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11631\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11631/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11623,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11623\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11623/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11637,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11637\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11637/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11629,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11629\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11629/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11638,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11638\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11638/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11628,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11628\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11628/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11641,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11641\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11641/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11639,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11639\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11639/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11636,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11636\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11636/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11630,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11630\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11630/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11640,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11640\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11640/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11644,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11644\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11644/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11659,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11659\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11659/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11632,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11632\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11632/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11656,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11656\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11656/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11662,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11662\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11662/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11660,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11660\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11660/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11654,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11654\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11654/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11642,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11642\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11642/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11666,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11666\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11666/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11661,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11661\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11661/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11664,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11664\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11664/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11655,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11655\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11655/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11665,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11665\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11665/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11657,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11657\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11657/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11667,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11667\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11667/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11672,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11672\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11672/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11669,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11669\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11669/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11668,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11668\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11668/pricing\"\n                }\n            },\n            {\n                \"property_id\": 9784,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9784\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9784/pricing\"\n                }\n            },\n            {\n                \"property_id\": 9818,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9818\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9818/pricing\"\n                }\n            },\n            {\n                \"property_id\": 9732,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9732\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9732/pricing\"\n                }\n            },\n            {\n                \"property_id\": 9774,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9774\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9774/pricing\"\n                }\n            },\n            {\n                \"property_id\": 9814,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9814\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/9814/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11348,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11348\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11348/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11354,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11354\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11354/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11365,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11365\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11365/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11357,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11357\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11357/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11355,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11355\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11355/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11376,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11376\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11376/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11613,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11613\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11613/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11581,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11581\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11581/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11621,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11621\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11621/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11596,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11596\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11596/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11586,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11586\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11586/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11451,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11451\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11451/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10603,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10603\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10603/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11190,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11190\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11190/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11563,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11563\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11563/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10340,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10340\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10340/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10606,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10606\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10606/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11212,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11212\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11212/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11075,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11075\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11075/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11570,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11570\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11570/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11277,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11277\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11277/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10916,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10916\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10916/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11409,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11409\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11409/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10997,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10997\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10997/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11452,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11452\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11452/pricing\"\n                }\n            },\n            {\n                \"property_id\": 10469,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10469\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/10469/pricing\"\n                }\n            },\n            {\n                \"property_id\": 11677,\n                \"_links\": {\n                    \"self\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11677\",\n                    \"pricing\": \"https://staging.hub.westwalesholidaycottages.co.uk/api/partners/properties/11677/pricing\"\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"7fdedd49-af83-4201-9567-ed4e75db7e52"},{"name":"all","id":"2bd6f46a-2128-4406-8872-86af4530b1b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[{"key":"full_response","value":"1","type":"text","uuid":"cb7d5c78-08c7-4181-96d6-4d9a3dca92ef","disabled":true}]},"url":"{{domain}}/api/partners/properties","description":"<h3 id=\"get-our-properties\">Get Our Properties</h3>\n<p>This endpoint retrieves a list of properties that are currently active.</p>\n<p>Properties withdrawn and no longer active do not appear in these results.</p>\n<p>Results are paginated with 25 properties returning per page. Use the \"page\" paramater to itterate through the results.</p>\n<p>The \"_links\" on each property denote helpful links to get other information about that property such as the full listing, reviews, availability, pricing and more.</p>\n<p>Simple searches can be performed against \"sleeps\", \"bedrooms\", \"pets\" and \"bathrooms\" by passing in those params if required.</p>\n<p><strong>By default, this end point returns the core details for a property. (id/name/reference/metadata/details/location/_links)</strong></p>\n<p><strong>However, this end point can return fuller information for each property, including (but not limited to: features, images and charges).</strong></p>\n<p>Whilst it's generally advised to use this dataset as an index of our current portfolio, you may optionally pass a boolean paramater of \"full_response\": \"true\" or \"full_response\": \"1\" to retreive these additional information (i.e. features/images/charges).</p>\n<p><strong>This skips some need to call the individual property result listed as \"self\" in \"_links\".</strong></p>\n<h4 id=\"response\">Response</h4>\n<ul>\n<li><p>Status: 200</p>\n</li>\n<li><p>Content-Type: application/json</p>\n</li>\n</ul>\n<p>The response will include an array labelled \"data\" of property objects, each containing the following fields:</p>\n<ul>\n<li><p><code>id</code> (number)</p>\n</li>\n<li><p><code>name</code> (string)</p>\n</li>\n<li><p><code>reference</code> (string) the unique reference for this property</p>\n</li>\n<li><p><code>slug</code> (string) the unique slug for this property, forming part of the url.</p>\n</li>\n<li><p><code>url</code> (string) the url of this property on our website.</p>\n</li>\n<li><p><code>metadata</code> (object) containing <code>created_at</code> (string) and <code>updated_at</code> (string) fields</p>\n</li>\n<li><p><code>details</code> (object) with fields like <code>sleeps</code> (number), <code>bedrooms</code> (number), <code>bathrooms</code> (number), <code>pets</code> (number), <code>parking</code> (number), <code>type</code> (string), and <code>description</code> (string)</p>\n</li>\n<li><p><code>charges</code> (object) with <code>dogs</code> and <code>extras</code> arrays</p>\n<ul>\n<li><p><code>dogs</code> array containing objects with fields:</p>\n<ul>\n<li><p><code>id</code> (number)</p>\n</li>\n<li><p><code>name</code> (string)</p>\n</li>\n<li><p><code>amount</code> (string)</p>\n</li>\n<li><p><code>charge_type</code> (string)</p>\n</li>\n<li><p><code>quantity</code> (number)</p>\n</li>\n<li><p><code>max_qty</code> (number)</p>\n</li>\n</ul>\n</li>\n<li><p><code>extras</code> array containing objects with fields:</p>\n<ul>\n<li><p><code>id</code> (number)</p>\n</li>\n<li><p><code>name</code> (string)</p>\n</li>\n<li><p><code>charge_type</code> (string)</p>\n</li>\n<li><p><code>amount</code> (string)</p>\n</li>\n<li><p><code>quantity</code> (number)</p>\n</li>\n<li><p><code>max_qty</code> (number)</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><p><code>location</code> (object) with <code>display</code> (string), <code>coordinates</code> (object) containing <code>latitude</code> (string) and <code>longitude</code> (string) fields, and <code>address</code> (object) containing <code>county</code> (string) and <code>town</code> (string) fields</p>\n</li>\n<li><p><code>images</code> (array) of image objects with <code>url</code> (string), <code>main</code> (boolean), and <code>alt</code> (string) fields</p>\n</li>\n<li><p><code>features</code> (array) of strings</p>\n</li>\n<li><p><code>_links</code> (object) with <code>self</code> (string), <code>availability</code> (string), <code>pricing</code> (string), and <code>reviews</code> (string) links</p>\n</li>\n</ul>\n<p>Additionally there are standard fields</p>\n<ul>\n<li><p><code>_links</code> (object) with <code>first</code> (string), <code>last</code> (string), <code>prev</code> (null or string), and <code>next</code> (null or string) links</p>\n</li>\n<li><p><code>meta</code> (object) with pagination information</p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"3f073019-b235-4945-8bf1-9594767d99d5","id":"3f073019-b235-4945-8bf1-9594767d99d5","name":"Properties","type":"folder"}},"urlObject":{"path":["api","partners","properties"],"host":["{{domain}}"],"query":[{"disabled":true,"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"sleeps","value":"1"},{"disabled":true,"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"bedrooms","value":"1"},{"disabled":true,"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"pets","value":"1"},{"disabled":true,"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"bathrooms","value":"1"},{"disabled":true,"description":{"content":"<p>boolean - optional</p>\n","type":"text/plain"},"key":"full_response","value":"true"}],"variable":[]}},"response":[{"id":"1fe938db-dff9-4cb1-9e15-069c504a621c","name":"success","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[{"key":"full_response","value":"1","type":"text","uuid":"cb7d5c78-08c7-4181-96d6-4d9a3dca92ef","disabled":true}]},"url":{"raw":"{{domain}}/api/partners/properties","host":["{{domain}}"],"path":["api","partners","properties"],"query":[{"key":"page","value":"1","description":"optional","disabled":true},{"key":"sleeps","value":"1","description":"optional","disabled":true},{"key":"bedrooms","value":"1","description":"optional","disabled":true},{"key":"pets","value":"1","description":"optional","disabled":true},{"key":"bathrooms","value":"1","description":"optional","disabled":true},{"key":"full_response","value":"true","description":"boolean - optional","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8080"},{"key":"Date","value":"Mon, 21 Jul 2025 11:07:49 GMT"},{"key":"Date","value":"Mon, 21 Jul 2025 11:07:49 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.2.0"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"1000"},{"key":"X-RateLimit-Remaining","value":"999"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 9697,\n            \"name\": \"Ty Aelwyd\",\n            \"reference\": \"aelwyd\",\n            \"slug\": \"ty-aelwyd\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/ty-aelwyd\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:41.000000Z\",\n                \"updated_at\": \"2025-06-20T14:40:59.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 2,\n                \"bedrooms\": 1,\n                \"bathrooms\": 1,\n                \"pets\": 2,\n                \"parking\": 1,\n                \"type\": \"House\",\n                \"description\": \"Ty Aelwyd in upper Solva has magnificent views over St Brides Bay and Skomer Island. It is conveniently situated less than 10 minutes drive from St Davids and from sandy beaches, less than a 10 minute walk from the Pembrokeshire Coast Path and about a 5 minute walk from the pubs and cafes in the charming village of Solva. It is a self-contained annexe attached to the ownerâ€™s home.\\r\\n\\r\\nTy Aelwyd is set in the Pembrokeshire Coast National Park with ample opportunities for walks amidst gorgeous scenery. The beaches of Whitesands and Newgale are within an easy drive.\\r\\n\\r\\nThe tiny city of St Davids with its ancient cathedral offers galleries, restaurants, pubs and shops as well as being home to Oriel y Parc, the National Park Visitor Centre and Gallery. This area abounds with wildlife, much of which can be spotted in secluded coves or from the coast path, just a short walk from Ty Aelwyd. You can take a boat trip for the chance to see dolphins, seals, puffins and huge breeding colonies of seabirds on the off-shore islands.\\r\\n\\r\\nACCOMMODATION\\r\\nTy Aelwyd sleeps 2 inÂ 1 king size bedroom\\r\\n\\r\\nDOWNSTAIRS\\r\\nBedroom: king size bed, hair dryer, countryside views\\r\\nEn suite shower room: shower, toilet, hand basin\\r\\nKitchen: compact cooker, fridge, microwave, washing machine, iron\\r\\n\\r\\nUPSTAIRS\\r\\nLiving room/dining area: 2-seater sofa, armchair, Freeview TV, dining table and 2 chairs. The magnificent views from the Velux window are south-facing over St Brides Bay with the island of Skomer opposite.\\r\\n\\r\\nOUTSIDE\\r\\nThere is seating in the enclosed garden which also has a bike or kayak lock-up. DrivewayÂ parking for 1 car.\\r\\n\\r\\nKEY FACTS\\r\\n- Bed linen and towels provided. Please bring your own beach towels.\\r\\n- Oil-fired central heating.\\r\\n- Free WiFi.\\r\\n- Two well-behaved dogs welcome at Â£20 each per week\\r\\n - No smoking\"\n            },\n            \"location\": {\n                \"display\": \"Solva, Pembrokeshire\",\n                \"coordinates\": {\n                    \"latitude\": \"51.876469\",\n                    \"longitude\": \"-5.197786\"\n                },\n                \"address\": {\n                    \"county\": \"Pembrokeshire\",\n                    \"town\": \"Solva\"\n                }\n            },\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9697\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9697/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9697/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9697/reviews\"\n            }\n        },\n        {\n            \"id\": 9705,\n            \"name\": \"Amesbury\",\n            \"reference\": \"amesbury\",\n            \"slug\": \"amesbury\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/amesbury\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:41.000000Z\",\n                \"updated_at\": \"2025-07-12T23:05:42.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 6,\n                \"bedrooms\": 4,\n                \"bathrooms\": 2,\n                \"pets\": 1,\n                \"parking\": 0,\n                \"type\": \"Cottage\",\n                \"description\": \"Amesbury is a spacious semi-detached terraced house just off the centre of the quaint town of Newport, Pembrokeshire. Upgraded throughout, the house is comfortable yet cosy, with many retained original features such as wooden beams, wooden floors, sash windows and exposed stone walls.\\r\\n\\r\\nYou have access to a large enclosed, lawned garden with mature trees -  perfect for children to play and for adults to enjoy a peaceful drink on a long summer evening. Ideal for a family break and holiday.\\r\\n\\r\\nThe centre of town is within walking distance and provides a variety of excellent restaurants, pubs, shops and galleries and of course the beach nearby. Newport is conveniently situated between St Davids Cathedral City and Cardigan and is in the heart of the scenic Pembrokeshire Coast National Park.\\r\\n\\r\\nThere are many historic sites of interest in the immediate areas, with Pentre Ifan Burial Chamber and the Preseli Hills just a 10-minute drive away. The pretty market town of Cardigan is 11 miles to the north, and the harbour town of Fishguard and Goodwick 7 miles to the south.\\r\\n\\r\\nACCOMMODATION\\r\\nAmesbury sleeps 6 in 4 upstairs bedrooms: 1 double, 1 twin room and 2 single rooms\\r\\n\\r\\nUPSTAIRS\\r\\nBedroom 1: double bed\\r\\nBedroom 2: twin beds\\r\\nBedroom 3: single bed, a single pull out bed can be provided for an additional charge\\r\\nBedroom 4: single bed\\r\\nBathroom: bath, large shower cubicle, WC, wash hand basin, heated towel rail\\r\\n\\r\\nDOWNSTAIRS\\r\\nLiving room: 3-seater sofa, 2-seater sofa, armchair, TV with BT Sport, 'Clearview' woodburning stove\\r\\nSitting room: two 2-seater sofas, TV/DVD, woodburning stove\\r\\nDining room: table seating 6\\r\\nKitchen: double electric oven, microwave, fridge, dishwasher, coffee machine, electric mixer\\r\\nUtility room: washing machine, small tumble dryer, small table, 3 drawer freezer\\r\\nWet room: shower, WC, hand basin, towel rail\\r\\n\\r\\nOUTSIDE\\r\\nLarge enclosed rear garden with garden shed made available for guests to store any larger items such as bicycles, wetsuits etc. Parking is on the roadside outside the property and there is also a large car park in Newport.\\r\\n\\r\\nKEY FACTS\\r\\n\\r\\n- Bed linen provided. \\r\\n- Please bring your own bath and beach towels\\r\\n- Travel cot and highchair available, bring your own cot bedding\\r\\n- Gas central heating\\r\\n- One basket of logs provided, further logs available to purchase\\r\\n- Free WiFi and BT Sport\\r\\n- 1 well-behaved dog welcome upon request. Please let us know if you're bringing a dog upon booking.\\r\\n- No smoking\"\n            },\n            \"location\": {\n                \"display\": \"Newport, Pembrokeshire\",\n                \"coordinates\": {\n                    \"latitude\": \"52.0171547\",\n                    \"longitude\": \"-4.8311877\"\n                },\n                \"address\": {\n                    \"county\": \"Pembrokeshire\",\n                    \"town\": \"Newport\"\n                }\n            },\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9705\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9705/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9705/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9705/reviews\"\n            }\n        },\n        {\n            \"id\": 9709,\n            \"name\": \"Apple Tree Corner\",\n            \"reference\": \"appletree\",\n            \"slug\": \"apple-tree-corner\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/apple-tree-corner\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:41.000000Z\",\n                \"updated_at\": \"2025-06-20T14:41:38.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 4,\n                \"bedrooms\": 1,\n                \"bathrooms\": 1,\n                \"pets\": 3,\n                \"parking\": 1,\n                \"type\": \"House\",\n                \"description\": \"Apple Tree Corner is a delightful converted stone barn packed with character and charm, a mile inland from the Ceredigion Coast Path and the sandy beaches of Aberporth. Tresaith, Llangrannog. The National Trust beaches at Penbryn and Mwnt are just a few miles away. Apple Tree Corner has now been awarded a \\\"plastic Free Approved Status\\\" from Surfers Against Sewage.\\r\\n\\r\\nThe market towns of Cardigan and Newcastle Emlyn are within easy reach (7 miles) and have many smaller individual shops with local crafts and produce. There is plenty to explore: the stunning scenery of the Preseli Hills, the Wildlife Centre at Cilgerran or coastal walks.\\r\\n\\r\\nThere is an abundance of attractions within easy driving distance including Cardigan's cinema/theatre, horse riding, fishing, gardens and golf. The cottage is detached and set back from the road, situated in the courtyard of the original farmhouse.\\r\\n\\r\\nACCOMMODATION\\r\\nApple Tree Corner sleeps 4 in 1 bedroom and 1 sleeping area curtained off from the living room:Â 1 king size and a set of bunk beds. All the accommodation is on the ground floor with no steps so may suit guests with restricted mobility.\\r\\n\\r\\nBedroom 1: bunk beds\\r\\nBathroom: shower enclosure, toilet, hand basin, shaver point\\r\\n\\r\\nOpen plan area with;\\r\\nBedroom 2: curtained off area from the living room with king size bed\\r\\nSitting area: 3-seater sofa, 2-seater sofa, TV/DVD, wood burning stove, open beamed ceiling, tiled floor with rugs\\r\\nKitchen: ceramic hob, oven, microwave oven, fridge/freezer, dishwasher, dining table for 4\\r\\n\\r\\nOUTSIDE\\r\\nImmediately outside the kitchen door is a small paved patio area with wooden table and chairs. There is a wooden shed with space to store your surf board and bucket and spade. There is a shared washing machine. In the courtyard, there is level access to the parking area for 1 car and access to the shared enclosed garden with seating and BBQ.\\r\\n\\r\\nKEY FACTS\\r\\n- Bed linen provided\\r\\n- Please bring your own towels\\r\\n- Cot, cot bedding, baby bath and highchair available\\r\\n- Gas central heating\\r\\n- Free WiFi\\r\\n- Logs for the wood burner provided - no charge help yourself from wood shed\\r\\n- Up to 3 well-behaved dogs welcome at no extra charge\\r\\n- No smoking\"\n            },\n            \"location\": {\n                \"display\": \"Aberporth, Ceredigion\",\n                \"coordinates\": {\n                    \"latitude\": \"52.1145172\",\n                    \"longitude\": \"-4.5122051\"\n                },\n                \"address\": {\n                    \"county\": \"Ceredigion\",\n                    \"town\": \"Aberporth\"\n                }\n            },\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9709\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9709/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9709/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9709/reviews\"\n            }\n        },\n        {\n            \"id\": 9713,\n            \"name\": \"Aelwyd Artur\",\n            \"reference\": \"artur\",\n            \"slug\": \"aelwyd-artur\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/aelwyd-artur\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:42.000000Z\",\n                \"updated_at\": \"2025-06-27T16:39:07.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 4,\n                \"bedrooms\": 2,\n                \"bathrooms\": 1,\n                \"pets\": 0,\n                \"parking\": 4,\n                \"type\": \"House\",\n                \"description\": \"Aelwyd Artur is a well-equipped, warm and cosy holiday home about 100 metres from the estuary and coastal path in the beautiful village of Newport in Pembrokeshire. Newport is set within the Pembrokeshire Coast National , at the foot of Carningli Mountain. With excellent local shops (including organic, fresh fish and second-hand bookshop!), pubs and restaurants; it is an ideal setting for both romantic getaways and family holidays.\\r\\n\\r\\nThe sheltered bay and estuary have sandy beaches, sailing, kayaking and also sea and river fishing. There is an eighteen-hole golf course with stunning views, tennis courts, cycle hire and riding stables within easy reach for trekking across the Preseli Hills and pub and beach rides. The locality also offers good local transport and coastal pick-up buses, making the area accessible all year round for walkers.\\r\\n\\r\\nWhether you enjoy our stunning coastal walks, festooned with spring flowers, sandy summer days on the beach, the autumn bird migrations to the estuary, cosy pubs and restaurants, or prefer to curl up by the wood burner in winter, Aelwyd Artur provides a welcoming setting for a holiday.\\r\\n\\r\\nACCOMMODATION\\r\\nAelwyd Artur sleeps 4 in 2 bedrooms: 1 king-size and 1 twin. All the accommodation is on one level so may suit guests with restricted mobility.\\r\\n\\r\\nBedroom 1: king-size bed, hairdryer\\r\\nBedroom 2: twin beds\\r\\nShower room: shower cubicle, wash hand basin, WC\\r\\n\\r\\nLiving room: 2-seater sofa, 2 armchairs, Freeview TV, log burner\\r\\nKitchen/dining area: dual fuel (gas & electric) range cooker, toaster, washer/dryer, fridge with small freezer compartment, microwave, radio, dining table and chairs for 6, French windows to the garden\\r\\n\\r\\nOUTSIDE\\r\\nThere is a patio, garden furniture, a covered area for locking bicycles and drying clothes. Please note the lawn is unfenced so small children should be supervised. There is ample hard standing for parking.\\r\\n\\r\\nKEY FACTS\\r\\n- Bed linen and towels provided\\r\\n- Please bring your own beach towels\\r\\n- Highchair available.\\r\\n- Gas central heating\\r\\n- Free WiFi\\r\\n- Logs available at Â£5 per basket pay owner directly\\r\\n- Sorry, no dogs\\r\\n- No smoking\"\n            },\n            \"location\": {\n                \"display\": \"Newport, Pembrokeshire\",\n                \"coordinates\": {\n                    \"latitude\": \"52.018098\",\n                    \"longitude\": \"-4.827966\"\n                },\n                \"address\": {\n                    \"county\": \"Pembrokeshire\",\n                    \"town\": \"Newport\"\n                }\n            },\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9713\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9713/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9713/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9713/reviews\"\n            }\n        },\n        {\n            \"id\": 9714,\n            \"name\": \"Arwel\",\n            \"reference\": \"arwel\",\n            \"slug\": \"arwel\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/arwel\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:42.000000Z\",\n                \"updated_at\": \"2025-07-12T23:05:36.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 6,\n                \"bedrooms\": 3,\n                \"bathrooms\": 1,\n                \"pets\": 1,\n                \"parking\": 1,\n                \"type\": \"Cottage\",\n                \"description\": \"Arwel is a first-floor apartment in a truly spectacular location in the centre of Aberporth, Ceredigion. With 2 sandy beaches just across the road and easy access to Ceredigion Coast Path it's a great base for a family seaside holiday, a walking break or exploring the surrounding area.\\r\\n\\r\\nThe apartment is bright and comfortable with a well-equipped kitchen and views of Cardigan Bay. You can leave your front door, cross the road, grab an ice cream and be on the beach in minutes.\\r\\nArwel is right in the centre of Aberporth which has everything you might need including a shop, post office, chemist, pub, cafes, restaurants, and takeaways. The two sandy beaches are perfect for swimming, exploring rock pools, relaxing, and watching out for the resident bottlenose dolphins.\\r\\n\\r\\nThere is easy access to Ceredigion Coast Path from the village, with miles of stunning coastal scenery and spectacular wildlife. Explore the coast north to Tresaith and Penbryn or head south to the National Trust beach of Mwnt and beyond.\\r\\n\\r\\nFurther afield, you may wish to take a dolphin spotting boat trip from New Quay (30 minutes). Cardigan (15 minutes) offers the opportunity to explore the renovated castle, famous for being the birthplace of the Eisteddfod, a national festival dating back to 1176. The Georgian town of Aberaeron has brightly painted period houses and a pretty harbour.\\r\\n\\r\\nAccommodation\\r\\nArwel sleeps 6 in 3 bedrooms: 1 king size bed, 2 twins.\\r\\nBedroom 1: king size bed \\r\\nBedroom 2: twin beds \\r\\nBedroom 3: twin beds \\r\\nBathroom: bath with shower over, toilet, hand basin\\r\\n\\r\\nLiving room: 3-seater leather sofa, 2 electric leather armchairs, 55\\\"; Smart TV, Blu-Ray player \\r\\nKitchen diner: electric oven, microwave, fridge freezer, dishwasher, washing machine, tumble dryer, 40\\\" Plasma TV, table and chairs to seat 6\\r\\n\\r\\nOutside\\r\\nLawn with brick paved area. Driveway parking for 1 car.\\r\\n\\r\\nKey facts\\r\\n- Bed linen and towels provided, not beach towels\\r\\n- Travel cot, highchair available, bring your own cot bedding\\r\\n- Oil central heating\\r\\n- Free WiFi\\r\\n- 1 well-behaved dog welcome upon request. Please let us know if you're bringing a dog upon booking. Please ensure that dogs are kept off the furniture. (Please note there are metal steps going up to the apartment)\\r\\n- No smoking\"\n            },\n            \"location\": {\n                \"display\": \"Aberporth, Ceredigion\",\n                \"coordinates\": {\n                    \"latitude\": \"52.1343575\",\n                    \"longitude\": \"-4.5428042\"\n                },\n                \"address\": {\n                    \"county\": \"Ceredigion\",\n                    \"town\": \"Aberporth\"\n                }\n            },\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9714\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9714/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9714/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9714/reviews\"\n            }\n        },\n        {\n            \"id\": 9732,\n            \"name\": \"Sea View Lodge\",\n            \"reference\": \"baysea\",\n            \"slug\": \"sea-view-lodge\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/sea-view-lodge\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:42.000000Z\",\n                \"updated_at\": \"2025-07-12T23:06:29.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 6,\n                \"bedrooms\": 3,\n                \"bathrooms\": 1,\n                \"pets\": 1,\n                \"parking\": 2,\n                \"type\": \"Cottage\",\n                \"description\": \"Sea View Lodge at Felindre is located 6 miles north of St Davids and is just a 5-minute woodland stroll from the picturesque harbour of Porthgain. From here, you can walk along the cliffs on the Pembrokeshire Coast Path, enjoying spectacular scenery. In Porthgain you will find the friendly Sloop Inn, the award-winning bistro The Shed, which specialises in locally caught fish, and a gallery of work by local artists.\\r\\n\\r\\nThe nearby historic city of St Davids draws many visitors with its majestic cathedral, ancient Bishops Palace, boutique shops, art galleries and restaurants. You can buy tickets here for boat trips to the RSPB's Ramsey Island or view the other offshore islands with their impressive seabird populations. There is a good chance of seeing dolphins and whales too.\\r\\n\\r\\nSea View Lodge is a wonderful place for a beach holiday: there are 20 different beaches within just 12 miles. Traethllyfn is a beautiful National Trust beach only 1 mile away, and you can walk to it across farmland or the cliff path. This beach is excellent for surfing, as are Abereiddy, Whitesands and Newgale.\\r\\n\\r\\nThere are plenty of open-air pursuits to enjoy: local activity centres give both adults and children the opportunity to try climbing, sea kayaking and coasteering. Local stables offer horse riding, three local courses offer scenic rounds of golf, and walking holidays are popular here all year round - out-of-season visitors enjoy having this stunning landscape almost to themselves. Sea View Lodge provides ideal all year-round accommodation as the Nordic spruce construction provides excellent insulation, which is complemented by cosy underfloor heating.\\r\\n\\r\\nACCOMMODATION\\r\\nSea View Lodge sleeps 6 in 3 bedrooms: 1 double, 1 twin and 1 with bunk beds. All the accommodation is on the ground floor so may suit guests with restricted mobility\\r\\n\\r\\nBedroom 1: double bed\\r\\nBedroom 2: twin beds\\r\\nBedroom 3: bunk beds at a right angle next to each other\\r\\nBathroom: bath with shower over, toilet, hand basin\\r\\nOpen plan area with; \\r\\n\\r\\nSitting area: 5-seater corner sofa, chair, Freesat TV/DVD\\r\\nKitchen area: ceramic hob, electric oven, kettle, microwave, toaster, dishwasher, fridge/freezer\\r\\nDining area: dining table and chairs for 8\\r\\nCloakroom: toilet, hand basin\\r\\nLaundry cupboard: washing machine, tumble dryer\\r\\n\\r\\nOUTSIDE\\r\\nThere is a picnic table and chairs on the veranda. There is a BBQ and a lawned area to the front. There is parking for 2 cars adjacent to the lodge.\\r\\n\\r\\nKEY FACTS\\r\\n\\r\\n- Bed linen provided\\r\\n- Please bring your own towels\\r\\n- Underfloor heating\\r\\n- Free WiFi\\r\\n- 1 well-behaved dog welcome upon request. Please let us know if you're bringing a dog upon booking. \\r\\n- No smoking\"\n            },\n            \"location\": {\n                \"display\": \"Porthgain, Pembrokeshire\",\n                \"coordinates\": {\n                    \"latitude\": \"51.9420471\",\n                    \"longitude\": \"-5.1757894\"\n                },\n                \"address\": {\n                    \"county\": \"Pembrokeshire\",\n                    \"town\": \"Porthgain\"\n                }\n            },\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9732\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9732/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9732/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9732/reviews\"\n            }\n        },\n        {\n            \"id\": 9739,\n            \"name\": \"Beach Hut Apartment\",\n            \"reference\": \"beachhut\",\n            \"slug\": \"beach-hut-apartment\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/beach-hut-apartment\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:43.000000Z\",\n                \"updated_at\": \"2025-06-20T14:42:54.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 6,\n                \"bedrooms\": 3,\n                \"bathrooms\": 1,\n                \"pets\": 1,\n                \"parking\": 0,\n                \"type\": \"Apartment\",\n                \"description\": \"Beach Hut Apartment is a stylish, relaxed space situated above The Beach Hut cafÃ© in a prime location only 12 metres from the beach in Llangrannog, a pretty fishing village on Cardigan Bay. The apartment has excellent facilities, with a large open-plan family room and kitchen area opening onto a decked sun terrace with unrivalled views of the beach below. Here, you can enjoy al fresco dining with one of the best views around- the perfect spot for breakfast and dinner with a view!\\r\\n\\r\\nLlangrannog is a great place to relax and watch for dolphins out at sea, is popular with families and surfers and is manned by lifeguards in summer. The village has safe sandy beaches, two cafes, two pubs and a shop. A short walk along the coast path to the north is the spectacular Ynys Lochtyn, with the beaches of Penbryn and Tresaith a few miles to the south. There are many other bays and incredible scenery inland to explore.\\r\\n\\r\\nOther nearby attractions include golf, horse riding, boat trips, and fishing. Further afield are other interesting places to visit, including Cardigan, Tenby, Aberystwyth and the Preseli Hills.\\r\\n\\r\\nACCOMMODATION\\r\\nFrom the road side parking the apartment is accessed via a shallow slope and three steps leading to the front door.\\r\\n\\r\\nSECOND FLOORÂ \\r\\nBedroom 3Â double bed, bedside table, storage\\r\\n\\r\\nFIRST FLOORÂ \\r\\nBedroom 1Â double bed, bedside table, storage\\r\\nBedroom 2Â double bed, bedside table, storage Both bedrooms have level access to:\\r\\n\\r\\nOpen plan kitchen/living area...\\r\\nKitchen area: electric oven and hob, fridge with ice box, dishwasher, microwave. Large oak dining table seating 6.\\r\\nLiving area: two 3-seater sofas, oak coffee table, TV/DVD, double doors leading to sun terrace.Â \\r\\nBathroom: bath with shower over, toilet, hand basin, washing machine\\r\\n\\r\\nLarge decked sun terrace facing the sea, with table and chairs for al fresco dining. Roadside parking space outside the apartment and nearby charged for car park.\\r\\n\\r\\nOUTSIDE\\r\\nLarge decked sun terrace facing the sea, with table and chairs for al fresco dining. Roadside parking space outside the apartment and nearby charged for car park.\\r\\n\\r\\nKEY FACTS\\r\\n- Bed linen provided\\r\\n- Please bring your own towels\\r\\n- Central heating\\r\\n- Free WiFi\\r\\n- 1 well-behaved dog welcome at Â£25 per stay\\r\\n- No smoking\"\n            },\n            \"location\": {\n                \"display\": \"Llangrannog, Ceredigion\",\n                \"coordinates\": {\n                    \"latitude\": \"52.1598015\",\n                    \"longitude\": \"-4.4712586\"\n                },\n                \"address\": {\n                    \"county\": \"Ceredigion\",\n                    \"town\": \"Llangrannog\"\n                }\n            },\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9739\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9739/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9739/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9739/reviews\"\n            }\n        },\n        {\n            \"id\": 9749,\n            \"name\": \"Ty Beth\",\n            \"reference\": \"beth\",\n            \"slug\": \"ty-beth\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/ty-beth\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:43.000000Z\",\n                \"updated_at\": \"2025-06-20T14:49:33.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 4,\n                \"bedrooms\": 2,\n                \"bathrooms\": 1,\n                \"pets\": 3,\n                \"parking\": 2,\n                \"type\": \"House\",\n                \"description\": \"Ty Beth is an attractive detached stone cottage with a large private dog-friendly garden. The cottage is in a small close situated off the narrow road leading to the sandy beaches of Pwllgwaelod and Cwm yr Eglwys less than half a mile away.\\r\\n\\r\\nFrom the cottage, there are exhilarating walks around Dinas Head and on the Pembrokeshire Coastal Path with its magnificent scenery. Dinas has a couple of very good shops as well as three pubs including one right beside the sea which serves good food.\\r\\n\\r\\nNewport is a pretty Pembrokeshire village about 3 miles from the cottage with a selection of restaurants, galleries, shops and a bank. Beyond it lies the long beach of Newport Sands.\\r\\n\\r\\nACCOMMODATION\\r\\nThe cottage sleeps 4 in 2 bedrooms: 1Â king size and 1 twin. All the accommodation is on the ground floor with the exception to 3 internal steps so may suit guests with restricted mobility.\\r\\n\\r\\nBedroom 1: king size bed, bedside tables, dressing table, fitted wardrobe\\r\\nBedroom 2: twin beds, bedside table, fitted wardrobes\\r\\nBathroom: bath with shower over, toilet, hand basin, heated towel rail\\r\\n\\r\\nLiving room: 2-seater sofa, easy chairs, 43\\\" smart TV, DVD player, selection of DVDs, books and games, log-burning stove\\r\\nKitchen: electric hob, built-in oven, microwave, fridge/freezer, washing machine\\r\\nSun lounge: breakfast table and seating\\r\\n\\r\\nOUTSIDE\\r\\nEnclosed secluded lawned garden to rear with shrubs and flower borders. Garden furniture and barbeque provided. AmpleÂ parking in the courtyard.\\r\\n\\r\\nKEY FACTS\\r\\n- Bed linen provided\\r\\n- Please bring your own towels\\r\\n- Travel cot and highchair available. Please bring your own cot bedding\\r\\n- Gas central heating\\r\\n- First basket of logs is provided, more can be purchased locally\\r\\n- Free WiFi\\r\\n- 3 well-behaved dogs welcome free of charge\\r\\n- No smoking\\r\\n- Â£150 refundable damages deposit\"\n            },\n            \"location\": {\n                \"display\": \"Newport, Pembrokeshire\",\n                \"coordinates\": {\n                    \"latitude\": \"52.0183182\",\n                    \"longitude\": \"-4.9019861\"\n                },\n                \"address\": {\n                    \"county\": \"Pembrokeshire\",\n                    \"town\": \"Newport\"\n                }\n            },\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9749\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9749/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9749/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9749/reviews\"\n            }\n        },\n        {\n            \"id\": 9774,\n            \"name\": \"Briallen\",\n            \"reference\": \"briallen\",\n            \"slug\": \"briallen\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/briallen\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:44.000000Z\",\n                \"updated_at\": \"2025-07-12T23:05:53.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 2,\n                \"bedrooms\": 1,\n                \"bathrooms\": 1,\n                \"pets\": 2,\n                \"parking\": 2,\n                \"type\": \"Cottage\",\n                \"description\": \"A coastal cottage for 2 on a smallholding 1.5 miles from Llanrhystud beach on Cardigan Bay, Briallen ('Primrose') is a beautifully converted stone barn providing welcoming, high quality accommodation, ideal for a comfortable and relaxing holiday.\\r\\n\\r\\nThere is a private garden with a hot tub for your exclusive use. Relax and enjoy the beautiful night sky &ndash; a sight to take your breath away. Minimal light pollution allows for a spectacular experience. A sheer luxury!\\r\\n\\r\\nBriallen is in a very quiet location on a 7 acre rural smallholding within 1 mile of local shops, post office, garage, pub and 18 hole golf course / driving range.\\r\\n\\r\\nFrom Briallen you can explore the varied coastal scenery of Cardigan Bay, walk the local section of the Wales Coast Path, and visit the many pretty little villages and towns on the coast and inland.\\r\\n\\r\\nTo the north, Aberystwyth (10 miles) offers a wide selection of entertainment, restaurants, pubs, theatre and cinemas. To the south, Aberaeron (9 miles) is a very attractive Georgian town with a picturesque harbour and superb restaurants.\\r\\n\\r\\nVisit the National Trust estate of Llanerchaeron, Tregaron Bog nature reserve and Teifi Pools, the ancient Strata Florida Abbey, Devil's Bridge and much more.\\r\\n\\r\\nACCOMMODATION\\r\\nBriallen sleeps 2 + cot in a galleried bedroom\\r\\n\\r\\nUPSTAIRS \\r\\nBedroom: king size bed, galleried bedroom with sloping ceilings\\r\\n\\r\\nDOWNSTAIRS \\r\\nLounge: 2 x 2 seater sofas, Freeview TV, DVD player and HiFi/CD player, original character stone wall and oak furnishings \\r\\nKitchen/diner: electric oven and hob, fridge freezer, microwave, dishwasher and automatic washing machine. The dining table seats two and a high chair is available on request. \\r\\nBathroom: spacious power shower unit, toilet, wash hand basin, heated towel rail\\r\\n\\r\\nOUTSIDE\\r\\nAt the rear, a stable door leads from the lounge to an enclosed patio and garden area with garden furniture, barbecue, hot tub and clothesline. There is ample off-road parking for two vehicles.\\r\\n\\r\\nKEY FACTS\\r\\n- Bed linen and towels provided. Please bring your own beach towels\\r\\n- Travel cot and high chair available on request\\r\\n- Full oil central heating\\r\\n- Free WiFi\\r\\n- 2 well-behaved dogs welcome upon request. Please let us know if you're bringing a dog (or more) upon booking. \\r\\n- No smoking allowed inside the cottage\"\n            },\n            \"location\": {\n                \"display\": \"Aberystwyth, Ceredigion\",\n                \"coordinates\": {\n                    \"latitude\": \"52.2946701\",\n                    \"longitude\": \"-4.1349845\"\n                },\n                \"address\": {\n                    \"county\": \"Ceredigion\",\n                    \"town\": \"Aberystwyth\"\n                }\n            },\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9774\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9774/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9774/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9774/reviews\"\n            }\n        },\n        {\n            \"id\": 9784,\n            \"name\": \"Bronmor\",\n            \"reference\": \"bronmor\",\n            \"slug\": \"bronmor\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/bronmor\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:44.000000Z\",\n                \"updated_at\": \"2025-07-12T23:05:50.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 6,\n                \"bedrooms\": 3,\n                \"bathrooms\": 1,\n                \"pets\": 3,\n                \"parking\": 2,\n                \"type\": \"Cottage\",\n                \"description\": \"Bronmor is a cosy, comfortable and traditional Welsh cottage situated in the coastal town of Newport, Pembrokeshire. Within a minute's walk, there is a selection of cafes, restaurants, pubs, shops and galleries to suit all tastes. There is also a weekly market on Mondays where local produce can be bought.\\r\\n\\r\\nThe popular beach of Newport Sands is ideal for families and there are also smaller beaches and coves to be explored within walking distance from the cottage. The cottage is ideally situated to enjoy many of the wonderful walks along the Pembrokeshire Coast Path or in the beautiful Preseli Hills. There are also fantastic road and mountain bike rides to be enjoyed.\\r\\n\\r\\nAlthough this is a traditional cottage it has a contemporary style and charm with all the modern comforts we enjoy. The secluded garden is a great place to unwind with a rooftop sea view.\\r\\n\\r\\nACCOMMODATION\\r\\nBronmor sleeps 4 adults and 2 children only in 3 bedrooms: 1 king size, 1 twin and 1 twin room only suitable for children.\\r\\n\\r\\nUPSTAIRS\\r\\nBedroom 1: king size bed, bedside tables with lamps, chest of draws, mirror, built in wardrobe\\r\\nBedroom 2: twin beds (only suitable for children), sloping ceiling, clothes storage, access through bedroom 1\\r\\nBedroom 3: twin beds, bedside tables with lamps, chest of draws, mirror, built-in wardrobe\\r\\n\\r\\nDOWNSTAIRS\\r\\nBathroom: shower enclosure, toilet, hand basin\\r\\nLiving room: 3-seater sofa, 2 armchairs, occasional tables, sideboard, 42&rdquo; Freeview TV/DVD, log burner, Bluetooth speaker\\r\\nKitchen: gas hob, electric double oven, fridge, microwave, dishwasher\\r\\nDining room: dining room table comfortably seating 6 with 6 director chairs, a side table, a corner cupboard\\r\\nUtility room: washing machine, tumble dryer, freezer, shower cubicle, boiler\\r\\nCloakroom: toilet, hand basin\\r\\n\\r\\nOUTSIDE\\r\\nThere is an enclosed rear garden accessed off the first-floor landing with a table to seat 8 and a stone BBQ. Bench for those morning coffees with a rooftop sea view. The cottage has a safe, locked stone shed to store bikes (bikes are stored at owners own risk). Private parking for Bronmor is approximately 40m down the road on the left suitable for 2 cars.\\r\\n\\r\\nKEY FACTS\\r\\n- Bed Linen and towelsare provide along with bathmats and tea towels. Please bring your own beach towels\\r\\n- Travel cot and highchair available. Please bring your own cot bedding\\r\\n- Gas central heating\\r\\n- First basket of logs provided, more available to purchase locally\\r\\n- Free WiFi\\r\\n- Up to 3 well-behaved dogs welcome upon request. Please let us know if you're bringing a dog (or more) upon booking. \\r\\n- No Smoking\\r\\n- Â£100 refundable damages deposit\"\n            },\n            \"location\": {\n                \"display\": \"Newport, Pembrokeshire\",\n                \"coordinates\": {\n                    \"latitude\": \"52.0155106\",\n                    \"longitude\": \"-4.8334446\"\n                },\n                \"address\": {\n                    \"county\": \"Pembrokeshire\",\n                    \"town\": \"Newport\"\n                }\n            },\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9784\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9784/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9784/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9784/reviews\"\n            }\n        },\n        {\n            \"id\": 9786,\n            \"name\": \"Bronwylfa\",\n            \"reference\": \"bronwylfa\",\n            \"slug\": \"bronwylfa\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/bronwylfa\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:45.000000Z\",\n                \"updated_at\": \"2025-06-20T14:50:22.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 4,\n                \"bedrooms\": 2,\n                \"bathrooms\": 2,\n                \"pets\": 1,\n                \"parking\": 1,\n                \"type\": \"House\",\n                \"description\": \"Bronwylfa is set on a Victorian terrace on a hillside overlooking the village of Llangrannog, Ceredigion. With amazing views over beautiful Cardigan Bay and across the beach and surrounding countryside, this charming cottage is in a quiet, peaceful setting yet just a short stroll from the village.\\r\\n\\r\\nThe cottage has delightful period features, light-filled rooms, and a cosy, comfortable sitting room. The front lawn is perfect for relaxing and enjoying al fresco meals or drinks with sea views.\\r\\n\\r\\nIt is a short walk to the village with a range of amenities, including a pub, a shop, two cafÃ©s, and an award-winning pizza takeaway.\\r\\n\\r\\nThere is a well-stocked supermarket/garage just a short drive away. Llangrannog is a popular destination famed for its family-friendly beaches and stunning scenery. It attracts swimmers, walkers, surfers, bird, and dolphin watchers in equal measure. Golf, sailing, and horse-riding facilities are close by. There are spectacular walks direct from the village on the 60-mile-long Ceredigion Coast Path. Walk a short way to Ynys Lochtyn headland, the pretty village of Cwm Tydu, or the seaside village of New Quay. The popular beaches at Penbryn and Tresaith are nearby.\\r\\n\\r\\nThe market town of Cardigan, 12 miles away, has shops, supermarkets, galleries, and great places to try local food. The Georgian town of Aberaeron has independent shops, a pretty harbour, and famous honey ice cream. The surrounding countryside is full of secluded coves, ruined castles, and abbeys to explore; something for everyone.\\r\\n\\r\\nACCOMMODATION\\r\\nBronwylfa sleeps 4 in 2 bedrooms: 1 double and 1 twin.\\r\\n\\r\\nUPSTAIRS\\r\\nBedroom 1: double bed, bedside tables, wardrobe, chest of drawers, chair\\r\\nBedroom 2: twin beds, bedside tables, wardrobe, chair\\r\\nBathroom: bath with electric shower over, toilet, hand basin\\r\\n\\r\\nDOWNSTAIRS\\r\\nSitting area: 3-seater sofa, 2 armchairs, side tables, bookcases, digital flat screen TV, HiFi\\r\\nDining area: table and seating for 4\\r\\nKitchen: oven and hob, microwave, large fridge/freezer, dishwasher\\r\\nBathroom 2: electric shower, toilet, hand basin\\r\\n\\r\\nOUTSIDE\\r\\nThe lawn to the front of the cottage looks out over the village, beach and sea and is shared with the neighbouring cottage. At the back, the kitchen gives onto a private secluded walled patio with a table and chairs. Outdoor cupboards house a washing machine with ample storage for buckets and spades, boogie boards etc.Â Parking for 1 car on the premises.\\r\\n\\r\\nKEY FACTS\\r\\n- Bed linen is provided\\r\\n- Please bring your own towels\\r\\n- Electric heating\\r\\n- Free WiFi\\r\\n- 1 well behaved dog welcome at no extra cost. Please enquire if you would like to bring more than 1 dog\\r\\n- No smoking\"\n            },\n            \"location\": {\n                \"display\": \"Llangrannog, Ceredigion\",\n                \"coordinates\": {\n                    \"latitude\": \"52.1588898\",\n                    \"longitude\": \"-4.4702849\"\n                },\n                \"address\": {\n                    \"county\": \"Ceredigion\",\n                    \"town\": \"Llangrannog\"\n                }\n            },\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9786\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9786/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9786/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9786/reviews\"\n            }\n        },\n        {\n            \"id\": 9787,\n            \"name\": \"Rhyd y Brown Cottage\",\n            \"reference\": \"brown\",\n            \"slug\": \"rhyd-y-brown\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/rhyd-y-brown\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:45.000000Z\",\n                \"updated_at\": \"2025-07-12T23:06:02.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 2,\n                \"bedrooms\": 1,\n                \"bathrooms\": 1,\n                \"pets\": 2,\n                \"parking\": 2,\n                \"type\": \"Cottage\",\n                \"description\": \"Rhyd Y Brown Cottage is a charming, sweet stone barn set in the heart of rural Pembrokeshire. This single-storey converted stable is sympathetically furnished with painted stone walling, which adds to its charm. This cottage is the perfect escape for those seeking peace and tranquillity.\\r\\n\\r\\nIt is situated in a wooded valley adjacent Rhyd y Brown Farmhouse, listed also as a holiday let. Rhyd y Brown Cottage is approximately 20 minutes drive from the county town of Haverfordwest. Here, you will find an array of award-winning places to eat, shops, and family attractions, with the beautiful coastal villages of Broad Haven, Little Haven, and Nolton Haven slightly further away.\\r\\n\\r\\nFurther along the coast, you'll find Newgale, which has nearly two miles of sand backed by a huge pebble bank and is a popular place for kitesurfing and surfing, as well as the pretty village of Solva and Britain's smallest city, St Davids. Rhyd Y Brown Cottage is only five miles from the wonderful Llys y Fran Lake, where you can enjoy its visitor centre, cafe, cycle hub, mountain biking and walking trails, water and land activities, fishing, and adventure playground.\\r\\n\\r\\nOther more energetic pursuits, such as horse riding and river fishing, are all available in the area, as well as fun-filled activities for the whole family, including Folly Farm Adventure Park and Zoo and Wild Lakes Wales\\r\\n\\r\\nACCOMMODATION\\r\\nRhyd Y Brown sleeps 2 in 1 double bedroom. All the accommodation is on the ground floor, so may suit guests with restricted mobility\\r\\n\\r\\nBedroom: double bed, bedside tables, wardrobe, chest of drawers, chair\\r\\nShower room: shower, toilet, hand basin\\r\\n\\r\\nOpen plan area with: \\r\\nSitting area: sofa, 2 armchairs, digital TV, video player, video collection\\r\\nKitchen area: gas cooker, fridge/freezer, microwave\\r\\n\\r\\nOUTSIDE\\r\\nThe grounds around the cottage and Rhyd y Brown Farmhouse offer plenty of room for both properties to enjoy their own section of garden space, divided by shrubs for privacy. Garden table and chairs. Ample gravel parking to the front of the cottage - a car is essential at Rhyd Y Brown.\\r\\n\\r\\nKEY FACTS\\r\\n- Bed linen and towels provided. Please bring your own beach towels\\r\\n- Oil fired central heating\\r\\n- 2 well-behaved dogs welcome upon request. Please let us know if you're bringing a dog (or more) upon booking (more may be permitted by arrangement)\\r\\n- No smoking\"\n            },\n            \"location\": {\n                \"display\": \"Llys Y Fran, Pembrokeshire\",\n                \"coordinates\": {\n                    \"latitude\": \"51.8657417\",\n                    \"longitude\": \"-4.8061771\"\n                },\n                \"address\": {\n                    \"county\": \"Pembrokeshire\",\n                    \"town\": \"Llys Y Fran\"\n                }\n            },\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9787\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9787/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9787/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9787/reviews\"\n            }\n        },\n        {\n            \"id\": 9814,\n            \"name\": \"Brynllin\",\n            \"reference\": \"brynllin\",\n            \"slug\": \"brynllin\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/brynllin\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:46.000000Z\",\n                \"updated_at\": \"2025-07-12T23:06:08.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 8,\n                \"bedrooms\": 5,\n                \"bathrooms\": 2,\n                \"pets\": 2,\n                \"parking\": 1,\n                \"type\": \"Cottage\",\n                \"description\": \"A renovated and extended traditional hillside stone cottage overlooking beautiful countryside just over a mile from Blue Flag beaches at Llangrannog. Ideal for extended families or two families wishing to holiday together, Brynllin is a comfortable, welcoming and spacious cottage with a large private south facing garden. There is a downstairs bedroom and shower room suitable for guests with restricted mobility.\\r\\n\\r\\nA short 800m walk will take you to the Ceredigion coastal path and spectacular clifftop views of the Cardigan Bay, perfect for keen walkers, dolphin spotters or strolls down to the beaches, pubs or cafes in Llangrannog.\\r\\n\\r\\nJust to the north is the spectacular Ynys Lochtyn, with the beaches of Penbryn, Tresaith and Mwnt a few miles to the south. Explore the other places on Cardigan Bay such as the colourful fishing village of New Quay, popular with all the family for its dolphin-spotting boat trips and activities such as sea kayaking and paddle boarding. (20 minutes), the picturesque Georgian harbour town of Aberaeron (20 minutes), Cardigan (25 minutes) and Aberystwyth (50 minutes). The house is on the Cardibach bus route.\\r\\n\\r\\nAs well as exploring Ceredigion, Pembrokeshire has much to offer with attractions such as Folly Farm, Heatherton, St Davids Cathedral and the medieval harbour town of Tenby.\\r\\n\\r\\nThe owners have approved a company from which guests may arrange to hire a hot tub if they wish. The charge is approximately Â£150 per week. Please contact the owner directly for more information.\\r\\n\\r\\nACCOMMODATION\\r\\nBrynllin sleeps 8 to 9 in 5 bedrooms (one on the ground floor):  1 super king, 1 double, 2 twin rooms and a futon in the cot room can sleep one additional child. Bedroom and shower room on the ground floor may suit guests with restricted mobility. Downstairs, slate floors warmed by underfloor heating\\r\\n\\r\\nFIRST FLOOR \\r\\nBedroom 1: super king size bed\\r\\nBedroom 2: twin bedroom\\r\\nBedroom 3: twin bedroom\\r\\nBedroom 4: futon for one extra guest\\r\\nBathroom: bath, toilet and basin\\r\\n\\r\\nGROUND FLOOR\\r\\nBedroom 5: double bed\\r\\nBathroom: large shower, bath, toilet and basin\\r\\n\\r\\nSpacious and open-plan living area with:\\r\\nSitting area: 2 large sofas, TV and DVD player, patio doors with views across the valley\\r\\nDining area: table seating 8\\r\\nKitchen area: oven, hob, microwave, fridge/freezer, dishwasher and washing machine\\r\\n\\r\\nOUTSIDE\\r\\nClose to the kitchen is a patio with a large round table, chairs and bench. The private garden benefits from a south-facing aspect, offering the first and last sunlight of the day to relax in after a day on the beach, with space for children to play. Off-road parking for 1 car is available and further space on the lane.\\r\\n\\r\\nKEY FACTS\\r\\n- Bed linen provided\\r\\n- Please bring your own towels\\r\\n- Travel cot and highchair available, please bring your own cot linen\\r\\n- Free unlimited WiFi\\r\\n- 2 well-behaved dogs welcome upon request. Please let us know if you're bringing a dog (or more) upon booking. \\r\\n- No smoking\\r\\n- Â£150 damages deposit required\"\n            },\n            \"location\": {\n                \"display\": \"Llangrannog, Ceredigion\",\n                \"coordinates\": {\n                    \"latitude\": \"52.1617699\",\n                    \"longitude\": \"-4.4386644\"\n                },\n                \"address\": {\n                    \"county\": \"Ceredigion\",\n                    \"town\": \"Llangrannog\"\n                }\n            },\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9814\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9814/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9814/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9814/reviews\"\n            }\n        },\n        {\n            \"id\": 9818,\n            \"name\": \"Brynmeurig Stable\",\n            \"reference\": \"brynmeurig\",\n            \"slug\": \"brynmeurig-stable\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/brynmeurig-stable\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:46.000000Z\",\n                \"updated_at\": \"2025-06-20T14:51:08.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 5,\n                \"bedrooms\": 3,\n                \"bathrooms\": 1,\n                \"pets\": 1,\n                \"parking\": 3,\n                \"type\": \"House\",\n                \"description\": \"Brynmeurig Stable is a converted stone farm building with wooden beams and oak flooring, in a rural location with beautiful views. Situated 6 miles east of Aberystwyth, it is a great base for visiting this attractive part of Wales. Renovated to a high standard, Brynmeurig Stable is perfect for families, walkers, golfers, fishermen, bird watchers, photographers, cyclists and those who just want some peace. The area is ideal for those who are looking for an outdoor holiday.\\r\\n\\r\\nThe nearest beaches are only 5-6 miles away. Borth and stunning Ynyslas with its sand dunes on the Dyfi estuary are about 8 miles away and are ideal for walking, taking in the views and building sand castles.\\r\\n\\r\\nThere are miles of forestry walks, mountain bike tracks and lakes just up the road. Three miles away you can park and walk to the Nant yr Arian visitor centre to see dozens of red kites being fed every afternoon. There are so many red kites here it is almost impossible not to see one; they hover over the garden on their way to and from Nant yr Arian.\\r\\n\\r\\nOther local attractions include Devils Bridge Falls and Railway, Constitution Hill with its Cliff Railway and Camera Obscura, Borth and Ynyslas Golf Course, Capel Bangor Golf Course, The National Library of Wales, Pony Trekking, the Hafod Estate and sea fishing.\\r\\n\\r\\nThe local village with Post Office, petrol station and shop are only a mile away.\\r\\n\\r\\nFor those who like real food and real ale we are lucky to have both The Druid Inn and the Tynllidiart Arms just 10 minutes drive away. The Druid welcomes children and dogs; the Tynllidiart houses the UK's smallest brewery\\r\\n\\r\\nACCOMMODATION\\r\\nBrynmeurig Stable sleeps up to 5 adults and 1 child in 3 bedrooms: 1 king size, 1 double and 1 single plus 2â€™6â€\\u009d â€˜put-upâ€™ bed\\r\\n\\r\\nUPSTAIRS\\r\\nBedroom 1: single bed, 2â€™6â€\\u009d put up bed\\r\\nLiving room: two 2-seater sofas, 32â€\\u009d Panasonic LCD television with Freeview, DVD player, CD/radio, electric â€˜wood burnerâ€™ effect fire with realistic flames and smoke effect\\r\\nKitchen: dishwasher, freezer, fridge, microwave, hand-made units with oak doors, pine dining table seating 4-6\\r\\n\\r\\nDOWNSTAIRS\\r\\nBedroom 1: king size bed\\r\\nBedroom 2: double bed, bedside tables\\r\\nBathroom: shower, toilet, hand basin\\r\\n\\r\\nOUTSIDE\\r\\nEnclosed patio with chairs and table, lawned area with fruit trees and bushes, garden furniture and BBQ. Tranquil, private and fenced in, with a thick hedge between Brynmeurig and a lightly used lane. Shed for keeping bikes, golf clubs etc or the kids can use it as a den. Parking for up to 3 cars.\\r\\n\\r\\nKEY FACTS\\r\\n- Bed linen and towels provided. Please bring your own beach towels\\r\\n- Cot available. Please bring your own cot bedding\\r\\n- Central heating\\r\\n- Free WiFi\\r\\n- 1 large or 2 small well-behaved dogs welcome at no extra charge\\r\\n- No smoking\"\n            },\n            \"location\": {\n                \"display\": \"Aberystwyth, Ceredigion\",\n                \"coordinates\": {\n                    \"latitude\": \"52.4382553\",\n                    \"longitude\": \"-3.9627748\"\n                },\n                \"address\": {\n                    \"county\": \"Ceredigion\",\n                    \"town\": \"Aberystwyth\"\n                }\n            },\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9818\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9818/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9818/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9818/reviews\"\n            }\n        },\n        {\n            \"id\": 9827,\n            \"name\": \"Brynhelyg View\",\n            \"reference\": \"brynview\",\n            \"slug\": \"brynhelyg-view\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/brynhelyg-view\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:46.000000Z\",\n                \"updated_at\": \"2025-06-19T08:33:57.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 4,\n                \"bedrooms\": 3,\n                \"bathrooms\": 1,\n                \"pets\": 1,\n                \"parking\": 1,\n                \"type\": \"House\",\n                \"description\": \"Brynhelyg View in the centre of the popular seaside village of Aberporth, Ceredigion is a comfortable apartment ideal for a beach holiday or as a base for a walking holiday, being close to the Ceredigion Coast Path. The apartment is spacious and bright; a great base for a family holiday and perfect to come home to after a day on the beach or exploring the nearby seaside villages. The conservatory is the perfect place to relax with a drink and take in the view toward the sea and Cardigan Bay and the courtyard seating area is ideal for al-fresco breakfasts and barbecues.\\r\\n\\r\\nBrynhelyg View is in the heart of the village with cafÃ©s, a pub, restaurants/takeaways, and a childrenâ€™s play area. There is a Spar for all the basics, Post Office, chemist, art gallery, and launderette all on the doorstep. Itâ€™s a five-minute walk to the beautiful sandy beaches of Aberporth. Both beaches are safe and perfect for swimming, water sports, or relaxing. The rocky headland and Ceredigion Coast Path are less than 100 meters away providing spectacular views and the opportunity for lovely walks and dolphin, seal, and seabird spotting.\\r\\n\\r\\nTresaith village and beach is a short walk along the coast and further north is the beautiful National Trust beach at Penbryn and the popular village of Llangrannog. The beach and pretty Eglwys Y Grog (Holy Cross Church) are nearby at Mwnt. The area has many family attractions and historical sites to suit all tastes and ages. The market town of Cardigan is a 15-minute drive, with a range of independent shops, galleries, a supermarket, theatre/cinema and a restored castle.\\r\\n\\r\\nACCOMMODATION\\r\\nBrynhelyg View sleeps a maximum of 4 guests in 3 bedrooms: 1 king size, 1 double and 1 set of bunk beds. The apartment is on the first floor so may not be suitable for anyone who prefers to avoid steps.\\r\\n\\r\\nBedroom 1: king size bed\\r\\nBedroom 2: bunk beds, built-in wardrobe and room for a travel cot\\r\\nBedroom 3: double bed with built-in wardrobe\\r\\nBathroom: bath, shower enclosure, toilet, hand basin, shaver point\\r\\n\\r\\nLiving room/dining area: 3-seater sofa, 2-seater sofa, Freeview TV, dining table seating 6, French doors to small conservatory with panoramic views of Aberporth and the headland\\r\\nKitchen: electric hob, electric oven, microwave, fridge freezer\\r\\n\\r\\nOUTSIDE\\r\\nPretty courtyard with flower beds, private decked area with a picnic table and a built-in barbeque. Please ensure children are supervised. Stairs to the apartment have a handrail. The apartment is accessed from the car park area and there is parking for 1 car.\\r\\n\\r\\nKEY FACTS\\r\\n- Bed linen and towels provided. Please bring your own beach towels\\r\\n- Travel cot and stairgate available. Please bring your own cot bedding\\r\\n- Oil central heating\\r\\n- Free WiFi\\r\\n- Ironing board and iron\\r\\n- Hairdryer\\r\\n- 1 dog allowed free of charge\\r\\n- No smoking\"\n            },\n            \"location\": {\n                \"display\": \"Aberporth, Ceredigion\",\n                \"coordinates\": {\n                    \"latitude\": \"52.1326752\",\n                    \"longitude\": \"-4.5418978\"\n                },\n                \"address\": {\n                    \"county\": \"Ceredigion\",\n                    \"town\": \"Aberporth\"\n                }\n            },\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9827\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9827/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9827/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9827/reviews\"\n            }\n        },\n        {\n            \"id\": 9829,\n            \"name\": \"Bryn Y Mor\",\n            \"reference\": \"brynymor\",\n            \"slug\": \"bryn-y-mor\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/bryn-y-mor\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:46.000000Z\",\n                \"updated_at\": \"2025-06-20T14:51:33.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 6,\n                \"bedrooms\": 3,\n                \"bathrooms\": 2,\n                \"pets\": 0,\n                \"parking\": 1,\n                \"type\": \"House\",\n                \"description\": \"Bryn Y Mor is a charming seaside cottage within 100 metres of the sandy beach in Llangrannog, a tranquil seaside village nestling in a steep-sided valley on the Ceredigion Heritage Coast. With the beach practically on the doorstep, it is perfect for a family seaside holiday or a great base for walkers with access to Ceredigion Coast Path direct from the beach.\\r\\n\\r\\nThe cottage is light and airy with modern facilities and character features. After a day exploring, swimming, or kayaking relax and watch the world go by or chat with the locals from the seating area to the front or chill out with a drink and a view of the sea from the Crows Nest patio. The cosy lounge with its wood burner makes this a great place to stay -Â  at any time of year.\\r\\n\\r\\nIt is just a very short walk to the village facilities including two beachside cafes, a pub, a fish and chip shop and a pizza takeaway.\\r\\n\\r\\nLlangrannogâ€™s main beach is ideal for bodyboarders and surfers and the second beach, accessible at low tide, is a delightful sandy cove. A short walk along the Ceredigion Coast Path to the North is the spectacular headland of Ynys Lochtyn, with the beaches of Penbryn and Tresaith a few miles to the South. Dolphins and seals can often be seen in the area.\\r\\n\\r\\nThere is something for everyone to do in the area including boat trips, garden visits, riding, golf, and fishing. There is a well-stocked supermarket/garage a short drive away and Cardigan (10 miles) has two supermarkets, a theatre/cinema, shops, galleries, and cafÃ©s. Further afield are other interesting places such as Tenby, Aberystwyth, Devilâ€™s Bridge, and the Preseli Hills.\\r\\n\\r\\nACCOMMODATION\\r\\nBryn Y Mor sleeps 6 in 3 bedrooms:1 king size, 1 double and one set of bunk beds\\r\\n\\r\\nSECOND FLOOR\\r\\nAttic bedroom: French renaissance king size bed, matching dressing table, chest of drawers, open beams\\r\\nEn suite shower room: power shower enclosure, toilet, hand basin\\r\\n\\r\\nUPSTAIRS\\r\\nBedroom 2: double bed\\r\\nBedroom 3: bunk beds Bathroom: large corner bath, walk-in shower enclosure, toilet, hand basin\\r\\n\\r\\nDOWNSTAIRS\\r\\nLiving room: wood burner, smart TV with surround sound system, two 3-seater leather sofas\\r\\nKitchen/diner: electric Aga, microwave/microwave oven, fridge, coffee machine, 2 modern bar stools, dining area seating 6\\r\\nUtility room: washer/dryer, fridge freezer\\r\\n\\r\\nOUTSIDE\\r\\nSecluded garden area to the rear, accessed from the back door on the first floor of the property. 2 patio levels: the first beautiful stone area is large enough for BBQing with table and lounging chairs. The second patio level is nestled into the side of the cliff, the Crows Nest is nicely sheltered providing a sun trap for leisurely sunbathing. The Crows Nest has two loungers and views across the bay. Washing line available. Room to sit at the front of the property and watch the world go by. Opposite the cottage is an open garage for general use. Parking for 1 car, public car park on the hill above the village.\\r\\n\\r\\nKEY FACTS\\r\\n- Bed linen and towels provided, please bring your own beach towels\\r\\n- Oil central heating\\r\\n- Free WiFi\\r\\n- Sorry, no dogs\\r\\n- No smoking\"\n            },\n            \"location\": {\n                \"display\": \"Llangrannog, Ceredigion\",\n                \"coordinates\": {\n                    \"latitude\": \"52.159729\",\n                    \"longitude\": \"-4.4699149\"\n                },\n                \"address\": {\n                    \"county\": \"Ceredigion\",\n                    \"town\": \"Llangrannog\"\n                }\n            },\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9829\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9829/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9829/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9829/reviews\"\n            }\n        },\n        {\n            \"id\": 9831,\n            \"name\": \"Lower Bubbleton\",\n            \"reference\": \"bubbleton\",\n            \"slug\": \"bubbleton\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/bubbleton\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:46.000000Z\",\n                \"updated_at\": \"2025-07-12T23:05:58.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 5,\n                \"bedrooms\": 2,\n                \"bathrooms\": 2,\n                \"pets\": 2,\n                \"parking\": 4,\n                \"type\": \"Cottage\",\n                \"description\": \"A beautifully restored â€˜Pembrokeshire longhouseâ€™ cottage in the hamlet of Bubbleton, just 2 miles from Tenby and connected to the Pembrokeshire Coast path (5 min walk). The luxury cottage comprises 2 bedrooms (1 en-suite), 2 bathrooms, a spacious kitchen with modern electric Aga and granite worktops, and an open plan layout. The â€˜snugâ€™ features a log burner, board games, and Freeview TV.\\r\\n\\r\\nThe cottage overlooks an enclosed garden with views of the rolling hills above. Bubbleton offers walks along the coast path to beaches like Lydstep and Penally. A short drive/walk leads to the picturesque village of Manorbier and the Harbor town of Tenby, making it ideal for a walking holiday. Additionally, there is a Farm Shop with a cafÃ© selling local and craft produce within a short walk from the hamlet.\\r\\n\\r\\nThe fully restored cottage combines traditional appearance with modern luxuries, including underfloor heating and WiFi. It is perfect for families as it offers plenty of space for children to enjoy the surroundings while adults relax.\\r\\n\\r\\nACCOMMODATION\\r\\nLower Bubbleton can accommodate 5 guests in 2 bedrooms: 2 king-size beds and one single bed. Please note that the cottage is on 3 levels and not suitable for visitors with restricted mobility.\\r\\n\\r\\nUPSTAIRS\\r\\n- Bedroom 1: king-size bed with stunning views of the hills\\r\\n- En-suite shower room: shower, toilet, hand basin, heated towel rail\\r\\n\\r\\nDOWNSTAIRS\\r\\n- Bedroom 2: king-size bed, single bed\\r\\n- Bathroom: bath, toilet, hand basin\\r\\n- Living room: 3-seater sofa, 2-seater sofa, 32â€\\u009d Freeview TV, log burner\\r\\n- Kitchen: AGA range cooker, gas hob, electric oven, microwave, fridge/freezer, dishwasher, washing machine\\r\\n- Dining room: table seating 6, countryside views, bi-fold doors opening onto patio\\r\\n\\r\\nOUTSIDE\\r\\n- Large enclosed front garden with furnished patio, fire pit, and level lawn\\r\\n- Ground-level trampoline (children supervision required)\\r\\n- Driveway parking for 4 cars\\r\\n\\r\\nKEY FACTS\\r\\n- Bed linen and towels provided (beach towels not included)\\r\\n- Travel cot, highchair available (cot bedding not provided)\\r\\n- Gas central heating\\r\\n- First basket of logs provided (more available locally)\\r\\n- Free WiFi\\r\\n- 2 well-behaved dogs welcome upon request. Please let us know if you're bringing a dog (or more) upon booking. \\r\\n- No smoking\"\n            },\n            \"location\": {\n                \"display\": \"Tenby, Pembrokeshire\",\n                \"coordinates\": {\n                    \"latitude\": \"51.6579323\",\n                    \"longitude\": \"-4.7508435\"\n                },\n                \"address\": {\n                    \"county\": \"Pembrokeshire\",\n                    \"town\": \"Tenby\"\n                }\n            },\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9831\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9831/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9831/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9831/reviews\"\n            }\n        },\n        {\n            \"id\": 9834,\n            \"name\": \"Brynhelyg Cottage\",\n            \"reference\": \"bwthyn\",\n            \"slug\": \"brynhelyg-cottage\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/brynhelyg-cottage\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:47.000000Z\",\n                \"updated_at\": \"2025-06-20T14:52:11.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 3,\n                \"bedrooms\": 2,\n                \"bathrooms\": 1,\n                \"pets\": 2,\n                \"parking\": 1,\n                \"type\": \"House\",\n                \"description\": \"Brynhelyg Cottage is a cosy cottage just a five-minute walk to the beautiful dog-friendly sandy beaches of Aberporth, Ceredigion. The cottage is perfect for a family looking for a seaside holiday or for walkers who can access the Ceredigion Coast Path less than 100 metres from the door. The ground floor accommodation provides comfortable open-plan living and the courtyard dining area and barbecue is a great place to come back to after a day on the beach or exploring the area.\\r\\n\\r\\nBrynhelyg Cottage is in the heart of Aberporth village which has a couple of cafÃ©s, a pub, and takeaways. There is a small supermarket selling all the basics, an art gallery, a Post Office, a chemist, and a launderette all within a few minutesâ€™ walk.\\r\\n\\r\\nBoth beaches are safe and perfect for swimming, water sports or relaxing. Ceredigion Coast Path has spectacular scenery and the opportunity for long walks and dolphin spotting. Tresaith village and beach to the north is a short walk along the coast and further along is the National Trust beach at Penbryn and the popular village and beaches of Llangrannog.\\r\\n\\r\\nThe seaside village of New Quay from where you can take a dolphin spotting boat trip is a short drive away. The traditional Welsh church and beautiful beach at Mwnt are close by. The area has many historical sites and family attractions so something for everyone. The market town of Cardigan is a 15-minute drive, with a range of independent shops, pubs, restaurants, a theatre/cinema, and a castle.\\r\\n\\r\\nACCOMMODATION\\r\\nBrynhelyg Cottage sleeps 3 in 2 bedrooms: 1 double and 1 single. All the accommodation is on the ground floor so may suit guests with restricted mobility\\r\\n\\r\\nBedroom 1: double bed, built-in wardrobe\\r\\nBedroom 2: single bed, built-in wardrobe\\r\\nBathroom: bath with shower over, toilet, hand basin, shaver point\\r\\nLiving/dining area: 2-seater sofa, armchair, Sky/Freeview TV, electric fire, dining table and seating for 3 Kitchen: electric hob, electric oven, microwave, fridge, dishwasher, good selection of kitchen utensils and implements\\r\\n\\r\\nOUTSIDE\\r\\nPretty, small courtyard with flowerbeds, a decked area with a brick-built BBQ. Please ensure children are supervised. Enclosed area for dogs. Level driveway parking for 1 car to the side of the cottage.\\r\\n\\r\\nKEY FACTS\\r\\n- Bed linen and towels provided. Please bring your own beach towels\\r\\n- Travel cot and stairgate available. Please bring your own cot bedding\\r\\n- Oil central heating\\r\\n- Free WiFi\\r\\n- Ironing board and iron\\r\\n- Hairdryer\\r\\n- Two well behaved dogs welcome free of charge\\r\\n- No smoking\"\n            },\n            \"location\": {\n                \"display\": \"Aberporth, Ceredigion\",\n                \"coordinates\": {\n                    \"latitude\": \"52.1325912\",\n                    \"longitude\": \"-4.5422459\"\n                },\n                \"address\": {\n                    \"county\": \"Ceredigion\",\n                    \"town\": \"Aberporth\"\n                }\n            },\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9834\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9834/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9834/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9834/reviews\"\n            }\n        },\n        {\n            \"id\": 9835,\n            \"name\": \"Caban Tawel\",\n            \"reference\": \"caban\",\n            \"slug\": \"caban-tawel\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/caban-tawel\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:47.000000Z\",\n                \"updated_at\": \"2025-06-20T14:52:27.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 6,\n                \"bedrooms\": 3,\n                \"bathrooms\": 2,\n                \"pets\": 4,\n                \"parking\": 3,\n                \"type\": \"Lodge\",\n                \"description\": \"Caban Tawel means peaceful cabin â€“ a perfect description for this property built of Finnish pine. Caban Tawel is situated in its own grounds on Newton East Farm near the village of Wolfscastle, in the heart of rural Pembrokeshire, approximately 7 miles from Haverfordwest. In an idyllic setting, the farm has over 14 acres of woodland as well as hay meadows, wetlands, ponds and the Western Cleddau forms part of the boundary. The garden is enclosed for dogs and there are walks from the cabin through the pretty woodland.\\r\\n\\r\\nThere are lots of activities nearby including coarse and sea fishing, golf and horse riding, and it is just a short drive to the coast to relax on the beaches or walk part of the Coast Path.\\r\\n\\r\\nThe floors throughout are bare wood with rugs in the living area, hallways and bedrooms. The floors in the bathroom and kitchen have non-slip floor coverings. Caban Tawel is well insulated throughout and provides a cosy place to stay in winter and a light, cool and airy place to stay in summer.\\r\\n\\r\\nThis is an ideal base for a holiday in Pembrokeshire, whether you are a walker, angler, wildlife enthusiast or someone who simply wishes to relax on the beach. There is no washing machine but a laundry service can be provided. The owners will provide essentials such as tea, coffee and milk on your arrival.\\r\\n\\r\\nACCOMMODATION\\r\\nCaban Tawel sleeps 5 adults and 1 child in 3 bedrooms: 2 doubles and 1 bunk room (upper bunk only suitable for children aged 6 to 16 years old)\\r\\n\\r\\nBedroom 1: double bed, bedside tables\\r\\nEn suite: shower cubicle, wash basin, toilet\\r\\nBedroom 2: double bed, bed side tables\\r\\nBedroom 3: bunk beds (the lower bunk bed can accommodate an adult but the upper bunk is only suitable for children aged from 6 to 16 years old)\\r\\nFamily bathroom: shower over full size bath, wash basin, toilet\\r\\n\\r\\nOpen plan area with...\\r\\nSitting area: two 2-seater sofas, chairs, TV/DVD, CD stereo player, selection of family games, patio doors onto large covered veranda with views of the Preseli Hills\\r\\nKitchen area: full size cooker with grill, fridge-freezer, microwave\\r\\nDining area: extending pine table with 6 chairs\\r\\n\\r\\nOUTSIDE\\r\\nA large picnic bench is provided. Covered veranda with small table and chairs for use throughout the year. Small mixed shrub border in front of the veranda, large grassy area and ample parking in front of Caban Tawel.\\r\\n\\r\\nKEY FACTS\\r\\n- Bed linen and towels provided. Please bring your own beach towels\\r\\n- Travel cot and highchair available. Please bring your own cot bedding\\r\\n- Oil-fired central heating\\r\\n- Welcome pack on arrival such as tea, coffee and milk\\r\\n- 4 well-behaved dogs welcome at no extra cost\\r\\n- Free WiFi\\r\\n- No smoking\\r\\n- Please note: When booking Caban Tawel, the person making the booking must be over 21 years old. That person must be in charge of the party and must be present during the stay.\"\n            },\n            \"location\": {\n                \"display\": \"Fishguard, Pembrokeshire\",\n                \"coordinates\": {\n                    \"latitude\": \"51.901741\",\n                    \"longitude\": \"-5.005034\"\n                },\n                \"address\": {\n                    \"county\": \"Pembrokeshire\",\n                    \"town\": \"Fishguard\"\n                }\n            },\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9835\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9835/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9835/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9835/reviews\"\n            }\n        },\n        {\n            \"id\": 9844,\n            \"name\": \"Caerhafod\",\n            \"reference\": \"caerhafod\",\n            \"slug\": \"caerhafod\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/caerhafod\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:47.000000Z\",\n                \"updated_at\": \"2025-07-12T23:05:51.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 6,\n                \"bedrooms\": 3,\n                \"bathrooms\": 1,\n                \"pets\": 2,\n                \"parking\": 3,\n                \"type\": \"Cottage\",\n                \"description\": \"Caerhafod, a refurbished bungalow in Caerwedros, is set in the beautiful West Wales countryside within walking distance of the Ceredigion Heritage Coast. Two miles away is the secluded 18th Century smugglers cove of Cwmtydu, where you may spot some Atlantic grey seals, or just sit back and enjoy the scenery. The sunny conservatory is a great place to read and relax\\r\\n\\r\\nThe cottage is 3.5 miles from New Quay with its sandy beaches, shops, and picturesque harbour. It is also less than 5 miles from Llangrannog, another popular village with sandy beaches. Closer to home, you can reach the sea by taking some lovely footpaths through the woods of Cwm Soden, following the river down the Tydu valley as it goes out to sea. This leads you on to the private inlets and beaches of Castell Bach and Cwmsilio. These walks are a must if you visit the area.\\r\\n\\r\\nFurther afield the Georgian town of Aberaeron is a 15-minute drive away. Cardigan town is less than 30 minutes away and the main commercial centres of Aberystwyth and Carmarthen are 45 minutes away. Local shops and businesses can provide most of the requirements for an enjoyable holiday, including freshly laid farm eggs and seasonal vegetables.\\r\\n\\r\\nACCOMMODATION\\r\\nCaerhafod sleeps 6 in 3 bedrooms: 1 double, 1 twin and 1 bunk bed. There is also a double sofa bed in the conservatory which can accommodate an additional 2 guests on request. All the accommodation is on the ground floor so may suit guests with restricted mobility\\r\\n\\r\\nBedroom 1: double bed, bedside tables, fitted wardrobe\\r\\nBedroom 2: twin beds, bedside tables, chair, fitted wardrobe\\r\\nBedroom 3: bunk beds, chest of drawers\\r\\nBathroom: double shower, toilet, hand basin, heated towel rail\\r\\n\\r\\nLiving room: two-seater sofas, digital TV with DVD player, electric fire, coffee tables\\r\\nKitchen: well-equipped with electric cooker, fridge, microwave, dishwasher, freezer, dining table seating 8/9\\r\\nUtility room: washing machine, tumble dryer\\r\\nConservatory: double sofa bed, table and 4 chairs\\r\\n\\r\\nOUTSIDE\\r\\nPaved area to the front and at the rear another secure paved area with garden table and seating, BBQ and washing line. Off-road parking for 3 cars.\\r\\n\\r\\nKEY FACTS\\r\\n- Bed linen and tea towels provided\\r\\n- Please bring your own towels\\r\\n- Free WiFi\\r\\n- 2 well-behaved dogs welcome upon request. Please let us know if you're bringing a dog (or more) upon booking. \\r\\n- No smoking\"\n            },\n            \"location\": {\n                \"display\": \"Llangrannog, Ceredigion\",\n                \"coordinates\": {\n                    \"latitude\": \"52.1759148\",\n                    \"longitude\": \"-4.3773594\"\n                },\n                \"address\": {\n                    \"county\": \"Ceredigion\",\n                    \"town\": \"Llangrannog\"\n                }\n            },\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9844\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9844/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9844/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9844/reviews\"\n            }\n        },\n        {\n            \"id\": 9849,\n            \"name\": \"Lower Calf Field Farm Cottage\",\n            \"reference\": \"calffield\",\n            \"slug\": \"lower-calf-field-farm-cottage\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/lower-calf-field-farm-cottage\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:47.000000Z\",\n                \"updated_at\": \"2025-07-12T05:49:07.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 5,\n                \"bedrooms\": 2,\n                \"bathrooms\": 2,\n                \"pets\": 1,\n                \"parking\": 2,\n                \"type\": \"House\",\n                \"description\": \"Lower Calf Field Farm Cottage offers a unique stay in a beautifully converted cowshed, combining rustic charm with stylish comfort. Set within a peaceful, non-working farmyard alongside a cart house, barn, pigsty, and the ownersâ€™ farmhouse (home also to their friendly small dog), this cottage is ideal for a relaxing break in Pembrokeshire.\\r\\n\\r\\nSet in two acres of gardens, including a serene orchard and enchanting woodland walk, guests are welcome to explore and unwind in nature. Whether you're looking for a romantic getaway or a base for outdoor adventures, this is a place to truly switch off and soak up the surroundings.\\r\\n\\r\\nJust 6 miles from the golden sands of Newgale Beach, and a short drive to the bustling market town of Haverfordwest, the location is rural yet wonderfully connected. Fancy a pint or a hearty meal? The local pub is just a short stroll away.\\r\\n\\r\\nAt the front of the cottage, a sunny west-facing terrace provides the perfect spot to enjoy your morning coffee or watch a spectacular Pembrokeshire sunset. Thereâ€™s also a private area behind the cottage for added peace and privacy.\\r\\n\\r\\nThis is a fantastic choice if youâ€™re browsing for holiday cottages in Newgale or seeking accommodation in Newgale that offers more than just a place to sleep. Whether you want to surf at Newgale, explore the dramatic coastal path, or simply enjoy a slower pace of life, Lower Calf Field Farm Cottage is your perfect base.\\r\\n\\r\\nACCOMMODATION\\r\\nLower Calf Field Cottage sleeps 4-5 in 2 bedrooms: 2Â king size and 1 single bed. All the accommodation is on the ground floor so may suit guests with restricted mobility\\r\\n\\r\\nBedroom 1: king size bed, chaise longue, wardrobe, dressing table, bedside tables, bookshelf\\r\\nEn suite wet room: shower, toilet, hand basin\\r\\nBedroom 2: king size bed, single bed, bedside cabinets, built in wardrobes, chest of drawers\\r\\nEn suite 2: bath with shower over, toilet, hand basin\\r\\n\\r\\nOpen plan living area withâ€¦\\r\\nSitting area: 3-seater sofa, 2-seater sofa, Freeview TV, DVD, DAB radio, Bluetooth speaker, coffee table, log burner, bookcase with a good selection of books and games\\r\\nKitchen: induction hob, electric oven, microwave, fridge freezer, Nespresso coffee machine, dishwasher and automatic washing machine\\r\\nDining area: table seating 4, dresser\\r\\n\\r\\nOUTSIDE\\r\\nThe terrace at the front of the cottage and the area directly behind the cottage are for the exclusive use of cottage guests. Guests are welcome to explore the orchard and woodland walk. The grounds are all fenced and the yard is gated. There is a pond and low walls outside the cottage, so please ensure children are supervised. There is ample parking in the yard with ramped access from the parking area.\\r\\n\\r\\nKEY FACTS\\r\\n- Travel cot and highchair available. Please bring your own cot bedding\\r\\n- Oil central heating\\r\\n- First basket of logs provided, more available to purchase locally\\r\\n- 1 well-behaved dog welcome at Â£3 per night\\r\\n-  No smoking\\r\\n- Check in after 4 pm, check out by 10 am\"\n            },\n            \"location\": {\n                \"display\": \"Newgale, Pembrokeshire\",\n                \"coordinates\": {\n                    \"latitude\": \"51.8378181\",\n                    \"longitude\": \"-4.9914141\"\n                },\n                \"address\": {\n                    \"county\": \"Pembrokeshire\",\n                    \"town\": \"Newgale\"\n                }\n            },\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9849\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9849/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9849/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9849/reviews\"\n            }\n        },\n        {\n            \"id\": 9855,\n            \"name\": \"Carn Ingli\",\n            \"reference\": \"carningli\",\n            \"slug\": \"carn-ingli\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/carn-ingli\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:47.000000Z\",\n                \"updated_at\": \"2025-06-20T14:53:01.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 5,\n                \"bedrooms\": 2,\n                \"bathrooms\": 1,\n                \"pets\": 0,\n                \"parking\": 1,\n                \"type\": \"House\",\n                \"description\": \"Carn Ingli sits above the sandy beach in the popular seaside village of Aberporth on Cardigan Bay. Between the cottage and the sea is a large grassy area perfect for sitting looking over the bay, looking out for dolphins and seals or watching the sunset over the sea.\\r\\n\\r\\nThe cottage lies right beside the Ceredigion Coastal Path, which stretches for 63 miles along Cardigan Bay. Walk out of the door and onto the path for wonderful walks through stunning coastal scenery, perfect for photography and wildlife spotting. Or just stroll down to the beaches below the cottage. Also within a short walk is the Aberporth village shop, cafes and a pub serving food.\\r\\n\\r\\nVisit the nearby coves at Tresaith, Penbryn, Llangrannog and Mwnt with their sandy beaches. Explore the local villages and towns such as New Quay (30 minutes), Aberaeron (30 minutes) and Cardigan (15 minutes).\\r\\n\\r\\nTake a day out to visit Pembrokeshireâ€™s famous attractions such as Folly Farm and St Davids Cathedral and the medieval harbour town of Tenby, all about an hour away. You can take boat trips along the gorgeous coast, enjoy scenic drives through the Teifi or Aeron Valleys or ride the heritage steam trains to see the beautiful countryside. West Wales offers plenty for all the family.\\r\\n\\r\\nACCOMMODATION\\r\\nCarn Ingli sleeps 5 - 7 in 2 bedrooms: 1 double and 1 double with a single. A sofa bed in the lounge provides accommodation for two further people\\r\\n\\r\\nUPSTAIRS\\r\\nBedroom 1: double bed, bedside tables, chest of drawers, TV\\r\\nBedroom 2: double bed, single bed, bedside tables, TV\\r\\nShower room: shower, toilet, hand basin\\r\\n\\r\\nDOWNSTAIRS\\r\\nLiving room: 3-seater sofa, armchairs, fire, Freeview TV, DVD player\\r\\nKitchen: electric cooker and hob, dishwasher, washer/dryer, microwave, fridge, freezer, ironing facilities\\r\\nDining room: dining table, chairs for 6, 3-seater sofa\\r\\nConservatory: 2-seater wicker sofa, wicker chairs, TV\\r\\nWC: toilet, hand basin\\r\\n\\r\\nOUTSIDE\\r\\nSeating areas to front and rear of house, with outside table, chairs and sun loungers. Driveway parking for 1 car.\\r\\n\\r\\nKEY FACTS\\r\\n- Bed linen provided\\r\\n- Please bring your own towels\\r\\n- Cot and highchair available on request. Please bring your own cot bedding\\r\\n- Central heating\\r\\n- Free WiFi\\r\\n- Sorry, no dogs\\r\\n- No smoking\"\n            },\n            \"location\": {\n                \"display\": \"Aberporth, Ceredigion\",\n                \"coordinates\": {\n                    \"latitude\": \"52.1350136\",\n                    \"longitude\": \"-4.542871\"\n                },\n                \"address\": {\n                    \"county\": \"Ceredigion\",\n                    \"town\": \"Aberporth\"\n                }\n            },\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9855\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9855/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9855/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9855/reviews\"\n            }\n        },\n        {\n            \"id\": 9858,\n            \"name\": \"Cartref Bach\",\n            \"reference\": \"cartrefbach\",\n            \"slug\": \"cartref-bach\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/cartref-bach\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:48.000000Z\",\n                \"updated_at\": \"2025-06-20T14:53:16.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 4,\n                \"bedrooms\": 2,\n                \"bathrooms\": 2,\n                \"pets\": 2,\n                \"parking\": 4,\n                \"type\": \"House\",\n                \"description\": \"Only three-quarters of a mile from the dog-friendly beach and Ceredigion Coast Path, Cartref Bach in Llanrhystud is a bright sunny stone cottage sleeping 4. It is in the old pretty part of the village, overlooking open fields and the Parish church.\\r\\n\\r\\nWithin a short walk, there is a village shop, dog-friendly pub and golf/ leisure club, both of which serve food. Permits to use the leisure facilities (pool, sauna, steam room and gym) and /or play golf are available to purchase at the reception of Penrhos Park which is about a mile up Lampeter Road.\\r\\n\\r\\nAberystwyth which is 9 miles north offers a wide selection of entertainment: restaurants, pubs, theatre and cinemas. Aberaeron 6 miles south is a very attractive Georgian town with harbour and restaurants.\\r\\n\\r\\nThe interior of Cartref Bach has been refurbished and is stylish with some exposed stone walls and elegant lighting; the furniture is a lovely mix of modern and older pieces. The cottage is beautifully warm for those winter breaks with full oil-fired central heating, plentiful hot water and a wood burner to relax in front of in the sitting room.\\r\\n\\r\\nACCOMMODATION\\r\\nCartref Bach sleeps 4 in 2 bedrooms: 2Â king size\\r\\n\\r\\nUPSTAIRS\\r\\nBedroom 1: king size bed, hairdryer, coastal views\\r\\nEn suite: bath with shower over, wash hand basin, WC\\r\\nBedroom 2: king size bed, coastal views\\r\\nEn suite: shower wash hand basin WC\\r\\n\\r\\nDOWNSTAIRS\\r\\nSitting room: wood burner, 2 sofas, 2 chairs, flat-screen TV, DVD player, stereo radio/CD player with MP3 connection\\r\\nKitchen breakfast room: electric range, microwave, fridge, freezer, dishwasher, toaster, coffee machine and food mixers. Table seating 4\\r\\nGarden/dining room: wood burner, arm chairs, table seating 6, patio doors leading to large terrace\\r\\nUtility room: washing machine and drying facilities, WC\\r\\n\\r\\nOUTSIDE\\r\\nTo the rear is a large mature enclosed garden and orchard with garden furniture, a picnic table, sun loungers and BBQ. To the front is a sunny south-facing bench. There is plenty of off-road parking space for 2 or 3 cars.\\r\\n\\r\\nKEY FACTS\\r\\n- Bed linen and towels provided\\r\\n- Please bring your own beach towels\\r\\n- Cot and high chair available\\r\\n- Oil central heating\\r\\n- Logs provided\\r\\n- Good mobile signal\\r\\n- Free WiFi\\r\\n- 2 well-behaved dogs welcome at Â£15 each per stay\\r\\n- No smoking\"\n            },\n            \"location\": {\n                \"display\": \"Aberystwyth, Ceredigion\",\n                \"coordinates\": {\n                    \"latitude\": \"52.3058014\",\n                    \"longitude\": \"-4.1461196\"\n                },\n                \"address\": {\n                    \"county\": \"Ceredigion\",\n                    \"town\": \"Aberystwyth\"\n                }\n            },\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9858\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9858/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9858/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9858/reviews\"\n            }\n        },\n        {\n            \"id\": 9860,\n            \"name\": \"Y Cartws\",\n            \"reference\": \"cartws\",\n            \"slug\": \"y-cartws-hebron\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/y-cartws-hebron\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:48.000000Z\",\n                \"updated_at\": \"2025-07-12T05:50:11.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 4,\n                \"bedrooms\": 2,\n                \"bathrooms\": 1,\n                \"pets\": 1,\n                \"parking\": 2,\n                \"type\": \"House\",\n                \"description\": \"Y Cartws is a former cart house which has been converted into a character stone cottage. It is close to the Preseli Hills and within easy reach of the rugged Pembrokeshire coastline. Explore the beautiful sandy beaches along over 180 miles of the Pembrokeshire Coast Path, offering stunning scenery and the opportunity to spot breathtaking wildlife.\\r\\n\\r\\nThe nearest town is Narberth where you will find stylish, independent boutiques and a fab choice of restaurants and cafÃ©s. You could spend a day out here visiting the museum, vineyard or browsing through the music shops.\\r\\n\\r\\nThere are many family-friendly attractions within driving distance. These include Folly Farm Adventure Park and Zoo, Colby Woodland Gardens and Castell Henllys Iron Age Fort. Y Cartws has been approved under the Visit Wales Walkers Welcome and Cyclists Welcome schemes so itâ€™s ideal for family holidays, groups of walkers and those who love cycling. Y Cartws is on a working sheep farm and Paul, Eirlys and their family are the seventh generation of the same family to have farmed there. They look forward to giving you a warm welcome at the cottage.\\r\\n\\r\\nACCOMMODATION\\r\\nY Cartws sleeps 4-5 in 2 bedrooms: 1 double and 1 twin\\r\\n\\r\\nUPSTAIRS\\r\\nBedroom 1: double bed, built-in wardrobe, bedside tables, chest of drawers, rocking chair, views across the fields\\r\\nBedroom 2: twin beds, pull-out bed, bedside tables, chest of drawers\\r\\nBathroom: shower, WC, wash hand basin\\r\\n\\r\\nDOWNSTAIRS\\r\\nLiving room: two 2-seater sofas, armchair, coffee table, 32â€\\u009d digital flat screen TV with DVD player, bookcase with selection of books, DVDs, games\\r\\nKitchen/dining area: gas hob and cooker, dishwasher, fridge/freezer, automatic washing machine, microwave oven, dining table seating 6\\r\\n\\r\\nOUTSIDE\\r\\nThere is a picnic table and a bench at the front of the cottage. Guests are welcome to stroll down to the stream which is in the woodland area (please ensure gates are closed after you). Parking for 2 cars.\\r\\n\\r\\nKEY FACTS\\r\\n- Bed linen and towels provided. Please bring your own beach towels\\r\\n- Cot, highchair and stairgate available. Please bring your own cot bedding\\r\\n- Oil central heating\\r\\n- Free WiFi\\r\\n- 1 well-behaved small dog welcome\\r\\n- No smoking\\r\\n- Â£80 refundable damages deposit\"\n            },\n            \"location\": {\n                \"display\": \"Crymych, Carmarthenshire\",\n                \"coordinates\": {\n                    \"latitude\": \"51.9106255\",\n                    \"longitude\": \"-4.6741219\"\n                },\n                \"address\": {\n                    \"county\": \"Carmarthenshire\",\n                    \"town\": \"Crymych\"\n                }\n            },\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9860\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9860/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9860/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9860/reviews\"\n            }\n        },\n        {\n            \"id\": 9861,\n            \"name\": \"Castell Cwtch\",\n            \"reference\": \"castell\",\n            \"slug\": \"castell-cwtch\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/castell-cwtch\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:48.000000Z\",\n                \"updated_at\": \"2025-07-12T23:06:36.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 6,\n                \"bedrooms\": 3,\n                \"bathrooms\": 2,\n                \"pets\": 2,\n                \"parking\": 2,\n                \"type\": \"Cottage\",\n                \"description\": \"Castell Cwtch (Welsh for â€œCuddle Castleâ€\\u009d) is a charming period cottage with coastal character and a modern twist, tucked away in the heart of the picturesque seaside village of Llangrannog. Whether you're planning a romantic escape, a family holiday, or a peaceful work-from-home retreat, this welcoming space offers the best of West Wales right on your doorstep.\\r\\n\\r\\nJust across the patio, a newly converted annexe offers flexibility and privacy, with its own peaceful decking area over the Nant Hawen stream. Itâ€™s full of character and ideal for grandparents, couples, or larger families who appreciate a little extra space. The annexe also has access to the main patio and cottage area.\\r\\n\\r\\nJust a short 500-yard stroll from the cottage brings you to Llangrannogâ€™s Blue Flag sandy beach, framed by dramatic granite cliffs. The village has a friendly local pub and a couple of laid-back cafÃ©s â€” perfect for soaking up the slow pace of coastal life.\\r\\n\\r\\nThe area is a paradise for walkers, with the Ceredigion Coast Path offering breathtaking views, hidden coves, and wildlife sightings. Surfing, sailing, dolphin watching, horse riding, and golf are all nearby, while the charming market towns of Aberaeron and Cardigan, just 12 miles away, are home to independent shops, local food, galleries, and more.\\r\\n\\r\\nOut of high season, the owners are happy to offer a discounted price for guests who do not require use of the annexe.\\r\\n\\r\\nACCOMMODATION\\r\\nCastell Cwtch sleeps a total of 7 people in 2 upstairs bedrooms in the cottage: 1 king size, 1 twin plus full-length floor mattress, and in the annexe: 1 king size\\r\\n\\r\\nUPSTAIRS (Cottage)\\r\\nBedroom 1: king-size bed, bedside tables, chair, wardrobe, chest of drawers\\r\\nBedroom 2: two single beds, chest of drawers, wardrobe, full-length floor mattress\\r\\nBathroom: bath, shower, toilet, hand basin\\r\\n\\r\\nDOWNSTAIRS (Cottage)\\r\\nOpen plan area with... \\r\\nSitting area: two 2-seater sofas perfect for watching Amazon Prime, Netflix or BBC iPlayer on the 32&rdquo; Freeview TV, log burner\\r\\nKitchen area: gas oven and hobs, fridge/ freezer, microwave, toaster, kettle, dishwasher, washer/dryer\\r\\nDining area: dining table seating 5\\r\\n\\r\\nANNEXE (Discounted rate if not using the annexe out of season, please enquire)\\r\\nBedroom 3: King-size bed, two bedside shelves, two wicker chairs, wicker table, built-in wardrobe\\r\\nEnsuite Shower room: walk-in shower, washbasin, mirror, WC\\r\\n\\r\\nOUTSIDE\\r\\nSecluded patio/garden area with garden furniture, ideal for outside eating and safe for children to play. There is also a private decking area in front of the annexe. Off-road private parking for 2 vehicles.\\r\\n\\r\\nKEY FACTS\\r\\n\\r\\n- Bed linen provided and towels provided. Please bring your own beach towels\\r\\n- Cot and Highchair available on request. Please bring your own cot bedding\\r\\n- Gas central heating\\r\\n- Free WiFi\\r\\n- 2 well-behaved dogs welcome upon request. Please let us know if you're bringing a dog (or more) upon booking. If you wish to bring up to 2 cats, please state you're bringing cats when booking.\\r\\n- No smoking\\r\\n- 4pm Check-in and 10am Check-out\"\n            },\n            \"location\": {\n                \"display\": \"Llangrannog, Ceredigion\",\n                \"coordinates\": {\n                    \"latitude\": \"52.1586266\",\n                    \"longitude\": \"-4.462697\"\n                },\n                \"address\": {\n                    \"county\": \"Ceredigion\",\n                    \"town\": \"Llangrannog\"\n                }\n            },\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9861\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9861/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9861/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9861/reviews\"\n            }\n        }\n    ],\n    \"_links\": {\n        \"self\": \"http://127.0.0.1:8080/api/partners/properties?page=1\",\n        \"first\": \"http://127.0.0.1:8080/api/partners/properties?page=1\",\n        \"last\": \"http://127.0.0.1:8080/api/partners/properties?page=21\",\n        \"prev\": null,\n        \"next\": \"http://127.0.0.1:8080/api/partners/properties?page=2\"\n    },\n    \"meta\": {\n        \"total\": 515,\n        \"current_page\": 1,\n        \"from\": 1,\n        \"to\": 25,\n        \"per_page\": 25,\n        \"last_page\": 21\n    }\n}"},{"id":"27ed1a5a-95f1-4966-aa59-05aad9d591b2","name":"success - full_response","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[{"key":"full_response","value":"1","type":"text","uuid":"cb7d5c78-08c7-4181-96d6-4d9a3dca92ef","disabled":true}]},"url":{"raw":"{{domain}}/api/partners/properties?full_response=true","host":["{{domain}}"],"path":["api","partners","properties"],"query":[{"key":"page","value":"1","description":"optional","disabled":true},{"key":"sleeps","value":"1","description":"optional","disabled":true},{"key":"bedrooms","value":"1","description":"optional","disabled":true},{"key":"pets","value":"1","description":"optional","disabled":true},{"key":"bathrooms","value":"1","description":"optional","disabled":true},{"key":"full_response","value":"true","description":"boolean - optional"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8080"},{"key":"Date","value":"Mon, 21 Jul 2025 11:08:11 GMT"},{"key":"Date","value":"Mon, 21 Jul 2025 11:08:11 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.2.0"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"1000"},{"key":"X-RateLimit-Remaining","value":"998"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 9697,\n            \"name\": \"Ty Aelwyd\",\n            \"reference\": \"aelwyd\",\n            \"slug\": \"ty-aelwyd\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/ty-aelwyd\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:41.000000Z\",\n                \"updated_at\": \"2025-06-20T14:40:59.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 2,\n                \"bedrooms\": 1,\n                \"bathrooms\": 1,\n                \"pets\": 2,\n                \"parking\": 1,\n                \"type\": \"House\",\n                \"description\": \"Ty Aelwyd in upper Solva has magnificent views over St Brides Bay and Skomer Island. It is conveniently situated less than 10 minutes drive from St Davids and from sandy beaches, less than a 10 minute walk from the Pembrokeshire Coast Path and about a 5 minute walk from the pubs and cafes in the charming village of Solva. It is a self-contained annexe attached to the ownerâ€™s home.\\r\\n\\r\\nTy Aelwyd is set in the Pembrokeshire Coast National Park with ample opportunities for walks amidst gorgeous scenery. The beaches of Whitesands and Newgale are within an easy drive.\\r\\n\\r\\nThe tiny city of St Davids with its ancient cathedral offers galleries, restaurants, pubs and shops as well as being home to Oriel y Parc, the National Park Visitor Centre and Gallery. This area abounds with wildlife, much of which can be spotted in secluded coves or from the coast path, just a short walk from Ty Aelwyd. You can take a boat trip for the chance to see dolphins, seals, puffins and huge breeding colonies of seabirds on the off-shore islands.\\r\\n\\r\\nACCOMMODATION\\r\\nTy Aelwyd sleeps 2 inÂ 1 king size bedroom\\r\\n\\r\\nDOWNSTAIRS\\r\\nBedroom: king size bed, hair dryer, countryside views\\r\\nEn suite shower room: shower, toilet, hand basin\\r\\nKitchen: compact cooker, fridge, microwave, washing machine, iron\\r\\n\\r\\nUPSTAIRS\\r\\nLiving room/dining area: 2-seater sofa, armchair, Freeview TV, dining table and 2 chairs. The magnificent views from the Velux window are south-facing over St Brides Bay with the island of Skomer opposite.\\r\\n\\r\\nOUTSIDE\\r\\nThere is seating in the enclosed garden which also has a bike or kayak lock-up. DrivewayÂ parking for 1 car.\\r\\n\\r\\nKEY FACTS\\r\\n- Bed linen and towels provided. Please bring your own beach towels.\\r\\n- Oil-fired central heating.\\r\\n- Free WiFi.\\r\\n- Two well-behaved dogs welcome at Â£20 each per week\\r\\n - No smoking\"\n            },\n            \"rules\": {\n                \"damage_deposits\": {\n                    \"required\": false,\n                    \"amount\": \"0.00\"\n                },\n                \"notice_prior_to_booking\": {\n                    \"hours\": 12\n                },\n                \"balance_due_prior_to_check_in\": {\n                    \"days\": 42\n                }\n            },\n            \"charges\": {\n                \"dogs\": [\n                    {\n                        \"id\": 25,\n                        \"name\": \"Dogs\",\n                        \"amount\": \"20.00\",\n                        \"charge_type\": \"weekly\",\n                        \"quantity\": 1,\n                        \"max_qty\": 2\n                    }\n                ],\n                \"extras\": []\n            },\n            \"location\": {\n                \"display\": \"Solva, Pembrokeshire\",\n                \"coordinates\": {\n                    \"latitude\": \"51.876469\",\n                    \"longitude\": \"-5.197786\"\n                },\n                \"address\": {\n                    \"county\": \"Pembrokeshire\",\n                    \"town\": \"Solva\"\n                }\n            },\n            \"images\": [\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-21/aelwyd-bedroom.pehe9i.jpg\",\n                    \"main\": true,\n                    \"alt\": \"Bedroom with wooden bed fram, bedside table and lamps\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/9697/f9jNheAB1BNj8WIAKZczeyhdsZLUQlAjVRQ2QLlH.jpg\",\n                    \"main\": false,\n                    \"alt\": null\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/9697/39to7s3zOK3I7VlR4eOiHKEzmjd7KBshv8HKnsl0.jpg\",\n                    \"main\": false,\n                    \"alt\": null\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/9697/uKLcExxvGNHYiPHAtsHqQPSYpf8Q5fDPxsQiuBdf.jpg\",\n                    \"main\": false,\n                    \"alt\": null\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/9697/zioixTuN4PlOIt3vcFucdHvN71vwzA7wJgdqnOwr.jpg\",\n                    \"main\": false,\n                    \"alt\": null\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-21/ty-aelwyd-dining-area.pn10f1.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Dining area with round table, two chairs, electric fire\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/9697/0ytTzaY52Vzfhuw4uNPrDm73Cbaw2hKEcyLHbGCm.jpg\",\n                    \"main\": false,\n                    \"alt\": null\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-21/ty-aelwyd.oyujnx.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Footpath in woods with bank of bluebells to the left\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-21/ty-aelwyd-solva-harbour.oyujot.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Solva harbour with jetty, boat houses and fishing boat\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-21/ty-aelwyd.oyzxpp.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Coastal view with wild flowers\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-21/ty-aelwyd-solva-harbour.oyzxpn.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Fishing boats in channel at low tide\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/stock-2016-11/solva-harbour.ogpa15.jpg\",\n                    \"main\": false,\n                    \"alt\": \"View down to Solva harbour and village\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/9697/60Bekpmurz5V4sOnyINUHd4Bocz3AqIh00lUgCMw.jpg\",\n                    \"main\": false,\n                    \"alt\": null\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/stock-2022-01/cathedral-4299247.pb.r5aq2l.jpg\",\n                    \"main\": false,\n                    \"alt\": \"St Davids Cathedral\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-21/ty-aelwyd-kitchen.plbxvj.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Kitchen with kettle and fridge\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/9697/FJpTGSWrQLl9DZWIUkJ1JSWCvbO5AtBTUnYTOrN5.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Sunset taken from Ty Aelwyd\"\n                }\n            ],\n            \"features\": [\n                \"Bike storage\",\n                \"TV\",\n                \"Enclosed Garden\",\n                \"Walkers\",\n                \"Views\",\n                \"Ground Floor Bedroom with bathroom\",\n                \"WiFi\",\n                \"King-size bed\",\n                \"Beach within 1 mile\",\n                \"Beach 3\",\n                \"Golf Course\",\n                \"Sea Views\",\n                \"Pub\",\n                \"Washing Machine\",\n                \"Walking area\",\n                \"Romantic\",\n                \"Towels Provided\",\n                \"Coastal\",\n                \"Village\",\n                \"Affordable\",\n                \"Beach within 1 mile\",\n                \"Beach 3\",\n                \"Pub\",\n                \"Walking area\",\n                \"Coastal\",\n                \"Village\"\n            ],\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9697\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9697/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9697/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9697/reviews\"\n            }\n        },\n        {\n            \"id\": 9705,\n            \"name\": \"Amesbury\",\n            \"reference\": \"amesbury\",\n            \"slug\": \"amesbury\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/amesbury\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:41.000000Z\",\n                \"updated_at\": \"2025-07-12T23:05:42.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 6,\n                \"bedrooms\": 4,\n                \"bathrooms\": 2,\n                \"pets\": 1,\n                \"parking\": 0,\n                \"type\": \"Cottage\",\n                \"description\": \"Amesbury is a spacious semi-detached terraced house just off the centre of the quaint town of Newport, Pembrokeshire. Upgraded throughout, the house is comfortable yet cosy, with many retained original features such as wooden beams, wooden floors, sash windows and exposed stone walls.\\r\\n\\r\\nYou have access to a large enclosed, lawned garden with mature trees -  perfect for children to play and for adults to enjoy a peaceful drink on a long summer evening. Ideal for a family break and holiday.\\r\\n\\r\\nThe centre of town is within walking distance and provides a variety of excellent restaurants, pubs, shops and galleries and of course the beach nearby. Newport is conveniently situated between St Davids Cathedral City and Cardigan and is in the heart of the scenic Pembrokeshire Coast National Park.\\r\\n\\r\\nThere are many historic sites of interest in the immediate areas, with Pentre Ifan Burial Chamber and the Preseli Hills just a 10-minute drive away. The pretty market town of Cardigan is 11 miles to the north, and the harbour town of Fishguard and Goodwick 7 miles to the south.\\r\\n\\r\\nACCOMMODATION\\r\\nAmesbury sleeps 6 in 4 upstairs bedrooms: 1 double, 1 twin room and 2 single rooms\\r\\n\\r\\nUPSTAIRS\\r\\nBedroom 1: double bed\\r\\nBedroom 2: twin beds\\r\\nBedroom 3: single bed, a single pull out bed can be provided for an additional charge\\r\\nBedroom 4: single bed\\r\\nBathroom: bath, large shower cubicle, WC, wash hand basin, heated towel rail\\r\\n\\r\\nDOWNSTAIRS\\r\\nLiving room: 3-seater sofa, 2-seater sofa, armchair, TV with BT Sport, 'Clearview' woodburning stove\\r\\nSitting room: two 2-seater sofas, TV/DVD, woodburning stove\\r\\nDining room: table seating 6\\r\\nKitchen: double electric oven, microwave, fridge, dishwasher, coffee machine, electric mixer\\r\\nUtility room: washing machine, small tumble dryer, small table, 3 drawer freezer\\r\\nWet room: shower, WC, hand basin, towel rail\\r\\n\\r\\nOUTSIDE\\r\\nLarge enclosed rear garden with garden shed made available for guests to store any larger items such as bicycles, wetsuits etc. Parking is on the roadside outside the property and there is also a large car park in Newport.\\r\\n\\r\\nKEY FACTS\\r\\n\\r\\n- Bed linen provided. \\r\\n- Please bring your own bath and beach towels\\r\\n- Travel cot and highchair available, bring your own cot bedding\\r\\n- Gas central heating\\r\\n- One basket of logs provided, further logs available to purchase\\r\\n- Free WiFi and BT Sport\\r\\n- 1 well-behaved dog welcome upon request. Please let us know if you're bringing a dog upon booking.\\r\\n- No smoking\"\n            },\n            \"rules\": {\n                \"damage_deposits\": {\n                    \"required\": false,\n                    \"amount\": \"0.00\"\n                },\n                \"notice_prior_to_booking\": {\n                    \"hours\": 48\n                },\n                \"balance_due_prior_to_check_in\": {\n                    \"days\": 42\n                }\n            },\n            \"charges\": {\n                \"dogs\": [\n                    {\n                        \"id\": 27,\n                        \"name\": \"Dogs\",\n                        \"amount\": \"25.00\",\n                        \"charge_type\": \"weekly\",\n                        \"quantity\": 1,\n                        \"max_qty\": 1\n                    }\n                ],\n                \"extras\": [\n                    {\n                        \"id\": 1376,\n                        \"name\": \"Bath and beach towels\",\n                        \"charge_type\": \"flat\",\n                        \"amount\": \"10.00\",\n                        \"quantity\": 1,\n                        \"max_qty\": 12\n                    },\n                    {\n                        \"id\": 1498,\n                        \"name\": \"Extra guest (Trundle bed)\",\n                        \"charge_type\": \"flat\",\n                        \"amount\": \"70.00\",\n                        \"quantity\": 1,\n                        \"max_qty\": 1\n                    }\n                ]\n            },\n            \"location\": {\n                \"display\": \"Newport, Pembrokeshire\",\n                \"coordinates\": {\n                    \"latitude\": \"52.0171547\",\n                    \"longitude\": \"-4.8311877\"\n                },\n                \"address\": {\n                    \"county\": \"Pembrokeshire\",\n                    \"town\": \"Newport\"\n                }\n            },\n            \"images\": [\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-29/master-bedroom-in-amesbury.pvtie9.jpg\",\n                    \"main\": true,\n                    \"alt\": \"Double bed with wooden headboard. Chest of drawers, mirror, lamp, chair and window\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-29/amesbury-exterior.og63ot.jpg\",\n                    \"main\": false,\n                    \"alt\": \"The front of Amesbury\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-29/amesbury-kitchen.r9ar37.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Amesbury kitchen with quarry tiled floor\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-29/amesbury-kitchen.r9ar38.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Amesbury kitchen with granite work tops and wall mounted cupboards\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-29/amesbury-kitchen.r9ar3a.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Amesbury kitchen with 3 windows overlooking the garden\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-29/living-room-at-amesbury.pvtidh.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Living room at amesbury. Wooden floor, wood burner, stone wall, 2 sofas coffee table and  bay window\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-29/amesbury-living-room.r9b7oc.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Amsbury living room with TV, log burner and coffee table\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-29/amesbury-lounge.rlst01.jpg\",\n                    \"main\": false,\n                    \"alt\": \"2x two seater sofas with cushions on, coffee table, floor lamp, log fire.\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-29/amesbury-bathroom.rlsszj.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Bathroomat amesbury. Bath, wash hand basin, toileet, walk in shower. tiles walls, sky light\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-29/twin-bedroom-at-amesbury.pvtih7.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Twin bedroom at amesbury. Two beds, bedside cupboard, lamp, pictures on wall and window\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-29/single-bedroom-at-amesbury.pvtj8s.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Single bedroom  at amesbury with bedside cupboard, lamp, pictures the on wall and window\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-29/single-bedroom-at-amesbury.pvtihg.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Single bedroom  at amesbury with bedside cupboard, chest of drawers, lamp, mirror and window\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-29/amesbury-dining table.rlsszd.jpg\",\n                    \"main\": false,\n                    \"alt\": \"6 seater dining table with red polka dot table cloth, wall art on walls around.\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-29/garden-at-amesbury.pvtihr.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Garden at amesbury with picnic tables and benches, washing line, lawn, trees and hedges and sheds\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/stock-2016-11/newport-beach-1vw.jpg.og67br.jpg\",\n                    \"main\": false,\n                    \"alt\": \"View of Newport bay looking across the sea to the and beach with hills in the distance\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/stock-2021-12/the-parrog-newport-49610343088-dd4723e148-o.flickr.r47vuh.jpg\",\n                    \"main\": false,\n                    \"alt\": \"The Parrog, Newport with the tide fully in\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/9705/YKiwDY6vUdaQypf7CEc5LTmNEn2GHQ1mnOVanAVS.png\",\n                    \"main\": false,\n                    \"alt\": null\n                }\n            ],\n            \"features\": [\n                \"Bike storage\",\n                \"Cot\",\n                \"TV\",\n                \"Enclosed Garden\",\n                \"Walkers\",\n                \"WiFi\",\n                \"Beach within 1 mile\",\n                \"Beach 3\",\n                \"Golf Course\",\n                \"Riding Stable\",\n                \"Pub\",\n                \"Woodburner\",\n                \"Wetroom\",\n                \"Dishwasher\",\n                \"Washing Machine\",\n                \"Tumble Dryer\",\n                \"Mountain Biking\",\n                \"Walking area\",\n                \"Character\",\n                \"Linen Provided\",\n                \"Towels Provided\",\n                \"Shop within 1 mile\",\n                \"Coastal\",\n                \"Town\",\n                \"Beach within 1 mile\",\n                \"Beach 3\",\n                \"Pub\",\n                \"Walking area\",\n                \"Shop within 1 mile\",\n                \"Coastal\",\n                \"Town\"\n            ],\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9705\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9705/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9705/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9705/reviews\"\n            }\n        },\n        {\n            \"id\": 9709,\n            \"name\": \"Apple Tree Corner\",\n            \"reference\": \"appletree\",\n            \"slug\": \"apple-tree-corner\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/apple-tree-corner\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:41.000000Z\",\n                \"updated_at\": \"2025-06-20T14:41:38.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 4,\n                \"bedrooms\": 1,\n                \"bathrooms\": 1,\n                \"pets\": 3,\n                \"parking\": 1,\n                \"type\": \"House\",\n                \"description\": \"Apple Tree Corner is a delightful converted stone barn packed with character and charm, a mile inland from the Ceredigion Coast Path and the sandy beaches of Aberporth. Tresaith, Llangrannog. The National Trust beaches at Penbryn and Mwnt are just a few miles away. Apple Tree Corner has now been awarded a \\\"plastic Free Approved Status\\\" from Surfers Against Sewage.\\r\\n\\r\\nThe market towns of Cardigan and Newcastle Emlyn are within easy reach (7 miles) and have many smaller individual shops with local crafts and produce. There is plenty to explore: the stunning scenery of the Preseli Hills, the Wildlife Centre at Cilgerran or coastal walks.\\r\\n\\r\\nThere is an abundance of attractions within easy driving distance including Cardigan's cinema/theatre, horse riding, fishing, gardens and golf. The cottage is detached and set back from the road, situated in the courtyard of the original farmhouse.\\r\\n\\r\\nACCOMMODATION\\r\\nApple Tree Corner sleeps 4 in 1 bedroom and 1 sleeping area curtained off from the living room:Â 1 king size and a set of bunk beds. All the accommodation is on the ground floor with no steps so may suit guests with restricted mobility.\\r\\n\\r\\nBedroom 1: bunk beds\\r\\nBathroom: shower enclosure, toilet, hand basin, shaver point\\r\\n\\r\\nOpen plan area with;\\r\\nBedroom 2: curtained off area from the living room with king size bed\\r\\nSitting area: 3-seater sofa, 2-seater sofa, TV/DVD, wood burning stove, open beamed ceiling, tiled floor with rugs\\r\\nKitchen: ceramic hob, oven, microwave oven, fridge/freezer, dishwasher, dining table for 4\\r\\n\\r\\nOUTSIDE\\r\\nImmediately outside the kitchen door is a small paved patio area with wooden table and chairs. There is a wooden shed with space to store your surf board and bucket and spade. There is a shared washing machine. In the courtyard, there is level access to the parking area for 1 car and access to the shared enclosed garden with seating and BBQ.\\r\\n\\r\\nKEY FACTS\\r\\n- Bed linen provided\\r\\n- Please bring your own towels\\r\\n- Cot, cot bedding, baby bath and highchair available\\r\\n- Gas central heating\\r\\n- Free WiFi\\r\\n- Logs for the wood burner provided - no charge help yourself from wood shed\\r\\n- Up to 3 well-behaved dogs welcome at no extra charge\\r\\n- No smoking\"\n            },\n            \"rules\": {\n                \"damage_deposits\": {\n                    \"required\": false,\n                    \"amount\": \"0.00\"\n                },\n                \"notice_prior_to_booking\": {\n                    \"hours\": 12\n                },\n                \"balance_due_prior_to_check_in\": {\n                    \"days\": 42\n                }\n            },\n            \"charges\": {\n                \"dogs\": [\n                    {\n                        \"id\": 29,\n                        \"name\": \"Dogs\",\n                        \"amount\": \"0.00\",\n                        \"charge_type\": \"flat\",\n                        \"quantity\": 1,\n                        \"max_qty\": 3\n                    }\n                ],\n                \"extras\": []\n            },\n            \"location\": {\n                \"display\": \"Aberporth, Ceredigion\",\n                \"coordinates\": {\n                    \"latitude\": \"52.1145172\",\n                    \"longitude\": \"-4.5122051\"\n                },\n                \"address\": {\n                    \"county\": \"Ceredigion\",\n                    \"town\": \"Aberporth\"\n                }\n            },\n            \"images\": [\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-33/apple-tree-corner.og6hgt.jpg\",\n                    \"main\": true,\n                    \"alt\": \"Apple Tree Corner Exterior with table and chairs and pretty shrubs\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-33/apple-tree-corner-bed.ov6wsb.jpg\",\n                    \"main\": false,\n                    \"alt\": \"King size bed in main room with a curtain to separate it from the living area\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-33/apple-tree-corner-living-area.ov6wu8.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Living area with leather sofa, TV and log burning stove\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-33/apple-tree-corner-kitchen.ov6ww8.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Kitchen with fitted units, sink, microwave, fridge, table and chairs\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-33/apple-tree-patio.ov6x2r.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Private patio at Apple Tree Corner with table and chairs\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-33/apple-tree-corner-bedroom.og6hhg.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Bunk bedroom\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-33/apple-tree-corner-living-area.ov6x0e.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Lounge with 2 leather sofas\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-33/apple-tree-corner-garden.og6hi2.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Garden with lawn, a bench to sit on and attractive shrubs\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/stock-2016-09/aberporth-dyffryn-beach.odjs39.jpg\",\n                    \"main\": false,\n                    \"alt\": \"One of the sandy beaches at nearby Aberporth\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-33/apple-tree-corner-snow.og6hig.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Apple Tree Corner in snow\"\n                }\n            ],\n            \"features\": [\n                \"Cot\",\n                \"TV\",\n                \"Enclosed Garden\",\n                \"Walkers\",\n                \"Ground Floor Bedroom with bathroom\",\n                \"WiFi\",\n                \"King-size bed\",\n                \"Beach 3\",\n                \"Golf Course\",\n                \"Riding Stable\",\n                \"Single Storey\",\n                \"Pub\",\n                \"Woodburner\",\n                \"Dishwasher\",\n                \"Washing Machine\",\n                \"Romantic\",\n                \"For Two\",\n                \"Detached\",\n                \"Countryside\",\n                \"Linen Provided\",\n                \"Shop within 1 mile\",\n                \"Coastal\",\n                \"Village\",\n                \"Affordable\",\n                \"Beach 3\",\n                \"Pub\",\n                \"Countryside\",\n                \"Shop within 1 mile\",\n                \"Coastal\",\n                \"Village\"\n            ],\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9709\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9709/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9709/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9709/reviews\"\n            }\n        },\n        {\n            \"id\": 9713,\n            \"name\": \"Aelwyd Artur\",\n            \"reference\": \"artur\",\n            \"slug\": \"aelwyd-artur\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/aelwyd-artur\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:42.000000Z\",\n                \"updated_at\": \"2025-06-27T16:39:07.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 4,\n                \"bedrooms\": 2,\n                \"bathrooms\": 1,\n                \"pets\": 0,\n                \"parking\": 4,\n                \"type\": \"House\",\n                \"description\": \"Aelwyd Artur is a well-equipped, warm and cosy holiday home about 100 metres from the estuary and coastal path in the beautiful village of Newport in Pembrokeshire. Newport is set within the Pembrokeshire Coast National , at the foot of Carningli Mountain. With excellent local shops (including organic, fresh fish and second-hand bookshop!), pubs and restaurants; it is an ideal setting for both romantic getaways and family holidays.\\r\\n\\r\\nThe sheltered bay and estuary have sandy beaches, sailing, kayaking and also sea and river fishing. There is an eighteen-hole golf course with stunning views, tennis courts, cycle hire and riding stables within easy reach for trekking across the Preseli Hills and pub and beach rides. The locality also offers good local transport and coastal pick-up buses, making the area accessible all year round for walkers.\\r\\n\\r\\nWhether you enjoy our stunning coastal walks, festooned with spring flowers, sandy summer days on the beach, the autumn bird migrations to the estuary, cosy pubs and restaurants, or prefer to curl up by the wood burner in winter, Aelwyd Artur provides a welcoming setting for a holiday.\\r\\n\\r\\nACCOMMODATION\\r\\nAelwyd Artur sleeps 4 in 2 bedrooms: 1 king-size and 1 twin. All the accommodation is on one level so may suit guests with restricted mobility.\\r\\n\\r\\nBedroom 1: king-size bed, hairdryer\\r\\nBedroom 2: twin beds\\r\\nShower room: shower cubicle, wash hand basin, WC\\r\\n\\r\\nLiving room: 2-seater sofa, 2 armchairs, Freeview TV, log burner\\r\\nKitchen/dining area: dual fuel (gas & electric) range cooker, toaster, washer/dryer, fridge with small freezer compartment, microwave, radio, dining table and chairs for 6, French windows to the garden\\r\\n\\r\\nOUTSIDE\\r\\nThere is a patio, garden furniture, a covered area for locking bicycles and drying clothes. Please note the lawn is unfenced so small children should be supervised. There is ample hard standing for parking.\\r\\n\\r\\nKEY FACTS\\r\\n- Bed linen and towels provided\\r\\n- Please bring your own beach towels\\r\\n- Highchair available.\\r\\n- Gas central heating\\r\\n- Free WiFi\\r\\n- Logs available at Â£5 per basket pay owner directly\\r\\n- Sorry, no dogs\\r\\n- No smoking\"\n            },\n            \"rules\": {\n                \"damage_deposits\": {\n                    \"required\": false,\n                    \"amount\": \"0.00\"\n                },\n                \"notice_prior_to_booking\": {\n                    \"hours\": 12\n                },\n                \"balance_due_prior_to_check_in\": {\n                    \"days\": 42\n                }\n            },\n            \"charges\": {\n                \"dogs\": [],\n                \"extras\": []\n            },\n            \"location\": {\n                \"display\": \"Newport, Pembrokeshire\",\n                \"coordinates\": {\n                    \"latitude\": \"52.018098\",\n                    \"longitude\": \"-4.827966\"\n                },\n                \"address\": {\n                    \"county\": \"Pembrokeshire\",\n                    \"town\": \"Newport\"\n                }\n            },\n            \"images\": [\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-37/Double bedroom.oguk7i.jpg\",\n                    \"main\": true,\n                    \"alt\": \"Double bedroom\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-37/Aelwyd Artur.oguk6v.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Aelwyd Artur\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-37/dscf0040-1-a.oguk7l.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Kitchen, refurbished in 2015\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/9713/bYtNhjqEcbTT4wyynYa2bdMtT93LPAGJawuQVpiD.png\",\n                    \"main\": false,\n                    \"alt\": \"Sitting room with sofa, armchairs and woodburner\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-37/aelwyd-artur-twin-bedroom.p7si0z.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Twin bedroom at Aelwyd Artur\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-37/Dining area.oguk7f.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Dining area\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-37/aelwyd-artur-shower-room.rtu1mu.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Wash hand basin with mirror over. Heated towel rail\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-37/aelwyd-artur-shower.rtu1mj.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Shower cubicle\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-37/more-carreg-coetan-002a.oguk73.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Newport Beach\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-37/d-of-e-daya.oguk7u.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Coast path to the north\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-37/more-carreg-coetan-012a.oguk7z.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Walk south to Pwllgwaelod for lunch\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-37/more-carreg-coetan-011a.oguk84.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Beautiful sunsets over Newport bay\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/stock-2016-11/preselis-and-newport-5vw.ogbw61.jpg\",\n                    \"main\": false,\n                    \"alt\": \"View from high on The Preseli Hills down to the sea at Newport\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/stock-2021-12/the-parrog-newport-49610343088-dd4723e148-o.flickr.r47vuh.jpg\",\n                    \"main\": false,\n                    \"alt\": \"The Parrog, Newport with the tide fully in\"\n                }\n            ],\n            \"features\": [\n                \"Bike storage\",\n                \"TV\",\n                \"Walkers\",\n                \"Ground Floor Bedroom with bathroom\",\n                \"WiFi\",\n                \"King-size bed\",\n                \"Beach within 1 mile\",\n                \"Beach 3\",\n                \"Golf Course\",\n                \"Riding Stable\",\n                \"Single Storey\",\n                \"Pub\",\n                \"Woodburner\",\n                \"Washing Machine\",\n                \"Tumble Dryer\",\n                \"Walking area\",\n                \"Romantic\",\n                \"Detached\",\n                \"Linen Provided\",\n                \"Towels Provided\",\n                \"Shop within 1 mile\",\n                \"Coastal\",\n                \"Town\",\n                \"Affordable\",\n                \"Beach within 1 mile\",\n                \"Beach 3\",\n                \"Pub\",\n                \"Coastal\",\n                \"Town\"\n            ],\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9713\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9713/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9713/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9713/reviews\"\n            }\n        },\n        {\n            \"id\": 9714,\n            \"name\": \"Arwel\",\n            \"reference\": \"arwel\",\n            \"slug\": \"arwel\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/arwel\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:42.000000Z\",\n                \"updated_at\": \"2025-07-12T23:05:36.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 6,\n                \"bedrooms\": 3,\n                \"bathrooms\": 1,\n                \"pets\": 1,\n                \"parking\": 1,\n                \"type\": \"Cottage\",\n                \"description\": \"Arwel is a first-floor apartment in a truly spectacular location in the centre of Aberporth, Ceredigion. With 2 sandy beaches just across the road and easy access to Ceredigion Coast Path it's a great base for a family seaside holiday, a walking break or exploring the surrounding area.\\r\\n\\r\\nThe apartment is bright and comfortable with a well-equipped kitchen and views of Cardigan Bay. You can leave your front door, cross the road, grab an ice cream and be on the beach in minutes.\\r\\nArwel is right in the centre of Aberporth which has everything you might need including a shop, post office, chemist, pub, cafes, restaurants, and takeaways. The two sandy beaches are perfect for swimming, exploring rock pools, relaxing, and watching out for the resident bottlenose dolphins.\\r\\n\\r\\nThere is easy access to Ceredigion Coast Path from the village, with miles of stunning coastal scenery and spectacular wildlife. Explore the coast north to Tresaith and Penbryn or head south to the National Trust beach of Mwnt and beyond.\\r\\n\\r\\nFurther afield, you may wish to take a dolphin spotting boat trip from New Quay (30 minutes). Cardigan (15 minutes) offers the opportunity to explore the renovated castle, famous for being the birthplace of the Eisteddfod, a national festival dating back to 1176. The Georgian town of Aberaeron has brightly painted period houses and a pretty harbour.\\r\\n\\r\\nAccommodation\\r\\nArwel sleeps 6 in 3 bedrooms: 1 king size bed, 2 twins.\\r\\nBedroom 1: king size bed \\r\\nBedroom 2: twin beds \\r\\nBedroom 3: twin beds \\r\\nBathroom: bath with shower over, toilet, hand basin\\r\\n\\r\\nLiving room: 3-seater leather sofa, 2 electric leather armchairs, 55\\\"; Smart TV, Blu-Ray player \\r\\nKitchen diner: electric oven, microwave, fridge freezer, dishwasher, washing machine, tumble dryer, 40\\\" Plasma TV, table and chairs to seat 6\\r\\n\\r\\nOutside\\r\\nLawn with brick paved area. Driveway parking for 1 car.\\r\\n\\r\\nKey facts\\r\\n- Bed linen and towels provided, not beach towels\\r\\n- Travel cot, highchair available, bring your own cot bedding\\r\\n- Oil central heating\\r\\n- Free WiFi\\r\\n- 1 well-behaved dog welcome upon request. Please let us know if you're bringing a dog upon booking. Please ensure that dogs are kept off the furniture. (Please note there are metal steps going up to the apartment)\\r\\n- No smoking\"\n            },\n            \"rules\": {\n                \"damage_deposits\": {\n                    \"required\": false,\n                    \"amount\": \"0.00\"\n                },\n                \"notice_prior_to_booking\": {\n                    \"hours\": 24\n                },\n                \"balance_due_prior_to_check_in\": {\n                    \"days\": 42\n                }\n            },\n            \"charges\": {\n                \"dogs\": [\n                    {\n                        \"id\": 2073,\n                        \"name\": \"Dogs\",\n                        \"amount\": \"0.00\",\n                        \"charge_type\": \"flat\",\n                        \"quantity\": 1,\n                        \"max_qty\": 1\n                    }\n                ],\n                \"extras\": []\n            },\n            \"location\": {\n                \"display\": \"Aberporth, Ceredigion\",\n                \"coordinates\": {\n                    \"latitude\": \"52.1343575\",\n                    \"longitude\": \"-4.5428042\"\n                },\n                \"address\": {\n                    \"county\": \"Ceredigion\",\n                    \"town\": \"Aberporth\"\n                }\n            },\n            \"images\": [\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-38/arwel-views.og4dn2.jpg\",\n                    \"main\": true,\n                    \"alt\": \"View across to the sea from Arwel\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-38/arwel-double-room.orsy0f.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Double bedroom, wardrobe, bedside lamp, dressing table and chair\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-38/arwel-kitchen.orsxiv.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Electric oven, washing machine, wall and floor units\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-38/arwel-living-room.orsy3x.jpg\",\n                    \"main\": false,\n                    \"alt\": \"3-seater leather sofa, 2 electric leather armchairs, TV, lamp and fireplace\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-38/arwel-bathroom.orsxhg.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Bathroom with shower over, shower curtain and heated towel rail\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-38/arwel-twin-bedroom.orsxww.jpg\",\n                    \"main\": false,\n                    \"alt\": \"2 single beds toe to toe with cupboard and bedside lamp\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-38/arwel-twin-bedroom.orsxtu.jpg\",\n                    \"main\": false,\n                    \"alt\": \"2 single beds with bedside table and lamp\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-38/arwel-dining-area.orsxob.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Table and chairs to seat 6, side table and TV\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-38/dsc-0098-wwed.og4dn7.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Just over the lane\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-38/arwel-exterior.orsy53.jpg\",\n                    \"main\": false,\n                    \"alt\": \"The outside of Arwel\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/stock-2016-09/aberporth-dyffryn-beach.odjs39.jpg\",\n                    \"main\": false,\n                    \"alt\": \"One of the sandy beaches at nearby Aberporth\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/stock-2016-09/tresaith-2jb.odloew.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Sandy beach at Tresaith and view along coastline\"\n                }\n            ],\n            \"features\": [\n                \"TV\",\n                \"Walkers\",\n                \"WiFi\",\n                \"King-size bed\",\n                \"Beach within 1 mile\",\n                \"Beach 3\",\n                \"Golf Course\",\n                \"Riding Stable\",\n                \"Sea Views\",\n                \"Pub\",\n                \"Dishwasher\",\n                \"Washing Machine\",\n                \"Tumble Dryer\",\n                \"Walking area\",\n                \"Linen Provided\",\n                \"Towels Provided\",\n                \"Travel cot\",\n                \"Shop within 1 mile\",\n                \"Coastal\",\n                \"Village\",\n                \"Affordable\",\n                \"Stunning Sea Views\",\n                \"Dogs Go Free\",\n                \"Beach within 1 mile\",\n                \"Beach 3\",\n                \"Pub\",\n                \"Walking area\",\n                \"Shop within 1 mile\",\n                \"Coastal\",\n                \"Village\"\n            ],\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9714\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9714/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9714/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9714/reviews\"\n            }\n        },\n        {\n            \"id\": 9732,\n            \"name\": \"Sea View Lodge\",\n            \"reference\": \"baysea\",\n            \"slug\": \"sea-view-lodge\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/sea-view-lodge\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:42.000000Z\",\n                \"updated_at\": \"2025-07-12T23:06:29.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 6,\n                \"bedrooms\": 3,\n                \"bathrooms\": 1,\n                \"pets\": 1,\n                \"parking\": 2,\n                \"type\": \"Cottage\",\n                \"description\": \"Sea View Lodge at Felindre is located 6 miles north of St Davids and is just a 5-minute woodland stroll from the picturesque harbour of Porthgain. From here, you can walk along the cliffs on the Pembrokeshire Coast Path, enjoying spectacular scenery. In Porthgain you will find the friendly Sloop Inn, the award-winning bistro The Shed, which specialises in locally caught fish, and a gallery of work by local artists.\\r\\n\\r\\nThe nearby historic city of St Davids draws many visitors with its majestic cathedral, ancient Bishops Palace, boutique shops, art galleries and restaurants. You can buy tickets here for boat trips to the RSPB's Ramsey Island or view the other offshore islands with their impressive seabird populations. There is a good chance of seeing dolphins and whales too.\\r\\n\\r\\nSea View Lodge is a wonderful place for a beach holiday: there are 20 different beaches within just 12 miles. Traethllyfn is a beautiful National Trust beach only 1 mile away, and you can walk to it across farmland or the cliff path. This beach is excellent for surfing, as are Abereiddy, Whitesands and Newgale.\\r\\n\\r\\nThere are plenty of open-air pursuits to enjoy: local activity centres give both adults and children the opportunity to try climbing, sea kayaking and coasteering. Local stables offer horse riding, three local courses offer scenic rounds of golf, and walking holidays are popular here all year round - out-of-season visitors enjoy having this stunning landscape almost to themselves. Sea View Lodge provides ideal all year-round accommodation as the Nordic spruce construction provides excellent insulation, which is complemented by cosy underfloor heating.\\r\\n\\r\\nACCOMMODATION\\r\\nSea View Lodge sleeps 6 in 3 bedrooms: 1 double, 1 twin and 1 with bunk beds. All the accommodation is on the ground floor so may suit guests with restricted mobility\\r\\n\\r\\nBedroom 1: double bed\\r\\nBedroom 2: twin beds\\r\\nBedroom 3: bunk beds at a right angle next to each other\\r\\nBathroom: bath with shower over, toilet, hand basin\\r\\nOpen plan area with; \\r\\n\\r\\nSitting area: 5-seater corner sofa, chair, Freesat TV/DVD\\r\\nKitchen area: ceramic hob, electric oven, kettle, microwave, toaster, dishwasher, fridge/freezer\\r\\nDining area: dining table and chairs for 8\\r\\nCloakroom: toilet, hand basin\\r\\nLaundry cupboard: washing machine, tumble dryer\\r\\n\\r\\nOUTSIDE\\r\\nThere is a picnic table and chairs on the veranda. There is a BBQ and a lawned area to the front. There is parking for 2 cars adjacent to the lodge.\\r\\n\\r\\nKEY FACTS\\r\\n\\r\\n- Bed linen provided\\r\\n- Please bring your own towels\\r\\n- Underfloor heating\\r\\n- Free WiFi\\r\\n- 1 well-behaved dog welcome upon request. Please let us know if you're bringing a dog upon booking. \\r\\n- No smoking\"\n            },\n            \"rules\": {\n                \"damage_deposits\": {\n                    \"required\": false,\n                    \"amount\": \"0.00\"\n                },\n                \"notice_prior_to_booking\": {\n                    \"hours\": 24\n                },\n                \"balance_due_prior_to_check_in\": {\n                    \"days\": 42\n                }\n            },\n            \"charges\": {\n                \"dogs\": [\n                    {\n                        \"id\": 2076,\n                        \"name\": \"Dogs\",\n                        \"amount\": \"0.00\",\n                        \"charge_type\": \"weekly\",\n                        \"quantity\": 1,\n                        \"max_qty\": 1\n                    }\n                ],\n                \"extras\": []\n            },\n            \"location\": {\n                \"display\": \"Porthgain, Pembrokeshire\",\n                \"coordinates\": {\n                    \"latitude\": \"51.9420471\",\n                    \"longitude\": \"-5.1757894\"\n                },\n                \"address\": {\n                    \"county\": \"Pembrokeshire\",\n                    \"town\": \"Porthgain\"\n                }\n            },\n            \"images\": [\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-56/sea-view-lodge.okc7y1.jpg\",\n                    \"main\": true,\n                    \"alt\": \"Exterior of Sea View Lodge, a wooden cabin behind a stone wall with grass to the side\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-56/sea-view-lodge-double-bedroom.okc7zu.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Double bedroom with bed, bedside tables and lamps and a window\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-56/sea-view-lodge-living-dining-area.okc83e.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Open plan living dining area with corner sofa, easy chair, tv dining table and chairs, patio doors\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-56/sea-view-lodge-kitchen-dining-area.okc7x0.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Kitchen dining area, fitted units, oven, microwave, dining table and chairs\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-56/sea-view-lodge-twin-bedroom.okc81w.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Twin bedroom with beds, bedside table, lamp and window\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-56/sea-view-lodge-deck.okc7zw.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Fenced verandah with table and chairs\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-56/sea-view-lodge-bunk-bedroom.okc82s.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Bunk bedroom with beds at right angle and window\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-56/sea-view-lodge-bathroom.okc8dg.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Bathroom with bath, wc, washbasin and window\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-56/name-plaque-a.oga26d.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Sea View Lodge\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-56/porth-gain-a.oga255.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Porthgain\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-56/abereiddi-traeth-llynfyn-1vw.jpg.oga26c.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Aberiddy Beach - popular for surfing\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-56/views2-a.oga26h.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Views from Sea View Lodge\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/stock-2022-01/st-davids-4041250.pb.r5apyg.jpg\",\n                    \"main\": false,\n                    \"alt\": \"St Davids Cathedral\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/stock-2022-02/porthgain---430661--vw.r6qgp0.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Porthgain Harbour\"\n                }\n            ],\n            \"features\": [\n                \"TV\",\n                \"Walkers\",\n                \"Ground Floor Bedroom with bathroom\",\n                \"WiFi\",\n                \"Beach within 1 mile\",\n                \"Beach 3\",\n                \"Sea Views\",\n                \"Single Storey\",\n                \"Pub\",\n                \"Dishwasher\",\n                \"Washing Machine\",\n                \"Tumble Dryer\",\n                \"Walking area\",\n                \"Detached\",\n                \"Countryside\",\n                \"Linen Provided\",\n                \"Coastal\",\n                \"Rural\",\n                \"Affordable\",\n                \"Stunning Sea Views\",\n                \"Dogs Go Free\",\n                \"Beach within 1 mile\",\n                \"Beach 3\",\n                \"Walking area\",\n                \"Countryside\",\n                \"Coastal\"\n            ],\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9732\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9732/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9732/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9732/reviews\"\n            }\n        },\n        {\n            \"id\": 9739,\n            \"name\": \"Beach Hut Apartment\",\n            \"reference\": \"beachhut\",\n            \"slug\": \"beach-hut-apartment\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/beach-hut-apartment\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:43.000000Z\",\n                \"updated_at\": \"2025-06-20T14:42:54.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 6,\n                \"bedrooms\": 3,\n                \"bathrooms\": 1,\n                \"pets\": 1,\n                \"parking\": 0,\n                \"type\": \"Apartment\",\n                \"description\": \"Beach Hut Apartment is a stylish, relaxed space situated above The Beach Hut cafÃ© in a prime location only 12 metres from the beach in Llangrannog, a pretty fishing village on Cardigan Bay. The apartment has excellent facilities, with a large open-plan family room and kitchen area opening onto a decked sun terrace with unrivalled views of the beach below. Here, you can enjoy al fresco dining with one of the best views around- the perfect spot for breakfast and dinner with a view!\\r\\n\\r\\nLlangrannog is a great place to relax and watch for dolphins out at sea, is popular with families and surfers and is manned by lifeguards in summer. The village has safe sandy beaches, two cafes, two pubs and a shop. A short walk along the coast path to the north is the spectacular Ynys Lochtyn, with the beaches of Penbryn and Tresaith a few miles to the south. There are many other bays and incredible scenery inland to explore.\\r\\n\\r\\nOther nearby attractions include golf, horse riding, boat trips, and fishing. Further afield are other interesting places to visit, including Cardigan, Tenby, Aberystwyth and the Preseli Hills.\\r\\n\\r\\nACCOMMODATION\\r\\nFrom the road side parking the apartment is accessed via a shallow slope and three steps leading to the front door.\\r\\n\\r\\nSECOND FLOORÂ \\r\\nBedroom 3Â double bed, bedside table, storage\\r\\n\\r\\nFIRST FLOORÂ \\r\\nBedroom 1Â double bed, bedside table, storage\\r\\nBedroom 2Â double bed, bedside table, storage Both bedrooms have level access to:\\r\\n\\r\\nOpen plan kitchen/living area...\\r\\nKitchen area: electric oven and hob, fridge with ice box, dishwasher, microwave. Large oak dining table seating 6.\\r\\nLiving area: two 3-seater sofas, oak coffee table, TV/DVD, double doors leading to sun terrace.Â \\r\\nBathroom: bath with shower over, toilet, hand basin, washing machine\\r\\n\\r\\nLarge decked sun terrace facing the sea, with table and chairs for al fresco dining. Roadside parking space outside the apartment and nearby charged for car park.\\r\\n\\r\\nOUTSIDE\\r\\nLarge decked sun terrace facing the sea, with table and chairs for al fresco dining. Roadside parking space outside the apartment and nearby charged for car park.\\r\\n\\r\\nKEY FACTS\\r\\n- Bed linen provided\\r\\n- Please bring your own towels\\r\\n- Central heating\\r\\n- Free WiFi\\r\\n- 1 well-behaved dog welcome at Â£25 per stay\\r\\n- No smoking\"\n            },\n            \"rules\": {\n                \"damage_deposits\": {\n                    \"required\": false,\n                    \"amount\": \"0.00\"\n                },\n                \"notice_prior_to_booking\": {\n                    \"hours\": 12\n                },\n                \"balance_due_prior_to_check_in\": {\n                    \"days\": 42\n                }\n            },\n            \"charges\": {\n                \"dogs\": [\n                    {\n                        \"id\": 38,\n                        \"name\": \"Dogs\",\n                        \"amount\": \"25.00\",\n                        \"charge_type\": \"flat\",\n                        \"quantity\": 1,\n                        \"max_qty\": 1\n                    }\n                ],\n                \"extras\": []\n            },\n            \"location\": {\n                \"display\": \"Llangrannog, Ceredigion\",\n                \"coordinates\": {\n                    \"latitude\": \"52.1598015\",\n                    \"longitude\": \"-4.4712586\"\n                },\n                \"address\": {\n                    \"county\": \"Ceredigion\",\n                    \"town\": \"Llangrannog\"\n                }\n            },\n            \"images\": [\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-63/beach-hut-apartment-lounge.ozidie.jpg\",\n                    \"main\": true,\n                    \"alt\": \"Lounge with two sofas, coffee table, tv, large double doors onto terrace overlooking beach\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-63/beach-hut-apartment-bedroom.ozids4.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Double bedroom with two beside cupboards and lamps, roof window overlooking beach\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-63/beach-hut-apartment-terrace.ozidky.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Terrace overlooking beach and sea with wooden picnic table and chairs\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-63/beach-hut-apartment-living-area.ozidr2.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Lounge area and kitchen with dining table and 6 chairs, sofas and coffee table\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-63/beach-hut-apartment-kitchen-diner.ozie8w.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Kitchen and dining area at Beach Hut Apartment\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-63/beach-hut-apartment-bedroom.ozie4l.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Double bedroom with roof window, bedside shelves with lamps\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-63/beach-hut-apartment-bedroom.ozidzp.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Double bedroom with sofa, tv, bedside tables and lamps, roof window\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-63/beach-hut-apartment-bedroom.ozidym.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Double bedroom with two beside cupboards and lamps, roof window\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-63/beach-hut-apartment-llangrannog.ozieo4.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Aerial view of beach and village, busy with people, cafes, pubs and car park\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-63/beach-hut-apartment.oziekc.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Wooden balcony with picnic table and chairs and view through double doors into sitting room\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-63/beach-hut-apartment-bathroom.oziebu.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Bathroom with bath and shower, toilet, window with blind, large piece of driftwood on floor\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-63/beach-hut-apartment.oziee6.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Two mugs with the village name, Llangrannog printed on the side\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-63/beach-hut-apartment.ozieih.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Apartment with terrace and cafe below, view of the village\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/stock-2016-09/llangrannog-1JB.odleyi.jpg\",\n                    \"main\": false,\n                    \"alt\": \"View from high above Llangrannog beach with village and houses to left sea to the right\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/stock-2021-12/llangrannog-3508524373-8343717f0f-o.flickr.r4iwfc.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Waves crashing on the beach at Llangrannog\"\n                }\n            ],\n            \"features\": [\n                \"TV\",\n                \"Walkers\",\n                \"Ground Floor Bedroom with bathroom\",\n                \"WiFi\",\n                \"Beach within 1 mile\",\n                \"Beach 3\",\n                \"Sea Views\",\n                \"Pub\",\n                \"Dishwasher\",\n                \"Washing Machine\",\n                \"Shop within 1 mile\",\n                \"Coastal\",\n                \"Village\",\n                \"Stunning Sea Views\",\n                \"Beach within 1 mile\",\n                \"Beach 3\",\n                \"Pub\",\n                \"Walking area\",\n                \"Shop within 1 mile\",\n                \"Coastal\",\n                \"Village\"\n            ],\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9739\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9739/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9739/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9739/reviews\"\n            }\n        },\n        {\n            \"id\": 9749,\n            \"name\": \"Ty Beth\",\n            \"reference\": \"beth\",\n            \"slug\": \"ty-beth\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/ty-beth\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:43.000000Z\",\n                \"updated_at\": \"2025-06-20T14:49:33.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 4,\n                \"bedrooms\": 2,\n                \"bathrooms\": 1,\n                \"pets\": 3,\n                \"parking\": 2,\n                \"type\": \"House\",\n                \"description\": \"Ty Beth is an attractive detached stone cottage with a large private dog-friendly garden. The cottage is in a small close situated off the narrow road leading to the sandy beaches of Pwllgwaelod and Cwm yr Eglwys less than half a mile away.\\r\\n\\r\\nFrom the cottage, there are exhilarating walks around Dinas Head and on the Pembrokeshire Coastal Path with its magnificent scenery. Dinas has a couple of very good shops as well as three pubs including one right beside the sea which serves good food.\\r\\n\\r\\nNewport is a pretty Pembrokeshire village about 3 miles from the cottage with a selection of restaurants, galleries, shops and a bank. Beyond it lies the long beach of Newport Sands.\\r\\n\\r\\nACCOMMODATION\\r\\nThe cottage sleeps 4 in 2 bedrooms: 1Â king size and 1 twin. All the accommodation is on the ground floor with the exception to 3 internal steps so may suit guests with restricted mobility.\\r\\n\\r\\nBedroom 1: king size bed, bedside tables, dressing table, fitted wardrobe\\r\\nBedroom 2: twin beds, bedside table, fitted wardrobes\\r\\nBathroom: bath with shower over, toilet, hand basin, heated towel rail\\r\\n\\r\\nLiving room: 2-seater sofa, easy chairs, 43\\\" smart TV, DVD player, selection of DVDs, books and games, log-burning stove\\r\\nKitchen: electric hob, built-in oven, microwave, fridge/freezer, washing machine\\r\\nSun lounge: breakfast table and seating\\r\\n\\r\\nOUTSIDE\\r\\nEnclosed secluded lawned garden to rear with shrubs and flower borders. Garden furniture and barbeque provided. AmpleÂ parking in the courtyard.\\r\\n\\r\\nKEY FACTS\\r\\n- Bed linen provided\\r\\n- Please bring your own towels\\r\\n- Travel cot and highchair available. Please bring your own cot bedding\\r\\n- Gas central heating\\r\\n- First basket of logs is provided, more can be purchased locally\\r\\n- Free WiFi\\r\\n- 3 well-behaved dogs welcome free of charge\\r\\n- No smoking\\r\\n- Â£150 refundable damages deposit\"\n            },\n            \"rules\": {\n                \"damage_deposits\": {\n                    \"required\": true,\n                    \"amount\": \"150.00\"\n                },\n                \"notice_prior_to_booking\": {\n                    \"hours\": 72\n                },\n                \"balance_due_prior_to_check_in\": {\n                    \"days\": 42\n                }\n            },\n            \"charges\": {\n                \"dogs\": [\n                    {\n                        \"id\": 40,\n                        \"name\": \"Dogs\",\n                        \"amount\": \"0.00\",\n                        \"charge_type\": \"weekly\",\n                        \"quantity\": 1,\n                        \"max_qty\": 3\n                    }\n                ],\n                \"extras\": []\n            },\n            \"location\": {\n                \"display\": \"Newport, Pembrokeshire\",\n                \"coordinates\": {\n                    \"latitude\": \"52.0183182\",\n                    \"longitude\": \"-4.9019861\"\n                },\n                \"address\": {\n                    \"county\": \"Pembrokeshire\",\n                    \"town\": \"Newport\"\n                }\n            },\n            \"images\": [\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-73/ty-beth-july-2011-0005a.og8kdf.jpg\",\n                    \"main\": true,\n                    \"alt\": \"Ty Beth\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-73/dsc-0019-1019a.og8kdj.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Master bedroom with king size bed\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-73/ty-beth-kitchen.p7shq0.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Kitchen at Ty Beth\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-73/dsc-0018-1018-2a.og8kf7.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Comfy sofas in the lounge/dining room\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-73/dsc-0023-1023a.og8kiz.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Relax in front of the log burner\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-73/ty-beth-bathroom.p7shrv.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Bath and shower room at Ty Beth\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-73/ty-beth-bathroom.p7shrz.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Bathroom at Ty Beth with shower over bath, wash basin and mirror\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-73/dsc-0022-1022a.og8kgt.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Twin bedroom\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-73/dsc-0025-1025a.og8kk6.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Breakfast table in the sun lounge\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-73/ty-beth-july-2011-0009a.og8kii.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Ty Beth from the garden\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-73/ty-beth-july-2011-0011a.og8kdw.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Ty Beth's large enclosed garden\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-73/ty-beth-july-2011-0061a.og8kdp.jpg\",\n                    \"main\": false,\n                    \"alt\": \"The beach of Newport Sands\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-73/ty-beth-july-2011-0092a.og8ki3.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Pembrokeshire coastline\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/stock-2022-01/cwm-yr-eglwys-1vw-1-.r6djqi.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Remains of Cwm yr Eglwys church\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/stock-2016-11/newport-2-vw.jpg.ogp6ob.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Golf links with Newport Estuary and town beyond, beach to the right\"\n                }\n            ],\n            \"features\": [\n                \"Cot\",\n                \"TV\",\n                \"Enclosed Garden\",\n                \"Walkers\",\n                \"Ground Floor Bedroom with bathroom\",\n                \"WiFi\",\n                \"King-size bed\",\n                \"Beach within 1 mile\",\n                \"Beach 3\",\n                \"Golf Course\",\n                \"Riding Stable\",\n                \"Secluded\",\n                \"Single Storey\",\n                \"Pub\",\n                \"Woodburner\",\n                \"Washing Machine\",\n                \"Mountain Biking\",\n                \"Walking area\",\n                \"Romantic\",\n                \"Detached\",\n                \"Shop within 1 mile\",\n                \"Coastal\",\n                \"Village\",\n                \"Affordable\",\n                \"Dogs Go Free\",\n                \"Beach within 1 mile\",\n                \"Beach 3\",\n                \"Pub\",\n                \"Walking area\",\n                \"Shop within 1 mile\",\n                \"Village\"\n            ],\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9749\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9749/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9749/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9749/reviews\"\n            }\n        },\n        {\n            \"id\": 9774,\n            \"name\": \"Briallen\",\n            \"reference\": \"briallen\",\n            \"slug\": \"briallen\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/briallen\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:44.000000Z\",\n                \"updated_at\": \"2025-07-12T23:05:53.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 2,\n                \"bedrooms\": 1,\n                \"bathrooms\": 1,\n                \"pets\": 2,\n                \"parking\": 2,\n                \"type\": \"Cottage\",\n                \"description\": \"A coastal cottage for 2 on a smallholding 1.5 miles from Llanrhystud beach on Cardigan Bay, Briallen ('Primrose') is a beautifully converted stone barn providing welcoming, high quality accommodation, ideal for a comfortable and relaxing holiday.\\r\\n\\r\\nThere is a private garden with a hot tub for your exclusive use. Relax and enjoy the beautiful night sky &ndash; a sight to take your breath away. Minimal light pollution allows for a spectacular experience. A sheer luxury!\\r\\n\\r\\nBriallen is in a very quiet location on a 7 acre rural smallholding within 1 mile of local shops, post office, garage, pub and 18 hole golf course / driving range.\\r\\n\\r\\nFrom Briallen you can explore the varied coastal scenery of Cardigan Bay, walk the local section of the Wales Coast Path, and visit the many pretty little villages and towns on the coast and inland.\\r\\n\\r\\nTo the north, Aberystwyth (10 miles) offers a wide selection of entertainment, restaurants, pubs, theatre and cinemas. To the south, Aberaeron (9 miles) is a very attractive Georgian town with a picturesque harbour and superb restaurants.\\r\\n\\r\\nVisit the National Trust estate of Llanerchaeron, Tregaron Bog nature reserve and Teifi Pools, the ancient Strata Florida Abbey, Devil's Bridge and much more.\\r\\n\\r\\nACCOMMODATION\\r\\nBriallen sleeps 2 + cot in a galleried bedroom\\r\\n\\r\\nUPSTAIRS \\r\\nBedroom: king size bed, galleried bedroom with sloping ceilings\\r\\n\\r\\nDOWNSTAIRS \\r\\nLounge: 2 x 2 seater sofas, Freeview TV, DVD player and HiFi/CD player, original character stone wall and oak furnishings \\r\\nKitchen/diner: electric oven and hob, fridge freezer, microwave, dishwasher and automatic washing machine. The dining table seats two and a high chair is available on request. \\r\\nBathroom: spacious power shower unit, toilet, wash hand basin, heated towel rail\\r\\n\\r\\nOUTSIDE\\r\\nAt the rear, a stable door leads from the lounge to an enclosed patio and garden area with garden furniture, barbecue, hot tub and clothesline. There is ample off-road parking for two vehicles.\\r\\n\\r\\nKEY FACTS\\r\\n- Bed linen and towels provided. Please bring your own beach towels\\r\\n- Travel cot and high chair available on request\\r\\n- Full oil central heating\\r\\n- Free WiFi\\r\\n- 2 well-behaved dogs welcome upon request. Please let us know if you're bringing a dog (or more) upon booking. \\r\\n- No smoking allowed inside the cottage\"\n            },\n            \"rules\": {\n                \"damage_deposits\": {\n                    \"required\": false,\n                    \"amount\": \"0.00\"\n                },\n                \"notice_prior_to_booking\": {\n                    \"hours\": 24\n                },\n                \"balance_due_prior_to_check_in\": {\n                    \"days\": 42\n                }\n            },\n            \"charges\": {\n                \"dogs\": [\n                    {\n                        \"id\": 1464,\n                        \"name\": \"Dogs\",\n                        \"amount\": \"0.00\",\n                        \"charge_type\": \"flat\",\n                        \"quantity\": 1,\n                        \"max_qty\": 2\n                    }\n                ],\n                \"extras\": [\n                    {\n                        \"id\": 477,\n                        \"name\": \"Travel cot\",\n                        \"charge_type\": \"flat\",\n                        \"amount\": \"0.00\",\n                        \"quantity\": 1,\n                        \"max_qty\": 1\n                    },\n                    {\n                        \"id\": 478,\n                        \"name\": \"Highchair\",\n                        \"charge_type\": \"flat\",\n                        \"amount\": \"0.00\",\n                        \"quantity\": 1,\n                        \"max_qty\": 1\n                    }\n                ]\n            },\n            \"location\": {\n                \"display\": \"Aberystwyth, Ceredigion\",\n                \"coordinates\": {\n                    \"latitude\": \"52.2946701\",\n                    \"longitude\": \"-4.1349845\"\n                },\n                \"address\": {\n                    \"county\": \"Ceredigion\",\n                    \"town\": \"Aberystwyth\"\n                }\n            },\n            \"images\": [\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-98/briallen-patio.qdkjee.jpg\",\n                    \"main\": true,\n                    \"alt\": \"Private patio at Briallen with hot tub, table and chairs\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-98/briallen.qdkfg6.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Exterior of Briallen, a stone single storey cottage with gravel in front\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-98/briallen-bedroom.qdkgfs.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Double bedroom in Briallen with king size bed, oak furniture and velux window\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-98/briallen-kitchen.qdkji1.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Kitchen dining room in Briallen with units, washing machine, table chairs and window\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-98/briallen-living-room.qdkg3m.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Living room in Briallen, exposed stone wall, 2 sofas, lamps, wooden furniture\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-98/briallen-bathroom.qdkhp8.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Bathroom in Briallen with large shower enclosure, toilet, washbasin, radiator and mirrors\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-98/briallen-Kitchen-diner.qdkh30.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Kitchen in Briallen with fitted units, table, chairs, fridge and window\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-98/briallen-living-room.qdkig4.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Living room with sofas facing window and TV\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-98/briallen-hot-tub.qdkix7.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Patio at Briallen with hot tub, table, chairs, barbecue and views across a paddock\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/stock-2016-09/llanrhystud-area-1vw.jpg.odlg62.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Person walking along the coast path near Llanrhystud\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/stock-2021-12/aberystwyth-wcp-dji-0815.vw.r4h0vj.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Arial view of Aberystwyth seafront and beach\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-98/eirly-briallen.qdki5p.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Eirlys and Briallen\"\n                }\n            ],\n            \"features\": [\n                \"Bike storage\",\n                \"Cot\",\n                \"TV\",\n                \"Enclosed Garden\",\n                \"Walkers\",\n                \"Hot Tub\",\n                \"WiFi\",\n                \"King-size bed\",\n                \"Beach 3\",\n                \"Golf Course\",\n                \"On a Farm\",\n                \"Pub\",\n                \"Dishwasher\",\n                \"Washing Machine\",\n                \"Walking area\",\n                \"Character\",\n                \"Romantic\",\n                \"For Two\",\n                \"Countryside\",\n                \"Linen Provided\",\n                \"Towels Provided\",\n                \"Coastal\",\n                \"Village\",\n                \"Dogs Go Free\",\n                \"Beach 3\",\n                \"Golf Course\",\n                \"Pub\",\n                \"Walking area\",\n                \"Countryside\",\n                \"Coastal\",\n                \"Village\"\n            ],\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9774\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9774/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9774/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9774/reviews\"\n            }\n        },\n        {\n            \"id\": 9784,\n            \"name\": \"Bronmor\",\n            \"reference\": \"bronmor\",\n            \"slug\": \"bronmor\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/bronmor\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:44.000000Z\",\n                \"updated_at\": \"2025-07-12T23:05:50.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 6,\n                \"bedrooms\": 3,\n                \"bathrooms\": 1,\n                \"pets\": 3,\n                \"parking\": 2,\n                \"type\": \"Cottage\",\n                \"description\": \"Bronmor is a cosy, comfortable and traditional Welsh cottage situated in the coastal town of Newport, Pembrokeshire. Within a minute's walk, there is a selection of cafes, restaurants, pubs, shops and galleries to suit all tastes. There is also a weekly market on Mondays where local produce can be bought.\\r\\n\\r\\nThe popular beach of Newport Sands is ideal for families and there are also smaller beaches and coves to be explored within walking distance from the cottage. The cottage is ideally situated to enjoy many of the wonderful walks along the Pembrokeshire Coast Path or in the beautiful Preseli Hills. There are also fantastic road and mountain bike rides to be enjoyed.\\r\\n\\r\\nAlthough this is a traditional cottage it has a contemporary style and charm with all the modern comforts we enjoy. The secluded garden is a great place to unwind with a rooftop sea view.\\r\\n\\r\\nACCOMMODATION\\r\\nBronmor sleeps 4 adults and 2 children only in 3 bedrooms: 1 king size, 1 twin and 1 twin room only suitable for children.\\r\\n\\r\\nUPSTAIRS\\r\\nBedroom 1: king size bed, bedside tables with lamps, chest of draws, mirror, built in wardrobe\\r\\nBedroom 2: twin beds (only suitable for children), sloping ceiling, clothes storage, access through bedroom 1\\r\\nBedroom 3: twin beds, bedside tables with lamps, chest of draws, mirror, built-in wardrobe\\r\\n\\r\\nDOWNSTAIRS\\r\\nBathroom: shower enclosure, toilet, hand basin\\r\\nLiving room: 3-seater sofa, 2 armchairs, occasional tables, sideboard, 42&rdquo; Freeview TV/DVD, log burner, Bluetooth speaker\\r\\nKitchen: gas hob, electric double oven, fridge, microwave, dishwasher\\r\\nDining room: dining room table comfortably seating 6 with 6 director chairs, a side table, a corner cupboard\\r\\nUtility room: washing machine, tumble dryer, freezer, shower cubicle, boiler\\r\\nCloakroom: toilet, hand basin\\r\\n\\r\\nOUTSIDE\\r\\nThere is an enclosed rear garden accessed off the first-floor landing with a table to seat 8 and a stone BBQ. Bench for those morning coffees with a rooftop sea view. The cottage has a safe, locked stone shed to store bikes (bikes are stored at owners own risk). Private parking for Bronmor is approximately 40m down the road on the left suitable for 2 cars.\\r\\n\\r\\nKEY FACTS\\r\\n- Bed Linen and towelsare provide along with bathmats and tea towels. Please bring your own beach towels\\r\\n- Travel cot and highchair available. Please bring your own cot bedding\\r\\n- Gas central heating\\r\\n- First basket of logs provided, more available to purchase locally\\r\\n- Free WiFi\\r\\n- Up to 3 well-behaved dogs welcome upon request. Please let us know if you're bringing a dog (or more) upon booking. \\r\\n- No Smoking\\r\\n- Â£100 refundable damages deposit\"\n            },\n            \"rules\": {\n                \"damage_deposits\": {\n                    \"required\": true,\n                    \"amount\": \"100.00\"\n                },\n                \"notice_prior_to_booking\": {\n                    \"hours\": 48\n                },\n                \"balance_due_prior_to_check_in\": {\n                    \"days\": 42\n                }\n            },\n            \"charges\": {\n                \"dogs\": [\n                    {\n                        \"id\": 51,\n                        \"name\": \"Dogs\",\n                        \"amount\": \"0.00\",\n                        \"charge_type\": \"flat\",\n                        \"quantity\": 1,\n                        \"max_qty\": 3\n                    }\n                ],\n                \"extras\": [\n                    {\n                        \"id\": 1425,\n                        \"name\": \"Bath towels\",\n                        \"charge_type\": \"flat\",\n                        \"amount\": \"5.00\",\n                        \"quantity\": 6,\n                        \"max_qty\": 6\n                    }\n                ]\n            },\n            \"location\": {\n                \"display\": \"Newport, Pembrokeshire\",\n                \"coordinates\": {\n                    \"latitude\": \"52.0155106\",\n                    \"longitude\": \"-4.8334446\"\n                },\n                \"address\": {\n                    \"county\": \"Pembrokeshire\",\n                    \"town\": \"Newport\"\n                }\n            },\n            \"images\": [\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-108/bronmor-exterior.pudnut.jpg\",\n                    \"main\": true,\n                    \"alt\": \"The front of Bronmor with shrubs either side of the front door\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-108/bronmor-outside.pudnuu.jpg\",\n                    \"main\": false,\n                    \"alt\": \"The outside of Bronmor with houses attached\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-108/bronmor-master bedroom.pudnvn.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Kind size bed, chest of drawers with mirror, small book shelf high on the wall, armchair\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-108/bronmor-master-bedroom-1.pudnvh.jpg\",\n                    \"main\": false,\n                    \"alt\": \"King size bed with cushions and blanket, chest of drawers and bedside cabinets and lamps\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-108/bronmor-kitchen-1.pudnv9.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Kitchen sink, green washing up bowl, wall cabinets, door to utility room\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-108/bronmor-kitchen.pudnvc.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Kitchen sink, hob, oven, kettle, knife set and crockery in a shelved alcove\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-108/bronmor-living-room.qdtqz1.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Armchair, log burner with mirror above and rug in front, sofa and table lamp\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-108/bronmor-sitting-room.qdtrdm.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Log burner, armchairs, sofa, TV on a cabinet in the corner, basket and coffee table in Bronmor\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-108/bronmor-twin-bedroom.pudnuk.jpg\",\n                    \"main\": false,\n                    \"alt\": \"2 single beds, wooden chair, chest of drawers with mirror, feature fireplace\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-108/bronmor-bedroom-off-master-bedroom.pudnvu.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Twin beds, sloping roof, wooden, beams, wicker basket\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-108/bronmor-dining-room.qdtr5r.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Dining table and chairs with a vase of flowers, chest of drawers and door to kitchen\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-108/bronmor-dining-stairs.qdtrpk.jpg\",\n                    \"main\": false,\n                    \"alt\": \"The stairs up to the bedrooms, dining table, chairs and armchair in Bronmor\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-108/bronmor-bathroom.qdtryy.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Shower enclosure, toilet, wash hand basin and mirror on the wall in the bathroom at Bronmor\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-108/bronmor-cloakroom.qdtsdi.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Toilet, wash hand basin, mirror on the wall and shelves with towels\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-108/bronmor-garden-table.pudnv0.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Wooden garden table with chairs on the lawn and laid with drinks\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-108/bronmor-garden-view.pudnum.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Wooden table and chairs on the lawn in Bronmor's garden\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-108/bronmor-parking-storage.pudnuf.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Bicycle leading against the wall near the parking area and storage area\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/9784/STUS7F3VWDwtLasOFyGgiMJdcfm3ALpADB3R4hXV.jpg\",\n                    \"main\": false,\n                    \"alt\": null\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/stock-2016-11/newport-beach-1vw.jpg.og67br.jpg\",\n                    \"main\": false,\n                    \"alt\": \"View of Newport bay looking across the sea to the and beach with hills in the distance\"\n                }\n            ],\n            \"features\": [\n                \"Bike storage\",\n                \"TV\",\n                \"Enclosed Garden\",\n                \"Walkers\",\n                \"WiFi\",\n                \"King-size bed\",\n                \"Beach within 1 mile\",\n                \"Beach 3\",\n                \"Golf Course\",\n                \"Riding Stable\",\n                \"Pub\",\n                \"Woodburner\",\n                \"Dishwasher\",\n                \"Washing Machine\",\n                \"Tumble Dryer\",\n                \"Mountain Biking\",\n                \"Walking area\",\n                \"Character\",\n                \"Linen Provided\",\n                \"Travel cot\",\n                \"Shop within 1 mile\",\n                \"Coastal\",\n                \"Town\",\n                \"Dogs Go Free\",\n                \"Beach within 1 mile\",\n                \"Beach 3\",\n                \"Pub\",\n                \"Walking area\",\n                \"Shop within 1 mile\",\n                \"Coastal\",\n                \"Town\"\n            ],\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9784\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9784/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9784/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9784/reviews\"\n            }\n        },\n        {\n            \"id\": 9786,\n            \"name\": \"Bronwylfa\",\n            \"reference\": \"bronwylfa\",\n            \"slug\": \"bronwylfa\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/bronwylfa\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:45.000000Z\",\n                \"updated_at\": \"2025-06-20T14:50:22.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 4,\n                \"bedrooms\": 2,\n                \"bathrooms\": 2,\n                \"pets\": 1,\n                \"parking\": 1,\n                \"type\": \"House\",\n                \"description\": \"Bronwylfa is set on a Victorian terrace on a hillside overlooking the village of Llangrannog, Ceredigion. With amazing views over beautiful Cardigan Bay and across the beach and surrounding countryside, this charming cottage is in a quiet, peaceful setting yet just a short stroll from the village.\\r\\n\\r\\nThe cottage has delightful period features, light-filled rooms, and a cosy, comfortable sitting room. The front lawn is perfect for relaxing and enjoying al fresco meals or drinks with sea views.\\r\\n\\r\\nIt is a short walk to the village with a range of amenities, including a pub, a shop, two cafÃ©s, and an award-winning pizza takeaway.\\r\\n\\r\\nThere is a well-stocked supermarket/garage just a short drive away. Llangrannog is a popular destination famed for its family-friendly beaches and stunning scenery. It attracts swimmers, walkers, surfers, bird, and dolphin watchers in equal measure. Golf, sailing, and horse-riding facilities are close by. There are spectacular walks direct from the village on the 60-mile-long Ceredigion Coast Path. Walk a short way to Ynys Lochtyn headland, the pretty village of Cwm Tydu, or the seaside village of New Quay. The popular beaches at Penbryn and Tresaith are nearby.\\r\\n\\r\\nThe market town of Cardigan, 12 miles away, has shops, supermarkets, galleries, and great places to try local food. The Georgian town of Aberaeron has independent shops, a pretty harbour, and famous honey ice cream. The surrounding countryside is full of secluded coves, ruined castles, and abbeys to explore; something for everyone.\\r\\n\\r\\nACCOMMODATION\\r\\nBronwylfa sleeps 4 in 2 bedrooms: 1 double and 1 twin.\\r\\n\\r\\nUPSTAIRS\\r\\nBedroom 1: double bed, bedside tables, wardrobe, chest of drawers, chair\\r\\nBedroom 2: twin beds, bedside tables, wardrobe, chair\\r\\nBathroom: bath with electric shower over, toilet, hand basin\\r\\n\\r\\nDOWNSTAIRS\\r\\nSitting area: 3-seater sofa, 2 armchairs, side tables, bookcases, digital flat screen TV, HiFi\\r\\nDining area: table and seating for 4\\r\\nKitchen: oven and hob, microwave, large fridge/freezer, dishwasher\\r\\nBathroom 2: electric shower, toilet, hand basin\\r\\n\\r\\nOUTSIDE\\r\\nThe lawn to the front of the cottage looks out over the village, beach and sea and is shared with the neighbouring cottage. At the back, the kitchen gives onto a private secluded walled patio with a table and chairs. Outdoor cupboards house a washing machine with ample storage for buckets and spades, boogie boards etc.Â Parking for 1 car on the premises.\\r\\n\\r\\nKEY FACTS\\r\\n- Bed linen is provided\\r\\n- Please bring your own towels\\r\\n- Electric heating\\r\\n- Free WiFi\\r\\n- 1 well behaved dog welcome at no extra cost. Please enquire if you would like to bring more than 1 dog\\r\\n- No smoking\"\n            },\n            \"rules\": {\n                \"damage_deposits\": {\n                    \"required\": false,\n                    \"amount\": \"0.00\"\n                },\n                \"notice_prior_to_booking\": {\n                    \"hours\": 48\n                },\n                \"balance_due_prior_to_check_in\": {\n                    \"days\": 42\n                }\n            },\n            \"charges\": {\n                \"dogs\": [\n                    {\n                        \"id\": 52,\n                        \"name\": \"Dogs\",\n                        \"amount\": \"0.00\",\n                        \"charge_type\": \"flat\",\n                        \"quantity\": 1,\n                        \"max_qty\": 1\n                    }\n                ],\n                \"extras\": [\n                    {\n                        \"id\": 480,\n                        \"name\": \"Cot\",\n                        \"charge_type\": \"flat\",\n                        \"amount\": \"0.00\",\n                        \"quantity\": 1,\n                        \"max_qty\": 1\n                    }\n                ]\n            },\n            \"location\": {\n                \"display\": \"Llangrannog, Ceredigion\",\n                \"coordinates\": {\n                    \"latitude\": \"52.1588898\",\n                    \"longitude\": \"-4.4702849\"\n                },\n                \"address\": {\n                    \"county\": \"Ceredigion\",\n                    \"town\": \"Llangrannog\"\n                }\n            },\n            \"images\": [\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-110/bronwylfa.q6gru0.jpg\",\n                    \"main\": true,\n                    \"alt\": \"View of Bronwylfa with the sea beyond\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-110/dsc-2397.oguhbn.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Master bedroom with sea view\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-110/img-2469a.oguhb6.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Modern kitchen\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-110/dsc-2406.oguhau.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Living room with sea views\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-110/img-2479a.oguhcj.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Bathroom\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-110/bronwylfa-bedroom.q6nzs7.jpeg\",\n                    \"main\": false,\n                    \"alt\": \"Twin bedroom in Bronwylfa, beds, cabinet, lamp, chair, wardrobe and window\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-110/bronwylfa.q6grtq.jpg\",\n                    \"main\": false,\n                    \"alt\": \"View of Bronwylfa on the hillside taken from the beach\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-110/img-2464a.oguhcg.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Entrance hall to period cottage\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-110/bronwylfa.q6grtt.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Garden with outdoor table and chairs, sea view\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-110/bronwylfa.q6grtu.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Countryside view, field and trees\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-110/bronwylfa.q6grtx.jpg\",\n                    \"main\": false,\n                    \"alt\": \"View over beach and headland towards Bronwylfa\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-110/bronwylfa-coastline.q6grtv.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Ceredigion Coast\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/stock-2016-09/llangrannog-1JB.odleyi.jpg\",\n                    \"main\": false,\n                    \"alt\": \"View from high above Llangrannog beach with village and houses to left sea to the right\"\n                }\n            ],\n            \"features\": [\n                \"TV\",\n                \"Walkers\",\n                \"Views\",\n                \"WiFi\",\n                \"Beach within 1 mile\",\n                \"Beach 3\",\n                \"Golf Course\",\n                \"Riding Stable\",\n                \"Sea Views\",\n                \"Pub\",\n                \"Dishwasher\",\n                \"Washing Machine\",\n                \"Walking area\",\n                \"Romantic\",\n                \"Linen Provided\",\n                \"Shop within 1 mile\",\n                \"Coastal\",\n                \"Village\",\n                \"Affordable\",\n                \"Stunning Sea Views\",\n                \"Beach within 1 mile\",\n                \"Beach 3\",\n                \"Pub\",\n                \"Walking area\",\n                \"Shop within 1 mile\",\n                \"Coastal\",\n                \"Village\"\n            ],\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9786\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9786/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9786/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9786/reviews\"\n            }\n        },\n        {\n            \"id\": 9787,\n            \"name\": \"Rhyd y Brown Cottage\",\n            \"reference\": \"brown\",\n            \"slug\": \"rhyd-y-brown\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/rhyd-y-brown\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:45.000000Z\",\n                \"updated_at\": \"2025-07-12T23:06:02.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 2,\n                \"bedrooms\": 1,\n                \"bathrooms\": 1,\n                \"pets\": 2,\n                \"parking\": 2,\n                \"type\": \"Cottage\",\n                \"description\": \"Rhyd Y Brown Cottage is a charming, sweet stone barn set in the heart of rural Pembrokeshire. This single-storey converted stable is sympathetically furnished with painted stone walling, which adds to its charm. This cottage is the perfect escape for those seeking peace and tranquillity.\\r\\n\\r\\nIt is situated in a wooded valley adjacent Rhyd y Brown Farmhouse, listed also as a holiday let. Rhyd y Brown Cottage is approximately 20 minutes drive from the county town of Haverfordwest. Here, you will find an array of award-winning places to eat, shops, and family attractions, with the beautiful coastal villages of Broad Haven, Little Haven, and Nolton Haven slightly further away.\\r\\n\\r\\nFurther along the coast, you'll find Newgale, which has nearly two miles of sand backed by a huge pebble bank and is a popular place for kitesurfing and surfing, as well as the pretty village of Solva and Britain's smallest city, St Davids. Rhyd Y Brown Cottage is only five miles from the wonderful Llys y Fran Lake, where you can enjoy its visitor centre, cafe, cycle hub, mountain biking and walking trails, water and land activities, fishing, and adventure playground.\\r\\n\\r\\nOther more energetic pursuits, such as horse riding and river fishing, are all available in the area, as well as fun-filled activities for the whole family, including Folly Farm Adventure Park and Zoo and Wild Lakes Wales\\r\\n\\r\\nACCOMMODATION\\r\\nRhyd Y Brown sleeps 2 in 1 double bedroom. All the accommodation is on the ground floor, so may suit guests with restricted mobility\\r\\n\\r\\nBedroom: double bed, bedside tables, wardrobe, chest of drawers, chair\\r\\nShower room: shower, toilet, hand basin\\r\\n\\r\\nOpen plan area with: \\r\\nSitting area: sofa, 2 armchairs, digital TV, video player, video collection\\r\\nKitchen area: gas cooker, fridge/freezer, microwave\\r\\n\\r\\nOUTSIDE\\r\\nThe grounds around the cottage and Rhyd y Brown Farmhouse offer plenty of room for both properties to enjoy their own section of garden space, divided by shrubs for privacy. Garden table and chairs. Ample gravel parking to the front of the cottage - a car is essential at Rhyd Y Brown.\\r\\n\\r\\nKEY FACTS\\r\\n- Bed linen and towels provided. Please bring your own beach towels\\r\\n- Oil fired central heating\\r\\n- 2 well-behaved dogs welcome upon request. Please let us know if you're bringing a dog (or more) upon booking (more may be permitted by arrangement)\\r\\n- No smoking\"\n            },\n            \"rules\": {\n                \"damage_deposits\": {\n                    \"required\": false,\n                    \"amount\": \"0.00\"\n                },\n                \"notice_prior_to_booking\": {\n                    \"hours\": 24\n                },\n                \"balance_due_prior_to_check_in\": {\n                    \"days\": 42\n                }\n            },\n            \"charges\": {\n                \"dogs\": [\n                    {\n                        \"id\": 53,\n                        \"name\": \"Dogs\",\n                        \"amount\": \"0.00\",\n                        \"charge_type\": \"nightly\",\n                        \"quantity\": 1,\n                        \"max_qty\": 2\n                    }\n                ],\n                \"extras\": []\n            },\n            \"location\": {\n                \"display\": \"Llys Y Fran, Pembrokeshire\",\n                \"coordinates\": {\n                    \"latitude\": \"51.8657417\",\n                    \"longitude\": \"-4.8061771\"\n                },\n                \"address\": {\n                    \"county\": \"Pembrokeshire\",\n                    \"town\": \"Llys Y Fran\"\n                }\n            },\n            \"images\": [\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-111/rhyd-y-brown.pssbz9.jpg\",\n                    \"main\": true,\n                    \"alt\": \"Cottage with gravel patio area with small table and chairs, surrounding trees\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-111/rhyd-y-brown-bedroom.pssbz3.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Double bedroom with wardrobe, stone walls and wood panelled ceiling\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-111/rhyd-y-brown-living-area.pssbyk.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Dining area and kitchen, wood beamed ceiling, two windows\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-111/rhyd-y-brown-living-area.pssbyl.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Living area with sofa, armchair, stable door\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-111/rhyd-y-brown-living-area.pssbyv.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Living area with dining table and chairs, cooker, seating area\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-111/rhyd-y-brown-living-area.pssbys.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Living area with dining table and chairs, tv, sofa\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-111/rhyd-y-brown-shower-room.pssbyy.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Shower room\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-111/rhyd-y-brown.pssbzc.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Cottage with gravel patio area with small table and chairs, surrounding trees\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-111/sv200578.onok21.jpg\",\n                    \"main\": false,\n                    \"alt\": null\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-111/rhyd-y-brown.psscb2.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Cottage, driveway, gravel patio area with table and chairs\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-111/sv200582.onok6d.jpg\",\n                    \"main\": false,\n                    \"alt\": null\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/stock-2022-01/haverfordwest-riverside-gallery-5-.r58j3r.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Seating outside the Riverside Gallery, views across the rive\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/9787/AQVhQvMHY9LsnBAVrYZ7Bslx0ELshAubV4XiJvkz.jpg\",\n                    \"main\": false,\n                    \"alt\": null\n                }\n            ],\n            \"features\": [\n                \"Bike storage\",\n                \"TV\",\n                \"Walkers\",\n                \"Ground Floor Bedroom with bathroom\",\n                \"WiFi\",\n                \"Riding Stable\",\n                \"Remote\",\n                \"Secluded\",\n                \"Single Storey\",\n                \"Romantic\",\n                \"For Two\",\n                \"Detached\",\n                \"Countryside\",\n                \"Linen Provided\",\n                \"Towels Provided\",\n                \"Rural\",\n                \"Affordable\",\n                \"Dogs Go Free\",\n                \"Walking area\",\n                \"Countryside\"\n            ],\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9787\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9787/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9787/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9787/reviews\"\n            }\n        },\n        {\n            \"id\": 9814,\n            \"name\": \"Brynllin\",\n            \"reference\": \"brynllin\",\n            \"slug\": \"brynllin\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/brynllin\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:46.000000Z\",\n                \"updated_at\": \"2025-07-12T23:06:08.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 8,\n                \"bedrooms\": 5,\n                \"bathrooms\": 2,\n                \"pets\": 2,\n                \"parking\": 1,\n                \"type\": \"Cottage\",\n                \"description\": \"A renovated and extended traditional hillside stone cottage overlooking beautiful countryside just over a mile from Blue Flag beaches at Llangrannog. Ideal for extended families or two families wishing to holiday together, Brynllin is a comfortable, welcoming and spacious cottage with a large private south facing garden. There is a downstairs bedroom and shower room suitable for guests with restricted mobility.\\r\\n\\r\\nA short 800m walk will take you to the Ceredigion coastal path and spectacular clifftop views of the Cardigan Bay, perfect for keen walkers, dolphin spotters or strolls down to the beaches, pubs or cafes in Llangrannog.\\r\\n\\r\\nJust to the north is the spectacular Ynys Lochtyn, with the beaches of Penbryn, Tresaith and Mwnt a few miles to the south. Explore the other places on Cardigan Bay such as the colourful fishing village of New Quay, popular with all the family for its dolphin-spotting boat trips and activities such as sea kayaking and paddle boarding. (20 minutes), the picturesque Georgian harbour town of Aberaeron (20 minutes), Cardigan (25 minutes) and Aberystwyth (50 minutes). The house is on the Cardibach bus route.\\r\\n\\r\\nAs well as exploring Ceredigion, Pembrokeshire has much to offer with attractions such as Folly Farm, Heatherton, St Davids Cathedral and the medieval harbour town of Tenby.\\r\\n\\r\\nThe owners have approved a company from which guests may arrange to hire a hot tub if they wish. The charge is approximately Â£150 per week. Please contact the owner directly for more information.\\r\\n\\r\\nACCOMMODATION\\r\\nBrynllin sleeps 8 to 9 in 5 bedrooms (one on the ground floor):  1 super king, 1 double, 2 twin rooms and a futon in the cot room can sleep one additional child. Bedroom and shower room on the ground floor may suit guests with restricted mobility. Downstairs, slate floors warmed by underfloor heating\\r\\n\\r\\nFIRST FLOOR \\r\\nBedroom 1: super king size bed\\r\\nBedroom 2: twin bedroom\\r\\nBedroom 3: twin bedroom\\r\\nBedroom 4: futon for one extra guest\\r\\nBathroom: bath, toilet and basin\\r\\n\\r\\nGROUND FLOOR\\r\\nBedroom 5: double bed\\r\\nBathroom: large shower, bath, toilet and basin\\r\\n\\r\\nSpacious and open-plan living area with:\\r\\nSitting area: 2 large sofas, TV and DVD player, patio doors with views across the valley\\r\\nDining area: table seating 8\\r\\nKitchen area: oven, hob, microwave, fridge/freezer, dishwasher and washing machine\\r\\n\\r\\nOUTSIDE\\r\\nClose to the kitchen is a patio with a large round table, chairs and bench. The private garden benefits from a south-facing aspect, offering the first and last sunlight of the day to relax in after a day on the beach, with space for children to play. Off-road parking for 1 car is available and further space on the lane.\\r\\n\\r\\nKEY FACTS\\r\\n- Bed linen provided\\r\\n- Please bring your own towels\\r\\n- Travel cot and highchair available, please bring your own cot linen\\r\\n- Free unlimited WiFi\\r\\n- 2 well-behaved dogs welcome upon request. Please let us know if you're bringing a dog (or more) upon booking. \\r\\n- No smoking\\r\\n- Â£150 damages deposit required\"\n            },\n            \"rules\": {\n                \"damage_deposits\": {\n                    \"required\": true,\n                    \"amount\": \"150.00\"\n                },\n                \"notice_prior_to_booking\": {\n                    \"hours\": 48\n                },\n                \"balance_due_prior_to_check_in\": {\n                    \"days\": 42\n                }\n            },\n            \"charges\": {\n                \"dogs\": [\n                    {\n                        \"id\": 1836,\n                        \"name\": \"Dogs\",\n                        \"amount\": \"0.00\",\n                        \"charge_type\": \"flat\",\n                        \"quantity\": 1,\n                        \"max_qty\": 2\n                    }\n                ],\n                \"extras\": []\n            },\n            \"location\": {\n                \"display\": \"Llangrannog, Ceredigion\",\n                \"coordinates\": {\n                    \"latitude\": \"52.1617699\",\n                    \"longitude\": \"-4.4386644\"\n                },\n                \"address\": {\n                    \"county\": \"Ceredigion\",\n                    \"town\": \"Llangrannog\"\n                }\n            },\n            \"images\": [\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-138/p1020015a.ogufda.jpg\",\n                    \"main\": true,\n                    \"alt\": \"Brynllin\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-138/superking-size-bed-room-.ogufdh.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Bedroom with super king size bed\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-138/kitchena.ogufdt.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Kitchen\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-138/sitting-areaa.ogufde.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Sitting area\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-138/dining-areaa.ogufe6.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Dining area\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-138/upstairs-bathrooma.ogufdy.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Upstairs bathroom\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-138/downstairs-bathrooma.ogufej.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Ground floor bathroom\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-138/brynllin-bedroom.pruupw.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Bedroom with double bed\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-138/dsc03884a.ogufdp.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Twin bedroom\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-138/brynllin-hot-tub.rhwbce.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Hired hot tub on the patio under a gazebo\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-138/p1020012a.ogufea.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Large garden at Brynllin\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/stock-2021-12/llangrannog-image00010.r4iwfv.jpeg\",\n                    \"main\": false,\n                    \"alt\": \"View of Llangrannog's sandy beach, blue sky\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/stock-2021-12/llangrannog-3508524373-8343717f0f-o.flickr.r4iwfc.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Waves crashing on the beach at Llangrannog\"\n                }\n            ],\n            \"features\": [\n                \"TV\",\n                \"Enclosed Garden\",\n                \"Walkers\",\n                \"Views\",\n                \"Ground Floor Bedroom with bathroom\",\n                \"Hot Tub\",\n                \"WiFi\",\n                \"King-size bed\",\n                \"Beach within 1 mile\",\n                \"Beach 3\",\n                \"Golf Course\",\n                \"Secluded\",\n                \"Dishwasher\",\n                \"Washing Machine\",\n                \"Walking area\",\n                \"Character\",\n                \"Detached\",\n                \"Linen Provided\",\n                \"Travel cot\",\n                \"Coastal\",\n                \"Village\",\n                \"Dogs Go Free\",\n                \"Beach within 1 mile\",\n                \"Beach 3\",\n                \"Pub\",\n                \"Coastal\",\n                \"Village\"\n            ],\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9814\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9814/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9814/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9814/reviews\"\n            }\n        },\n        {\n            \"id\": 9818,\n            \"name\": \"Brynmeurig Stable\",\n            \"reference\": \"brynmeurig\",\n            \"slug\": \"brynmeurig-stable\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/brynmeurig-stable\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:46.000000Z\",\n                \"updated_at\": \"2025-06-20T14:51:08.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 5,\n                \"bedrooms\": 3,\n                \"bathrooms\": 1,\n                \"pets\": 1,\n                \"parking\": 3,\n                \"type\": \"House\",\n                \"description\": \"Brynmeurig Stable is a converted stone farm building with wooden beams and oak flooring, in a rural location with beautiful views. Situated 6 miles east of Aberystwyth, it is a great base for visiting this attractive part of Wales. Renovated to a high standard, Brynmeurig Stable is perfect for families, walkers, golfers, fishermen, bird watchers, photographers, cyclists and those who just want some peace. The area is ideal for those who are looking for an outdoor holiday.\\r\\n\\r\\nThe nearest beaches are only 5-6 miles away. Borth and stunning Ynyslas with its sand dunes on the Dyfi estuary are about 8 miles away and are ideal for walking, taking in the views and building sand castles.\\r\\n\\r\\nThere are miles of forestry walks, mountain bike tracks and lakes just up the road. Three miles away you can park and walk to the Nant yr Arian visitor centre to see dozens of red kites being fed every afternoon. There are so many red kites here it is almost impossible not to see one; they hover over the garden on their way to and from Nant yr Arian.\\r\\n\\r\\nOther local attractions include Devils Bridge Falls and Railway, Constitution Hill with its Cliff Railway and Camera Obscura, Borth and Ynyslas Golf Course, Capel Bangor Golf Course, The National Library of Wales, Pony Trekking, the Hafod Estate and sea fishing.\\r\\n\\r\\nThe local village with Post Office, petrol station and shop are only a mile away.\\r\\n\\r\\nFor those who like real food and real ale we are lucky to have both The Druid Inn and the Tynllidiart Arms just 10 minutes drive away. The Druid welcomes children and dogs; the Tynllidiart houses the UK's smallest brewery\\r\\n\\r\\nACCOMMODATION\\r\\nBrynmeurig Stable sleeps up to 5 adults and 1 child in 3 bedrooms: 1 king size, 1 double and 1 single plus 2â€™6â€\\u009d â€˜put-upâ€™ bed\\r\\n\\r\\nUPSTAIRS\\r\\nBedroom 1: single bed, 2â€™6â€\\u009d put up bed\\r\\nLiving room: two 2-seater sofas, 32â€\\u009d Panasonic LCD television with Freeview, DVD player, CD/radio, electric â€˜wood burnerâ€™ effect fire with realistic flames and smoke effect\\r\\nKitchen: dishwasher, freezer, fridge, microwave, hand-made units with oak doors, pine dining table seating 4-6\\r\\n\\r\\nDOWNSTAIRS\\r\\nBedroom 1: king size bed\\r\\nBedroom 2: double bed, bedside tables\\r\\nBathroom: shower, toilet, hand basin\\r\\n\\r\\nOUTSIDE\\r\\nEnclosed patio with chairs and table, lawned area with fruit trees and bushes, garden furniture and BBQ. Tranquil, private and fenced in, with a thick hedge between Brynmeurig and a lightly used lane. Shed for keeping bikes, golf clubs etc or the kids can use it as a den. Parking for up to 3 cars.\\r\\n\\r\\nKEY FACTS\\r\\n- Bed linen and towels provided. Please bring your own beach towels\\r\\n- Cot available. Please bring your own cot bedding\\r\\n- Central heating\\r\\n- Free WiFi\\r\\n- 1 large or 2 small well-behaved dogs welcome at no extra charge\\r\\n- No smoking\"\n            },\n            \"rules\": {\n                \"damage_deposits\": {\n                    \"required\": false,\n                    \"amount\": \"0.00\"\n                },\n                \"notice_prior_to_booking\": {\n                    \"hours\": 24\n                },\n                \"balance_due_prior_to_check_in\": {\n                    \"days\": 42\n                }\n            },\n            \"charges\": {\n                \"dogs\": [\n                    {\n                        \"id\": 69,\n                        \"name\": \"Dogs\",\n                        \"amount\": \"0.00\",\n                        \"charge_type\": \"flat\",\n                        \"quantity\": 1,\n                        \"max_qty\": 1\n                    }\n                ],\n                \"extras\": []\n            },\n            \"location\": {\n                \"display\": \"Aberystwyth, Ceredigion\",\n                \"coordinates\": {\n                    \"latitude\": \"52.4382553\",\n                    \"longitude\": \"-3.9627748\"\n                },\n                \"address\": {\n                    \"county\": \"Ceredigion\",\n                    \"town\": \"Aberystwyth\"\n                }\n            },\n            \"images\": [\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-142/brynmeurig-1b.odjge6.jpg\",\n                    \"main\": true,\n                    \"alt\": \"Brynmeurig Stable\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-142/brynmeurig-5b.odjge6.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Double bedroom\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-142/brynmeurig-2b.odjge6.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Kitchen with dining area\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-142/brynmeurig-7b.odjge6.jpg\",\n                    \"main\": false,\n                    \"alt\": \"First floor kitchen\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-142/brynmeurig-4b.odjge6.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Living area\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-142/brynmeurig-9b.odjge6.jpg\",\n                    \"main\": false,\n                    \"alt\": \"The rear of Brynmeurig Stable\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-142/brynmeurig-6b.odjge6.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Enclosed patio area\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-142/brynmeurig-12b.odjge6.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Welcome to Brynmeurig Stable\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-142/brynmeurig-10b.odjge6.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Relax and enjoy the patio\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-142/brynmeurig-8b.odjge6.jpg\",\n                    \"main\": false,\n                    \"alt\": \"The garden\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/stock-2016-09/devils-bridge-falls-1vw.odleox.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Dramatic waterfalls at Devils Bridge\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/stock-2016-09/rheidol-railway-1vw.jpg.odljoj.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Steam train in valley\"\n                }\n            ],\n            \"features\": [\n                \"Bike storage\",\n                \"Cot\",\n                \"TV\",\n                \"Enclosed Garden\",\n                \"Walkers\",\n                \"Views\",\n                \"Ground Floor Bedroom with bathroom\",\n                \"WiFi\",\n                \"King-size bed\",\n                \"Golf Course\",\n                \"Riding Stable\",\n                \"Dishwasher\",\n                \"Washing Machine\",\n                \"Mountain Biking\",\n                \"Walking area\",\n                \"Romantic\",\n                \"Countryside\",\n                \"Linen Provided\",\n                \"Towels Provided\",\n                \"Rural\",\n                \"Affordable\",\n                \"Dogs Go Free\",\n                \"Countryside\"\n            ],\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9818\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9818/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9818/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9818/reviews\"\n            }\n        },\n        {\n            \"id\": 9827,\n            \"name\": \"Brynhelyg View\",\n            \"reference\": \"brynview\",\n            \"slug\": \"brynhelyg-view\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/brynhelyg-view\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:46.000000Z\",\n                \"updated_at\": \"2025-06-19T08:33:57.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 4,\n                \"bedrooms\": 3,\n                \"bathrooms\": 1,\n                \"pets\": 1,\n                \"parking\": 1,\n                \"type\": \"House\",\n                \"description\": \"Brynhelyg View in the centre of the popular seaside village of Aberporth, Ceredigion is a comfortable apartment ideal for a beach holiday or as a base for a walking holiday, being close to the Ceredigion Coast Path. The apartment is spacious and bright; a great base for a family holiday and perfect to come home to after a day on the beach or exploring the nearby seaside villages. The conservatory is the perfect place to relax with a drink and take in the view toward the sea and Cardigan Bay and the courtyard seating area is ideal for al-fresco breakfasts and barbecues.\\r\\n\\r\\nBrynhelyg View is in the heart of the village with cafÃ©s, a pub, restaurants/takeaways, and a childrenâ€™s play area. There is a Spar for all the basics, Post Office, chemist, art gallery, and launderette all on the doorstep. Itâ€™s a five-minute walk to the beautiful sandy beaches of Aberporth. Both beaches are safe and perfect for swimming, water sports, or relaxing. The rocky headland and Ceredigion Coast Path are less than 100 meters away providing spectacular views and the opportunity for lovely walks and dolphin, seal, and seabird spotting.\\r\\n\\r\\nTresaith village and beach is a short walk along the coast and further north is the beautiful National Trust beach at Penbryn and the popular village of Llangrannog. The beach and pretty Eglwys Y Grog (Holy Cross Church) are nearby at Mwnt. The area has many family attractions and historical sites to suit all tastes and ages. The market town of Cardigan is a 15-minute drive, with a range of independent shops, galleries, a supermarket, theatre/cinema and a restored castle.\\r\\n\\r\\nACCOMMODATION\\r\\nBrynhelyg View sleeps a maximum of 4 guests in 3 bedrooms: 1 king size, 1 double and 1 set of bunk beds. The apartment is on the first floor so may not be suitable for anyone who prefers to avoid steps.\\r\\n\\r\\nBedroom 1: king size bed\\r\\nBedroom 2: bunk beds, built-in wardrobe and room for a travel cot\\r\\nBedroom 3: double bed with built-in wardrobe\\r\\nBathroom: bath, shower enclosure, toilet, hand basin, shaver point\\r\\n\\r\\nLiving room/dining area: 3-seater sofa, 2-seater sofa, Freeview TV, dining table seating 6, French doors to small conservatory with panoramic views of Aberporth and the headland\\r\\nKitchen: electric hob, electric oven, microwave, fridge freezer\\r\\n\\r\\nOUTSIDE\\r\\nPretty courtyard with flower beds, private decked area with a picnic table and a built-in barbeque. Please ensure children are supervised. Stairs to the apartment have a handrail. The apartment is accessed from the car park area and there is parking for 1 car.\\r\\n\\r\\nKEY FACTS\\r\\n- Bed linen and towels provided. Please bring your own beach towels\\r\\n- Travel cot and stairgate available. Please bring your own cot bedding\\r\\n- Oil central heating\\r\\n- Free WiFi\\r\\n- Ironing board and iron\\r\\n- Hairdryer\\r\\n- 1 dog allowed free of charge\\r\\n- No smoking\"\n            },\n            \"rules\": {\n                \"damage_deposits\": {\n                    \"required\": false,\n                    \"amount\": \"0.00\"\n                },\n                \"notice_prior_to_booking\": {\n                    \"hours\": 24\n                },\n                \"balance_due_prior_to_check_in\": {\n                    \"days\": 42\n                }\n            },\n            \"charges\": {\n                \"dogs\": [],\n                \"extras\": [\n                    {\n                        \"id\": 1104,\n                        \"name\": \"Highchair\",\n                        \"charge_type\": \"flat\",\n                        \"amount\": \"0.00\",\n                        \"quantity\": 1,\n                        \"max_qty\": 1\n                    }\n                ]\n            },\n            \"location\": {\n                \"display\": \"Aberporth, Ceredigion\",\n                \"coordinates\": {\n                    \"latitude\": \"52.1326752\",\n                    \"longitude\": \"-4.5418978\"\n                },\n                \"address\": {\n                    \"county\": \"Ceredigion\",\n                    \"town\": \"Aberporth\"\n                }\n            },\n            \"images\": [\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-151/view-from-brynhelyg-view.opdtjj.jpg\",\n                    \"main\": true,\n                    \"alt\": \"The view from the covered balcony\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-151/brynhelyg-view-king-size-bedroom.opdvap.jpg\",\n                    \"main\": false,\n                    \"alt\": \"king size bedroom with neutral decor and wooden and white furniture\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-151/brynhelyg-view-living-room.opdt8f.jpg\",\n                    \"main\": false,\n                    \"alt\": \"living room at Brynhelyg View with grey 3-seater sofa, a grey and brown smaller sofa\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-151/brynhelyg-view-dining-room.opdtae.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Dining area at Brynhelyg View with wood table and chairs for 6 and neutral decor\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-151/brynhelyg-view-bedroom.opduhn.jpg\",\n                    \"main\": false,\n                    \"alt\": \"bedroom at Brynhelyg View with white and purple bedding and wood furniture\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-151/brynhelyg-view-bunkbed-room.opdv4t.jpg\",\n                    \"main\": false,\n                    \"alt\": \"the bunk room at Brynhelyg View with a window at the end of the room\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-151/brynhelyg-view-kitchen.opdvhp.jpg\",\n                    \"main\": false,\n                    \"alt\": \"kitchen with tiled floor, wooden ceiling, wood cabinets, wall oven and grill, fridge and dishwasher\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-151/brynhelyg-view-bathroom.opduz4.jpg\",\n                    \"main\": false,\n                    \"alt\": \"bathroom at Brynhelyg View with bath, shower toilet and hand basin, blue walls with dark blue tiles\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-151/brynhelyg-view-shared-deck-area.pt93ws.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Patio and deck area with outdoor table and chairs, parasol\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-151/brynhelyg-view-shared-deck-area.pt93y4.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Patio and deck area with outdoor table and chairs, parasol\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/stock-2021-12/aberporth-5d3773c1c3-o.flickr.r4gyx0.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Sunset over the sea at Aberporth\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/stock-2016-09/aberporth-dyffryn-beach.odjs39.jpg\",\n                    \"main\": false,\n                    \"alt\": \"One of the sandy beaches at nearby Aberporth\"\n                }\n            ],\n            \"features\": [\n                \"Bike storage\",\n                \"Cot\",\n                \"TV\",\n                \"Walkers\",\n                \"WiFi\",\n                \"King-size bed\",\n                \"Beach within 1 mile\",\n                \"Beach 3\",\n                \"Sea Views\",\n                \"Pub\",\n                \"Walking area\",\n                \"Linen Provided\",\n                \"Towels Provided\",\n                \"Coastal\",\n                \"Village\",\n                \"Affordable\",\n                \"Dogs Go Free\",\n                \"Beach within 1 mile\",\n                \"Sea Views\",\n                \"Pub\",\n                \"Coastal\",\n                \"Village\"\n            ],\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9827\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9827/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9827/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9827/reviews\"\n            }\n        },\n        {\n            \"id\": 9829,\n            \"name\": \"Bryn Y Mor\",\n            \"reference\": \"brynymor\",\n            \"slug\": \"bryn-y-mor\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/bryn-y-mor\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:46.000000Z\",\n                \"updated_at\": \"2025-06-20T14:51:33.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 6,\n                \"bedrooms\": 3,\n                \"bathrooms\": 2,\n                \"pets\": 0,\n                \"parking\": 1,\n                \"type\": \"House\",\n                \"description\": \"Bryn Y Mor is a charming seaside cottage within 100 metres of the sandy beach in Llangrannog, a tranquil seaside village nestling in a steep-sided valley on the Ceredigion Heritage Coast. With the beach practically on the doorstep, it is perfect for a family seaside holiday or a great base for walkers with access to Ceredigion Coast Path direct from the beach.\\r\\n\\r\\nThe cottage is light and airy with modern facilities and character features. After a day exploring, swimming, or kayaking relax and watch the world go by or chat with the locals from the seating area to the front or chill out with a drink and a view of the sea from the Crows Nest patio. The cosy lounge with its wood burner makes this a great place to stay -Â  at any time of year.\\r\\n\\r\\nIt is just a very short walk to the village facilities including two beachside cafes, a pub, a fish and chip shop and a pizza takeaway.\\r\\n\\r\\nLlangrannogâ€™s main beach is ideal for bodyboarders and surfers and the second beach, accessible at low tide, is a delightful sandy cove. A short walk along the Ceredigion Coast Path to the North is the spectacular headland of Ynys Lochtyn, with the beaches of Penbryn and Tresaith a few miles to the South. Dolphins and seals can often be seen in the area.\\r\\n\\r\\nThere is something for everyone to do in the area including boat trips, garden visits, riding, golf, and fishing. There is a well-stocked supermarket/garage a short drive away and Cardigan (10 miles) has two supermarkets, a theatre/cinema, shops, galleries, and cafÃ©s. Further afield are other interesting places such as Tenby, Aberystwyth, Devilâ€™s Bridge, and the Preseli Hills.\\r\\n\\r\\nACCOMMODATION\\r\\nBryn Y Mor sleeps 6 in 3 bedrooms:1 king size, 1 double and one set of bunk beds\\r\\n\\r\\nSECOND FLOOR\\r\\nAttic bedroom: French renaissance king size bed, matching dressing table, chest of drawers, open beams\\r\\nEn suite shower room: power shower enclosure, toilet, hand basin\\r\\n\\r\\nUPSTAIRS\\r\\nBedroom 2: double bed\\r\\nBedroom 3: bunk beds Bathroom: large corner bath, walk-in shower enclosure, toilet, hand basin\\r\\n\\r\\nDOWNSTAIRS\\r\\nLiving room: wood burner, smart TV with surround sound system, two 3-seater leather sofas\\r\\nKitchen/diner: electric Aga, microwave/microwave oven, fridge, coffee machine, 2 modern bar stools, dining area seating 6\\r\\nUtility room: washer/dryer, fridge freezer\\r\\n\\r\\nOUTSIDE\\r\\nSecluded garden area to the rear, accessed from the back door on the first floor of the property. 2 patio levels: the first beautiful stone area is large enough for BBQing with table and lounging chairs. The second patio level is nestled into the side of the cliff, the Crows Nest is nicely sheltered providing a sun trap for leisurely sunbathing. The Crows Nest has two loungers and views across the bay. Washing line available. Room to sit at the front of the property and watch the world go by. Opposite the cottage is an open garage for general use. Parking for 1 car, public car park on the hill above the village.\\r\\n\\r\\nKEY FACTS\\r\\n- Bed linen and towels provided, please bring your own beach towels\\r\\n- Oil central heating\\r\\n- Free WiFi\\r\\n- Sorry, no dogs\\r\\n- No smoking\"\n            },\n            \"rules\": {\n                \"damage_deposits\": {\n                    \"required\": false,\n                    \"amount\": \"0.00\"\n                },\n                \"notice_prior_to_booking\": {\n                    \"hours\": 12\n                },\n                \"balance_due_prior_to_check_in\": {\n                    \"days\": 42\n                }\n            },\n            \"charges\": {\n                \"dogs\": [],\n                \"extras\": []\n            },\n            \"location\": {\n                \"display\": \"Llangrannog, Ceredigion\",\n                \"coordinates\": {\n                    \"latitude\": \"52.159729\",\n                    \"longitude\": \"-4.4699149\"\n                },\n                \"address\": {\n                    \"county\": \"Ceredigion\",\n                    \"town\": \"Llangrannog\"\n                }\n            },\n            \"images\": [\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-153/brynymor.rko9lr.jpg\",\n                    \"main\": true,\n                    \"alt\": \"Front of the cottage painted in cream with a blue door and gate\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-153/bryn-y-mor-bedroom.rkipai.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Bedroom with king size bed, chest of drawers, lamp, window and velux window\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-153/bryn-y-mor-kitchen.rkipad.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Kitchen with range cooker, breakfast bar\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/9829/vLdGlRRC0838mYqTvW9ooh3wC6n8tjQ5aWyc9Xoi.jpg\",\n                    \"main\": false,\n                    \"alt\": \"lounge area with 3 seater sofa and 2 seater sofa with coffee table , tv unit and tv, log burner\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-153/bryn-y-mor-kitchen-diner.rkipa7.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Kitchen and dining area, sink, table and chairs, bench\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-153/bryn-y-mor-lounge-area.rq2ofs.jpeg\",\n                    \"main\": false,\n                    \"alt\": \"two seater sofa which backs on to the kitchen, wall unit with shelves of books. wall art on wall\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-153/bryn-y-mor-lounge.rq2ofv.jpeg\",\n                    \"main\": false,\n                    \"alt\": \"two seater yellow velvet sofa back onto kitchen with cushions and throw\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-153/bryn-y-mor-bathroom.rkipa0.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Bathroom with shower, toilet and sink\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-153/bryn-y-mor-bathroom.rkipa7.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Bathroom with shower, corner bath, wash basin and toilet\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-153/bryn-y-mor-bunk-bedroom.rkipa0.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Bedroom with bunk beds, chest of drawers, window\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-153/bryn-y-mor-photo.rq2ofq.jpeg\",\n                    \"main\": false,\n                    \"alt\": \"wall art photo of llangrannog on slats of wood on wall in cottage\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-153/bryn-y-mor-terrace.rkipah.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Terrace patio area with outdoor table and chairs, view of the sea\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-153/bryn-y-mor-view.ogueyx.jpg\",\n                    \"main\": false,\n                    \"alt\": \"View from garden down to the village and the sea\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/stock-2016-09/llangrannog-27JBAXa.odlf5l.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Llangrannog beach from the cliff path, sandy beach and village\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/9829/WetrAOeWvHEp2t8xBljkVbXZyOyJiMoMczZqESXc.jpg\",\n                    \"main\": false,\n                    \"alt\": null\n                }\n            ],\n            \"features\": [\n                \"TV\",\n                \"Enclosed Garden\",\n                \"Walkers\",\n                \"WiFi\",\n                \"King-size bed\",\n                \"Beach within 1 mile\",\n                \"Beach 3\",\n                \"Golf Course\",\n                \"Riding Stable\",\n                \"Pub\",\n                \"Woodburner\",\n                \"Washing Machine\",\n                \"Tumble Dryer\",\n                \"Mountain Biking\",\n                \"Walking area\",\n                \"Linen Provided\",\n                \"Towels Provided\",\n                \"Shop within 1 mile\",\n                \"Coastal\",\n                \"Village\",\n                \"Beach within 1 mile\",\n                \"Beach 3\",\n                \"Pub\",\n                \"Shop within 1 mile\",\n                \"Coastal\",\n                \"Village\"\n            ],\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9829\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9829/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9829/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9829/reviews\"\n            }\n        },\n        {\n            \"id\": 9831,\n            \"name\": \"Lower Bubbleton\",\n            \"reference\": \"bubbleton\",\n            \"slug\": \"bubbleton\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/bubbleton\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:46.000000Z\",\n                \"updated_at\": \"2025-07-12T23:05:58.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 5,\n                \"bedrooms\": 2,\n                \"bathrooms\": 2,\n                \"pets\": 2,\n                \"parking\": 4,\n                \"type\": \"Cottage\",\n                \"description\": \"A beautifully restored â€˜Pembrokeshire longhouseâ€™ cottage in the hamlet of Bubbleton, just 2 miles from Tenby and connected to the Pembrokeshire Coast path (5 min walk). The luxury cottage comprises 2 bedrooms (1 en-suite), 2 bathrooms, a spacious kitchen with modern electric Aga and granite worktops, and an open plan layout. The â€˜snugâ€™ features a log burner, board games, and Freeview TV.\\r\\n\\r\\nThe cottage overlooks an enclosed garden with views of the rolling hills above. Bubbleton offers walks along the coast path to beaches like Lydstep and Penally. A short drive/walk leads to the picturesque village of Manorbier and the Harbor town of Tenby, making it ideal for a walking holiday. Additionally, there is a Farm Shop with a cafÃ© selling local and craft produce within a short walk from the hamlet.\\r\\n\\r\\nThe fully restored cottage combines traditional appearance with modern luxuries, including underfloor heating and WiFi. It is perfect for families as it offers plenty of space for children to enjoy the surroundings while adults relax.\\r\\n\\r\\nACCOMMODATION\\r\\nLower Bubbleton can accommodate 5 guests in 2 bedrooms: 2 king-size beds and one single bed. Please note that the cottage is on 3 levels and not suitable for visitors with restricted mobility.\\r\\n\\r\\nUPSTAIRS\\r\\n- Bedroom 1: king-size bed with stunning views of the hills\\r\\n- En-suite shower room: shower, toilet, hand basin, heated towel rail\\r\\n\\r\\nDOWNSTAIRS\\r\\n- Bedroom 2: king-size bed, single bed\\r\\n- Bathroom: bath, toilet, hand basin\\r\\n- Living room: 3-seater sofa, 2-seater sofa, 32â€\\u009d Freeview TV, log burner\\r\\n- Kitchen: AGA range cooker, gas hob, electric oven, microwave, fridge/freezer, dishwasher, washing machine\\r\\n- Dining room: table seating 6, countryside views, bi-fold doors opening onto patio\\r\\n\\r\\nOUTSIDE\\r\\n- Large enclosed front garden with furnished patio, fire pit, and level lawn\\r\\n- Ground-level trampoline (children supervision required)\\r\\n- Driveway parking for 4 cars\\r\\n\\r\\nKEY FACTS\\r\\n- Bed linen and towels provided (beach towels not included)\\r\\n- Travel cot, highchair available (cot bedding not provided)\\r\\n- Gas central heating\\r\\n- First basket of logs provided (more available locally)\\r\\n- Free WiFi\\r\\n- 2 well-behaved dogs welcome upon request. Please let us know if you're bringing a dog (or more) upon booking. \\r\\n- No smoking\"\n            },\n            \"rules\": {\n                \"damage_deposits\": {\n                    \"required\": false,\n                    \"amount\": \"0.00\"\n                },\n                \"notice_prior_to_booking\": {\n                    \"hours\": 12\n                },\n                \"balance_due_prior_to_check_in\": {\n                    \"days\": 42\n                }\n            },\n            \"charges\": {\n                \"dogs\": [\n                    {\n                        \"id\": 1349,\n                        \"name\": \"Dogs\",\n                        \"amount\": \"0.00\",\n                        \"charge_type\": \"flat\",\n                        \"quantity\": 1,\n                        \"max_qty\": 2\n                    }\n                ],\n                \"extras\": []\n            },\n            \"location\": {\n                \"display\": \"Tenby, Pembrokeshire\",\n                \"coordinates\": {\n                    \"latitude\": \"51.6579323\",\n                    \"longitude\": \"-4.7508435\"\n                },\n                \"address\": {\n                    \"county\": \"Pembrokeshire\",\n                    \"town\": \"Tenby\"\n                }\n            },\n            \"images\": [\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-155/bubbleton.rdh34w.jpg\",\n                    \"main\": true,\n                    \"alt\": \"Outside Bubbleton\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-155/bubbleton-kingsize-bedroom.rdh33n.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Kingsize bedroom with floral bed spread and dark blue towels\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-155/bubbleton-kingsize-bedroom.rdh33j.jpg\",\n                    \"main\": false,\n                    \"alt\": \"King size bedroom with chest of drawers and dressing table and chair\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-155/bubbleton-ensuite.rdh33r.jpg\",\n                    \"main\": false,\n                    \"alt\": \"En suite shower room with WV, wash hand basin, shower cubicle and heated towel rail\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-155/bubbleton-kitchen.rdh33y.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Kitchen with island unit with a vase of flower so top\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-155/bubbleton-kitchen.rdh33x.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Cream Aga with brown and cream tile splash back\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-155/bubbleton-kitchen.rdh34e.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Large bi-fold doors leading from kitchen to patio area\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-155/lower-bubbleton-kitchen.pocqya.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Kitchen in Lower Bubbleton with central island, units, dining table and chairs\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-155/bubbleton-living.rdh34m.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Log burner with basket of logs\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-155/bubbleton-living.rdh34k.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Cream sofa with blue cushions, large beige rug\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-155/bubbleton-bedroom.rdh33p.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Double bed and single bed with bedside tables and lamps\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-155/bubbleton-kitchen.rdh34c.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Dining table with six chairs, side table and lamp\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-155/bubbleton-hallway.rdh33u.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Hallway leading to stairs to the first floor bedrooms\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-155/bubbleton-bathroom.rdh33d.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Bathroom with WC, wash hand basin with mirror over\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-155/bubbleton-bathroom.rdh33g.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Family bathroom with bath, WC, wash hand basin and full length mirror\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-155/bubbleton-outside-seating.rdh34t.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Patio table, chairs and sofa\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-155/bubbleton-outside-firepit.rdh34o.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Firepit and table and chairs\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-155/bubbleton-garden.puh2ap.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Patio with outdoor armchairs, garden, countryside view\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-155/bubbleton-outside-rear.rdh34r.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Large gravelled outside\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-155/lower-bubbleton-exterior.pocqz5.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Garden at Lower Bubbleton with swing and slide, lawns and trampoline\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-155/bubbleton.puh2al.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Lawn with outdoor table and chairs, entrance to cottage\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-155/lower-bubbleton-exterior.pocqyn.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Lower Bubbleton viewed from the garden, lawn with ground level trampoline\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/stock-2016-10/Tenby harbour.oeizvd.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Tenby harbour from a distance looking down with sea and beach and houses\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/stock-2016-11/tenby-north-beach-1jb.ogdpr2.jpg\",\n                    \"main\": false,\n                    \"alt\": \"View across North beach with sea on the right, rocks on the left and blue sky\"\n                }\n            ],\n            \"features\": [\n                \"TV\",\n                \"Enclosed Garden\",\n                \"Walkers\",\n                \"Views\",\n                \"Ground Floor Bedroom with bathroom\",\n                \"WiFi\",\n                \"King-size bed\",\n                \"Beach within 1 mile\",\n                \"Beach 3\",\n                \"Riding Stable\",\n                \"On a Farm\",\n                \"Pub\",\n                \"Woodburner\",\n                \"Dishwasher\",\n                \"Washing Machine\",\n                \"Walking area\",\n                \"Character\",\n                \"Luxury\",\n                \"Detached\",\n                \"Countryside\",\n                \"Linen Provided\",\n                \"Towels Provided\",\n                \"Travel cot\",\n                \"Coastal\",\n                \"Village\",\n                \"Dogs Go Free\",\n                \"Beach within 1 mile\",\n                \"Beach 3\",\n                \"Pub\",\n                \"Walking area\",\n                \"Countryside\",\n                \"Coastal\",\n                \"Village\"\n            ],\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9831\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9831/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9831/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9831/reviews\"\n            }\n        },\n        {\n            \"id\": 9834,\n            \"name\": \"Brynhelyg Cottage\",\n            \"reference\": \"bwthyn\",\n            \"slug\": \"brynhelyg-cottage\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/brynhelyg-cottage\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:47.000000Z\",\n                \"updated_at\": \"2025-06-20T14:52:11.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 3,\n                \"bedrooms\": 2,\n                \"bathrooms\": 1,\n                \"pets\": 2,\n                \"parking\": 1,\n                \"type\": \"House\",\n                \"description\": \"Brynhelyg Cottage is a cosy cottage just a five-minute walk to the beautiful dog-friendly sandy beaches of Aberporth, Ceredigion. The cottage is perfect for a family looking for a seaside holiday or for walkers who can access the Ceredigion Coast Path less than 100 metres from the door. The ground floor accommodation provides comfortable open-plan living and the courtyard dining area and barbecue is a great place to come back to after a day on the beach or exploring the area.\\r\\n\\r\\nBrynhelyg Cottage is in the heart of Aberporth village which has a couple of cafÃ©s, a pub, and takeaways. There is a small supermarket selling all the basics, an art gallery, a Post Office, a chemist, and a launderette all within a few minutesâ€™ walk.\\r\\n\\r\\nBoth beaches are safe and perfect for swimming, water sports or relaxing. Ceredigion Coast Path has spectacular scenery and the opportunity for long walks and dolphin spotting. Tresaith village and beach to the north is a short walk along the coast and further along is the National Trust beach at Penbryn and the popular village and beaches of Llangrannog.\\r\\n\\r\\nThe seaside village of New Quay from where you can take a dolphin spotting boat trip is a short drive away. The traditional Welsh church and beautiful beach at Mwnt are close by. The area has many historical sites and family attractions so something for everyone. The market town of Cardigan is a 15-minute drive, with a range of independent shops, pubs, restaurants, a theatre/cinema, and a castle.\\r\\n\\r\\nACCOMMODATION\\r\\nBrynhelyg Cottage sleeps 3 in 2 bedrooms: 1 double and 1 single. All the accommodation is on the ground floor so may suit guests with restricted mobility\\r\\n\\r\\nBedroom 1: double bed, built-in wardrobe\\r\\nBedroom 2: single bed, built-in wardrobe\\r\\nBathroom: bath with shower over, toilet, hand basin, shaver point\\r\\nLiving/dining area: 2-seater sofa, armchair, Sky/Freeview TV, electric fire, dining table and seating for 3 Kitchen: electric hob, electric oven, microwave, fridge, dishwasher, good selection of kitchen utensils and implements\\r\\n\\r\\nOUTSIDE\\r\\nPretty, small courtyard with flowerbeds, a decked area with a brick-built BBQ. Please ensure children are supervised. Enclosed area for dogs. Level driveway parking for 1 car to the side of the cottage.\\r\\n\\r\\nKEY FACTS\\r\\n- Bed linen and towels provided. Please bring your own beach towels\\r\\n- Travel cot and stairgate available. Please bring your own cot bedding\\r\\n- Oil central heating\\r\\n- Free WiFi\\r\\n- Ironing board and iron\\r\\n- Hairdryer\\r\\n- Two well behaved dogs welcome free of charge\\r\\n- No smoking\"\n            },\n            \"rules\": {\n                \"damage_deposits\": {\n                    \"required\": false,\n                    \"amount\": \"0.00\"\n                },\n                \"notice_prior_to_booking\": {\n                    \"hours\": 12\n                },\n                \"balance_due_prior_to_check_in\": {\n                    \"days\": 42\n                }\n            },\n            \"charges\": {\n                \"dogs\": [\n                    {\n                        \"id\": 1398,\n                        \"name\": \"Dogs\",\n                        \"amount\": \"0.00\",\n                        \"charge_type\": \"flat\",\n                        \"quantity\": 1,\n                        \"max_qty\": 2\n                    }\n                ],\n                \"extras\": []\n            },\n            \"location\": {\n                \"display\": \"Aberporth, Ceredigion\",\n                \"coordinates\": {\n                    \"latitude\": \"52.1325912\",\n                    \"longitude\": \"-4.5422459\"\n                },\n                \"address\": {\n                    \"county\": \"Ceredigion\",\n                    \"town\": \"Aberporth\"\n                }\n            },\n            \"images\": [\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-158/brynhelyg-cottage-exterior.qbepb3.jpg\",\n                    \"main\": true,\n                    \"alt\": \"Outside of Brynhelyg Cottage, entrance door, patio\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-158/brynhelyg-cottage-bedroom.opdops.jpg\",\n                    \"main\": false,\n                    \"alt\": \"double bedroom with neutral decor and wood furniture\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-158/brynhelyg-cottage-kitchen.opdrd7.jpg\",\n                    \"main\": false,\n                    \"alt\": \"the kitchen at Brynhelyg Cottage with wooden cabinets, tiled floor and dining area\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-158/brynhelyg-cottage-sitting-area.opdp42.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Light open plan living space with sitting area and kitchen at Brynhelyg Cottage\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-158/brynhelyg-cottage-living-room.opdrgm.jpg\",\n                    \"main\": false,\n                    \"alt\": \"the other side of the sitting area at Brynhelyg Cottage towards two doorways\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-158/brynhelyg-cottage-open-plan-living-space.opdr74.jpg\",\n                    \"main\": false,\n                    \"alt\": \"sitting area at Brynhelyg Cottage with red and black furniture and wooden beams\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-158/brynhelyg-cottage-bathroom.opdqrz.jpg\",\n                    \"main\": false,\n                    \"alt\": \"bathroom with corner bath with shower over, toilet, basin and black and white tiles\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-158/brynhelyg-cottage-single-bedroom.opdoaw.jpg\",\n                    \"main\": false,\n                    \"alt\": \"single bedroom at Brynhelyg Cottage with neutral decor and pine furniture\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-158/brynhelyg-cottage-shared-deck-area.qbepac.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Shared deck area with table and chairs, bbq\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-158/brynhelyg-cottage-patio.qbtf75.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Patio with table, chairs, barbecue and lights\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-158/brynhelyg-cottage-shared-deck-area.qbepb3.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Shared deck area with table and chairs, bbq\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-158/brynhelyg-cottage-shared-deck-area.qbep9l.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Shared deck area with table and chairs, bbq\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-158/brynhelyg-cottage-shared-deck-area.qazw26.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Private deck area with table and chairs, bbq\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/stock-2021-12/aberporth-o.flickr.r4gywy.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Waves breaking on rocks at Aberporth with the headland in the background\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/stock-2016-09/tresaith-beach-jb.odlols.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Tresaith sandy beach with sea and rocky headlands beyond\"\n                }\n            ],\n            \"features\": [\n                \"Bike storage\",\n                \"Cot\",\n                \"TV\",\n                \"Walkers\",\n                \"Ground Floor Bedroom with bathroom\",\n                \"WiFi\",\n                \"Beach within 1 mile\",\n                \"Beach 3\",\n                \"Single Storey\",\n                \"Pub\",\n                \"Dishwasher\",\n                \"Walking area\",\n                \"Romantic\",\n                \"For Two\",\n                \"Detached\",\n                \"Linen Provided\",\n                \"Towels Provided\",\n                \"Coastal\",\n                \"Village\",\n                \"Affordable\",\n                \"Dogs Go Free\",\n                \"Beach within 1 mile\",\n                \"Pub\",\n                \"Coastal\",\n                \"Village\"\n            ],\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9834\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9834/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9834/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9834/reviews\"\n            }\n        },\n        {\n            \"id\": 9835,\n            \"name\": \"Caban Tawel\",\n            \"reference\": \"caban\",\n            \"slug\": \"caban-tawel\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/caban-tawel\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:47.000000Z\",\n                \"updated_at\": \"2025-06-20T14:52:27.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 6,\n                \"bedrooms\": 3,\n                \"bathrooms\": 2,\n                \"pets\": 4,\n                \"parking\": 3,\n                \"type\": \"Lodge\",\n                \"description\": \"Caban Tawel means peaceful cabin â€“ a perfect description for this property built of Finnish pine. Caban Tawel is situated in its own grounds on Newton East Farm near the village of Wolfscastle, in the heart of rural Pembrokeshire, approximately 7 miles from Haverfordwest. In an idyllic setting, the farm has over 14 acres of woodland as well as hay meadows, wetlands, ponds and the Western Cleddau forms part of the boundary. The garden is enclosed for dogs and there are walks from the cabin through the pretty woodland.\\r\\n\\r\\nThere are lots of activities nearby including coarse and sea fishing, golf and horse riding, and it is just a short drive to the coast to relax on the beaches or walk part of the Coast Path.\\r\\n\\r\\nThe floors throughout are bare wood with rugs in the living area, hallways and bedrooms. The floors in the bathroom and kitchen have non-slip floor coverings. Caban Tawel is well insulated throughout and provides a cosy place to stay in winter and a light, cool and airy place to stay in summer.\\r\\n\\r\\nThis is an ideal base for a holiday in Pembrokeshire, whether you are a walker, angler, wildlife enthusiast or someone who simply wishes to relax on the beach. There is no washing machine but a laundry service can be provided. The owners will provide essentials such as tea, coffee and milk on your arrival.\\r\\n\\r\\nACCOMMODATION\\r\\nCaban Tawel sleeps 5 adults and 1 child in 3 bedrooms: 2 doubles and 1 bunk room (upper bunk only suitable for children aged 6 to 16 years old)\\r\\n\\r\\nBedroom 1: double bed, bedside tables\\r\\nEn suite: shower cubicle, wash basin, toilet\\r\\nBedroom 2: double bed, bed side tables\\r\\nBedroom 3: bunk beds (the lower bunk bed can accommodate an adult but the upper bunk is only suitable for children aged from 6 to 16 years old)\\r\\nFamily bathroom: shower over full size bath, wash basin, toilet\\r\\n\\r\\nOpen plan area with...\\r\\nSitting area: two 2-seater sofas, chairs, TV/DVD, CD stereo player, selection of family games, patio doors onto large covered veranda with views of the Preseli Hills\\r\\nKitchen area: full size cooker with grill, fridge-freezer, microwave\\r\\nDining area: extending pine table with 6 chairs\\r\\n\\r\\nOUTSIDE\\r\\nA large picnic bench is provided. Covered veranda with small table and chairs for use throughout the year. Small mixed shrub border in front of the veranda, large grassy area and ample parking in front of Caban Tawel.\\r\\n\\r\\nKEY FACTS\\r\\n- Bed linen and towels provided. Please bring your own beach towels\\r\\n- Travel cot and highchair available. Please bring your own cot bedding\\r\\n- Oil-fired central heating\\r\\n- Welcome pack on arrival such as tea, coffee and milk\\r\\n- 4 well-behaved dogs welcome at no extra cost\\r\\n- Free WiFi\\r\\n- No smoking\\r\\n- Please note: When booking Caban Tawel, the person making the booking must be over 21 years old. That person must be in charge of the party and must be present during the stay.\"\n            },\n            \"rules\": {\n                \"damage_deposits\": {\n                    \"required\": false,\n                    \"amount\": \"0.00\"\n                },\n                \"notice_prior_to_booking\": {\n                    \"hours\": 48\n                },\n                \"balance_due_prior_to_check_in\": {\n                    \"days\": 42\n                }\n            },\n            \"charges\": {\n                \"dogs\": [\n                    {\n                        \"id\": 77,\n                        \"name\": \"Dogs\",\n                        \"amount\": \"0.00\",\n                        \"charge_type\": \"flat\",\n                        \"quantity\": 1,\n                        \"max_qty\": 4\n                    }\n                ],\n                \"extras\": [\n                    {\n                        \"id\": 492,\n                        \"name\": \"Travel cot\",\n                        \"charge_type\": \"flat\",\n                        \"amount\": \"0.00\",\n                        \"quantity\": 1,\n                        \"max_qty\": 1\n                    },\n                    {\n                        \"id\": 493,\n                        \"name\": \"Highchair\",\n                        \"charge_type\": \"flat\",\n                        \"amount\": \"0.00\",\n                        \"quantity\": 1,\n                        \"max_qty\": 1\n                    }\n                ]\n            },\n            \"location\": {\n                \"display\": \"Fishguard, Pembrokeshire\",\n                \"coordinates\": {\n                    \"latitude\": \"51.901741\",\n                    \"longitude\": \"-5.005034\"\n                },\n                \"address\": {\n                    \"county\": \"Pembrokeshire\",\n                    \"town\": \"Fishguard\"\n                }\n            },\n            \"images\": [\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-159/caban-tawel.ppui5x.jpg\",\n                    \"main\": true,\n                    \"alt\": \"Outside view of Caban Tawel with lawn and picnic bench\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-159/ensuite-bedroom.ra824e.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Double bedroom with wardrobe and door leading to en-suite\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-159/kitchen-2.ra824p.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Microwave ovem, electric oven and hob and kettle\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-159/french-doors.ra824i.jpg\",\n                    \"main\": false,\n                    \"alt\": \"French doors leading to veranda\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-159/open-plan-living-and-diving.ra825k.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Two red two seater sofas and a large rug\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-159/living-room.ra825e.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Two red sofas, nest of coffee table sand wicker chair\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-159/living-room-2.ra825k.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Views from the lounge area\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-159/ensuite-bedroom-2.ra8248.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Double bedroom with mirror on the wall\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-159/double-bedroom.ra8242.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Double bedroom with bedside table and radiator\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-159/bunk-bedroom.ra823w.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Bunk beds and chest of drawers\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-159/kitchen.ra824m.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Wall and base cupboards with electric oven and hob, fridge freezer and table and six chairs\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-159/bathroom.ritrr9.jpg\",\n                    \"main\": false,\n                    \"alt\": \"bath sink and toilet in bathroom\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-159/ensuite-bathroom.ra8243.jpg\",\n                    \"main\": false,\n                    \"alt\": \"En-suite with shower cubicle, wash hand basin, WC  and wall mounted cupboard with mirror\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-159/bathroom.ra823z.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Family bathroom with WC, wash hand basin, bath with shower over\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-159/caban-tawel-bathroom.rluvqj.jpg\",\n                    \"main\": false,\n                    \"alt\": \"hand basin, toilet , bath with glass shower door\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-159/ensuite-bathroom.rluvqm.jpg\",\n                    \"main\": false,\n                    \"alt\": \"En-suite with shower cubicle, wash hand basin, WC  and wall mounted cupboard with mirror\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-159/veranda.ra825o.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Veranda with table laid for tea and chairs\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-159/caban-tawel.ppui5t.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Outside view of Caban Tawel with lawn, picnic bench, gravel area\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-159/caban-tawel.ppui61.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Caban Tawel outside area and verandah\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/stock-2022-01/haverfordwest-riverside-gallery-5-.r58j3r.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Seating outside the Riverside Gallery, views across the rive\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/stock-2016-11/newgale-1wwhc.og6d49.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Very long stretch of sand at Newgale beach with dunes and cliffs on right sea on left\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/stock-2022-01/st-davids-4041250.pb.r5apyg.jpg\",\n                    \"main\": false,\n                    \"alt\": \"St Davids Cathedral\"\n                }\n            ],\n            \"features\": [\n                \"Cot\",\n                \"TV\",\n                \"Enclosed Garden\",\n                \"Walkers\",\n                \"Ground Floor Bedroom with bathroom\",\n                \"WiFi\",\n                \"On a Farm\",\n                \"Secluded\",\n                \"Single Storey\",\n                \"Walking area\",\n                \"Glamping\",\n                \"Detached\",\n                \"Countryside\",\n                \"Linen Provided\",\n                \"Towels Provided\",\n                \"Rural\",\n                \"Affordable\",\n                \"Dogs Go Free\",\n                \"Walking area\",\n                \"Countryside\"\n            ],\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9835\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9835/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9835/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9835/reviews\"\n            }\n        },\n        {\n            \"id\": 9844,\n            \"name\": \"Caerhafod\",\n            \"reference\": \"caerhafod\",\n            \"slug\": \"caerhafod\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/caerhafod\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:47.000000Z\",\n                \"updated_at\": \"2025-07-12T23:05:51.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 6,\n                \"bedrooms\": 3,\n                \"bathrooms\": 1,\n                \"pets\": 2,\n                \"parking\": 3,\n                \"type\": \"Cottage\",\n                \"description\": \"Caerhafod, a refurbished bungalow in Caerwedros, is set in the beautiful West Wales countryside within walking distance of the Ceredigion Heritage Coast. Two miles away is the secluded 18th Century smugglers cove of Cwmtydu, where you may spot some Atlantic grey seals, or just sit back and enjoy the scenery. The sunny conservatory is a great place to read and relax\\r\\n\\r\\nThe cottage is 3.5 miles from New Quay with its sandy beaches, shops, and picturesque harbour. It is also less than 5 miles from Llangrannog, another popular village with sandy beaches. Closer to home, you can reach the sea by taking some lovely footpaths through the woods of Cwm Soden, following the river down the Tydu valley as it goes out to sea. This leads you on to the private inlets and beaches of Castell Bach and Cwmsilio. These walks are a must if you visit the area.\\r\\n\\r\\nFurther afield the Georgian town of Aberaeron is a 15-minute drive away. Cardigan town is less than 30 minutes away and the main commercial centres of Aberystwyth and Carmarthen are 45 minutes away. Local shops and businesses can provide most of the requirements for an enjoyable holiday, including freshly laid farm eggs and seasonal vegetables.\\r\\n\\r\\nACCOMMODATION\\r\\nCaerhafod sleeps 6 in 3 bedrooms: 1 double, 1 twin and 1 bunk bed. There is also a double sofa bed in the conservatory which can accommodate an additional 2 guests on request. All the accommodation is on the ground floor so may suit guests with restricted mobility\\r\\n\\r\\nBedroom 1: double bed, bedside tables, fitted wardrobe\\r\\nBedroom 2: twin beds, bedside tables, chair, fitted wardrobe\\r\\nBedroom 3: bunk beds, chest of drawers\\r\\nBathroom: double shower, toilet, hand basin, heated towel rail\\r\\n\\r\\nLiving room: two-seater sofas, digital TV with DVD player, electric fire, coffee tables\\r\\nKitchen: well-equipped with electric cooker, fridge, microwave, dishwasher, freezer, dining table seating 8/9\\r\\nUtility room: washing machine, tumble dryer\\r\\nConservatory: double sofa bed, table and 4 chairs\\r\\n\\r\\nOUTSIDE\\r\\nPaved area to the front and at the rear another secure paved area with garden table and seating, BBQ and washing line. Off-road parking for 3 cars.\\r\\n\\r\\nKEY FACTS\\r\\n- Bed linen and tea towels provided\\r\\n- Please bring your own towels\\r\\n- Free WiFi\\r\\n- 2 well-behaved dogs welcome upon request. Please let us know if you're bringing a dog (or more) upon booking. \\r\\n- No smoking\"\n            },\n            \"rules\": {\n                \"damage_deposits\": {\n                    \"required\": false,\n                    \"amount\": \"0.00\"\n                },\n                \"notice_prior_to_booking\": {\n                    \"hours\": 12\n                },\n                \"balance_due_prior_to_check_in\": {\n                    \"days\": 42\n                }\n            },\n            \"charges\": {\n                \"dogs\": [\n                    {\n                        \"id\": 80,\n                        \"name\": \"Dogs\",\n                        \"amount\": \"0.00\",\n                        \"charge_type\": \"weekly\",\n                        \"quantity\": 1,\n                        \"max_qty\": 2\n                    }\n                ],\n                \"extras\": []\n            },\n            \"location\": {\n                \"display\": \"Llangrannog, Ceredigion\",\n                \"coordinates\": {\n                    \"latitude\": \"52.1759148\",\n                    \"longitude\": \"-4.3773594\"\n                },\n                \"address\": {\n                    \"county\": \"Ceredigion\",\n                    \"town\": \"Llangrannog\"\n                }\n            },\n            \"images\": [\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-168/dscn1055a.oguezu.jpg\",\n                    \"main\": true,\n                    \"alt\": \"Caerhafod\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-168/dsc04118.oguf19.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Double bedroom\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-168/dsc04218a.oguf1c.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Kitchen / diner\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-168/dsc03971.oguf1e.jpg\",\n                    \"main\": false,\n                    \"alt\": \"The Lounge\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-168/dsc04114.oguf1a.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Bathroom\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-168/dsc04103.oguf1c.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Twin bedroom\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-168/dsc03978.oguf03.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Relax in the conservatory\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-168/dsc04217a.oguf1b.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Dine on the patio\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-168/dsc04212a.oguf1d.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Welcome to Caerhafod\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-168/dsc03787.oguezz.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Castell Bach\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-168/dsc04037.oguf1b.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Walk through Cwm Soden woods\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/stock-2016-11/new-quay-mk-wwed.og6eim.jpg\",\n                    \"main\": false,\n                    \"alt\": \"View of New Quay from the sea with beaches and harbour wall\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/stock-2022-04/cwm-tydu-drone-3.rb052n.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Drone view of Cwm Tydu beach, village and coastline\"\n                }\n            ],\n            \"features\": [\n                \"TV\",\n                \"Enclosed Garden\",\n                \"Walkers\",\n                \"Ground Floor Bedroom with bathroom\",\n                \"WiFi\",\n                \"Beach 3\",\n                \"Single Storey\",\n                \"Pub\",\n                \"Woodburner\",\n                \"Dishwasher\",\n                \"Washing Machine\",\n                \"Tumble Dryer\",\n                \"Walking area\",\n                \"Detached\",\n                \"Countryside\",\n                \"Coastal\",\n                \"Village\",\n                \"Affordable\",\n                \"Dogs Go Free\",\n                \"Beach 3\",\n                \"Pub\",\n                \"Walking area\",\n                \"Countryside\",\n                \"Coastal\",\n                \"Village\"\n            ],\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9844\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9844/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9844/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9844/reviews\"\n            }\n        },\n        {\n            \"id\": 9849,\n            \"name\": \"Lower Calf Field Farm Cottage\",\n            \"reference\": \"calffield\",\n            \"slug\": \"lower-calf-field-farm-cottage\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/lower-calf-field-farm-cottage\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:47.000000Z\",\n                \"updated_at\": \"2025-07-12T05:49:07.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 5,\n                \"bedrooms\": 2,\n                \"bathrooms\": 2,\n                \"pets\": 1,\n                \"parking\": 2,\n                \"type\": \"House\",\n                \"description\": \"Lower Calf Field Farm Cottage offers a unique stay in a beautifully converted cowshed, combining rustic charm with stylish comfort. Set within a peaceful, non-working farmyard alongside a cart house, barn, pigsty, and the ownersâ€™ farmhouse (home also to their friendly small dog), this cottage is ideal for a relaxing break in Pembrokeshire.\\r\\n\\r\\nSet in two acres of gardens, including a serene orchard and enchanting woodland walk, guests are welcome to explore and unwind in nature. Whether you're looking for a romantic getaway or a base for outdoor adventures, this is a place to truly switch off and soak up the surroundings.\\r\\n\\r\\nJust 6 miles from the golden sands of Newgale Beach, and a short drive to the bustling market town of Haverfordwest, the location is rural yet wonderfully connected. Fancy a pint or a hearty meal? The local pub is just a short stroll away.\\r\\n\\r\\nAt the front of the cottage, a sunny west-facing terrace provides the perfect spot to enjoy your morning coffee or watch a spectacular Pembrokeshire sunset. Thereâ€™s also a private area behind the cottage for added peace and privacy.\\r\\n\\r\\nThis is a fantastic choice if youâ€™re browsing for holiday cottages in Newgale or seeking accommodation in Newgale that offers more than just a place to sleep. Whether you want to surf at Newgale, explore the dramatic coastal path, or simply enjoy a slower pace of life, Lower Calf Field Farm Cottage is your perfect base.\\r\\n\\r\\nACCOMMODATION\\r\\nLower Calf Field Cottage sleeps 4-5 in 2 bedrooms: 2Â king size and 1 single bed. All the accommodation is on the ground floor so may suit guests with restricted mobility\\r\\n\\r\\nBedroom 1: king size bed, chaise longue, wardrobe, dressing table, bedside tables, bookshelf\\r\\nEn suite wet room: shower, toilet, hand basin\\r\\nBedroom 2: king size bed, single bed, bedside cabinets, built in wardrobes, chest of drawers\\r\\nEn suite 2: bath with shower over, toilet, hand basin\\r\\n\\r\\nOpen plan living area withâ€¦\\r\\nSitting area: 3-seater sofa, 2-seater sofa, Freeview TV, DVD, DAB radio, Bluetooth speaker, coffee table, log burner, bookcase with a good selection of books and games\\r\\nKitchen: induction hob, electric oven, microwave, fridge freezer, Nespresso coffee machine, dishwasher and automatic washing machine\\r\\nDining area: table seating 4, dresser\\r\\n\\r\\nOUTSIDE\\r\\nThe terrace at the front of the cottage and the area directly behind the cottage are for the exclusive use of cottage guests. Guests are welcome to explore the orchard and woodland walk. The grounds are all fenced and the yard is gated. There is a pond and low walls outside the cottage, so please ensure children are supervised. There is ample parking in the yard with ramped access from the parking area.\\r\\n\\r\\nKEY FACTS\\r\\n- Travel cot and highchair available. Please bring your own cot bedding\\r\\n- Oil central heating\\r\\n- First basket of logs provided, more available to purchase locally\\r\\n- 1 well-behaved dog welcome at Â£3 per night\\r\\n-  No smoking\\r\\n- Check in after 4 pm, check out by 10 am\"\n            },\n            \"rules\": {\n                \"damage_deposits\": {\n                    \"required\": false,\n                    \"amount\": \"0.00\"\n                },\n                \"notice_prior_to_booking\": {\n                    \"hours\": 12\n                },\n                \"balance_due_prior_to_check_in\": {\n                    \"days\": 42\n                }\n            },\n            \"charges\": {\n                \"dogs\": [\n                    {\n                        \"id\": 82,\n                        \"name\": \"Dogs\",\n                        \"amount\": \"3.00\",\n                        \"charge_type\": \"nightly\",\n                        \"quantity\": 1,\n                        \"max_qty\": 1\n                    }\n                ],\n                \"extras\": []\n            },\n            \"location\": {\n                \"display\": \"Newgale, Pembrokeshire\",\n                \"coordinates\": {\n                    \"latitude\": \"51.8378181\",\n                    \"longitude\": \"-4.9914141\"\n                },\n                \"address\": {\n                    \"county\": \"Pembrokeshire\",\n                    \"town\": \"Newgale\"\n                }\n            },\n            \"images\": [\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-173/2.-cottage-entrance-primary.ra9ua2.jpg\",\n                    \"main\": true,\n                    \"alt\": \"The outside of Lower Calf Field Farm Cottage\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-173/5.-bedroom-1-1.ra8ip0.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Kingsize bed with bed side tables and lamps, chaise longue and chest of drawers\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-173/6.-bedroom-1-2.ra8ip1.jpg\",\n                    \"main\": false,\n                    \"alt\": \"King size bedroom with wardrobe\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-173/8.-wet-room.ra8ip6.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Wet room with shower, WC, wash hand basin with mirror over\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-173/7.-kitchen-2.ra9v0w.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Kitchen with dark cupboards and marble work top. Electric hob and oven\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-173/4.-lounge.ra8ioy.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Dining table laid for tea with a vase of daffodils\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-173/3.-kitchen.ra8iox.jpg\",\n                    \"main\": false,\n                    \"alt\": \"kitchen with base units, electric oven, fridge freezer dining table and four chairs\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-173/10.-bedroom-2-2.ra8ip7.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Kingsize bed and single bed with bedside table. Coach house doors leading outside\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-173/9.-bedroom-2-1-1-.ra9v0v.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Double and single beds with bedside tables. Door leading to en-suite bathroom\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-173/lower-calf-field-farm-cottage-en-suite.opsp7o.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Bath with shower over, toilet, hand basin and chair\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-173/1.-entrance.ra9uah.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Entrance to Lower Calffield Farm Cottage through large farm gates\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-173/12.-orchard.ra8ip9.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Orchard with fruit trees in flower\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-173/13.-woodland-walk.ra8ipb.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Woodland walk\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-173/14.-avenue.ra8iph.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Large lawn area with flower beds\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/stock-2016-11/newgale-1wwhc.og6d49.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Very long stretch of sand at Newgale beach with dunes and cliffs on right sea on left\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/stock-2022-02/nolton-haven---6793668124-da9efde996-o.flickr.r7m0er.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Beach and headlands at Nolton Haven\"\n                }\n            ],\n            \"features\": [\n                \"Bike storage\",\n                \"Cot\",\n                \"TV\",\n                \"Enclosed Garden\",\n                \"Walkers\",\n                \"Ground Floor Bedroom with bathroom\",\n                \"WiFi\",\n                \"King-size bed\",\n                \"Golf Course\",\n                \"Riding Stable\",\n                \"Secluded\",\n                \"Single Storey\",\n                \"Pub\",\n                \"Woodburner\",\n                \"Wetroom\",\n                \"Dishwasher\",\n                \"Washing Machine\",\n                \"Walking area\",\n                \"Character\",\n                \"Detached\",\n                \"Countryside\",\n                \"Pub\",\n                \"Walking area\",\n                \"Countryside\"\n            ],\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9849\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9849/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9849/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9849/reviews\"\n            }\n        },\n        {\n            \"id\": 9855,\n            \"name\": \"Carn Ingli\",\n            \"reference\": \"carningli\",\n            \"slug\": \"carn-ingli\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/carn-ingli\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:47.000000Z\",\n                \"updated_at\": \"2025-06-20T14:53:01.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 5,\n                \"bedrooms\": 2,\n                \"bathrooms\": 1,\n                \"pets\": 0,\n                \"parking\": 1,\n                \"type\": \"House\",\n                \"description\": \"Carn Ingli sits above the sandy beach in the popular seaside village of Aberporth on Cardigan Bay. Between the cottage and the sea is a large grassy area perfect for sitting looking over the bay, looking out for dolphins and seals or watching the sunset over the sea.\\r\\n\\r\\nThe cottage lies right beside the Ceredigion Coastal Path, which stretches for 63 miles along Cardigan Bay. Walk out of the door and onto the path for wonderful walks through stunning coastal scenery, perfect for photography and wildlife spotting. Or just stroll down to the beaches below the cottage. Also within a short walk is the Aberporth village shop, cafes and a pub serving food.\\r\\n\\r\\nVisit the nearby coves at Tresaith, Penbryn, Llangrannog and Mwnt with their sandy beaches. Explore the local villages and towns such as New Quay (30 minutes), Aberaeron (30 minutes) and Cardigan (15 minutes).\\r\\n\\r\\nTake a day out to visit Pembrokeshireâ€™s famous attractions such as Folly Farm and St Davids Cathedral and the medieval harbour town of Tenby, all about an hour away. You can take boat trips along the gorgeous coast, enjoy scenic drives through the Teifi or Aeron Valleys or ride the heritage steam trains to see the beautiful countryside. West Wales offers plenty for all the family.\\r\\n\\r\\nACCOMMODATION\\r\\nCarn Ingli sleeps 5 - 7 in 2 bedrooms: 1 double and 1 double with a single. A sofa bed in the lounge provides accommodation for two further people\\r\\n\\r\\nUPSTAIRS\\r\\nBedroom 1: double bed, bedside tables, chest of drawers, TV\\r\\nBedroom 2: double bed, single bed, bedside tables, TV\\r\\nShower room: shower, toilet, hand basin\\r\\n\\r\\nDOWNSTAIRS\\r\\nLiving room: 3-seater sofa, armchairs, fire, Freeview TV, DVD player\\r\\nKitchen: electric cooker and hob, dishwasher, washer/dryer, microwave, fridge, freezer, ironing facilities\\r\\nDining room: dining table, chairs for 6, 3-seater sofa\\r\\nConservatory: 2-seater wicker sofa, wicker chairs, TV\\r\\nWC: toilet, hand basin\\r\\n\\r\\nOUTSIDE\\r\\nSeating areas to front and rear of house, with outside table, chairs and sun loungers. Driveway parking for 1 car.\\r\\n\\r\\nKEY FACTS\\r\\n- Bed linen provided\\r\\n- Please bring your own towels\\r\\n- Cot and highchair available on request. Please bring your own cot bedding\\r\\n- Central heating\\r\\n- Free WiFi\\r\\n- Sorry, no dogs\\r\\n- No smoking\"\n            },\n            \"rules\": {\n                \"damage_deposits\": {\n                    \"required\": false,\n                    \"amount\": \"0.00\"\n                },\n                \"notice_prior_to_booking\": {\n                    \"hours\": 48\n                },\n                \"balance_due_prior_to_check_in\": {\n                    \"days\": 42\n                }\n            },\n            \"charges\": {\n                \"dogs\": [],\n                \"extras\": [\n                    {\n                        \"id\": 496,\n                        \"name\": \"Cot\",\n                        \"charge_type\": \"flat\",\n                        \"amount\": \"0.00\",\n                        \"quantity\": 1,\n                        \"max_qty\": 1\n                    },\n                    {\n                        \"id\": 497,\n                        \"name\": \"Highchair\",\n                        \"charge_type\": \"flat\",\n                        \"amount\": \"0.00\",\n                        \"quantity\": 1,\n                        \"max_qty\": 1\n                    }\n                ]\n            },\n            \"location\": {\n                \"display\": \"Aberporth, Ceredigion\",\n                \"coordinates\": {\n                    \"latitude\": \"52.1350136\",\n                    \"longitude\": \"-4.542871\"\n                },\n                \"address\": {\n                    \"county\": \"Ceredigion\",\n                    \"town\": \"Aberporth\"\n                }\n            },\n            \"images\": [\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-180/aberporth-wwhc.ogud1x.jpg\",\n                    \"main\": true,\n                    \"alt\": \"Carn Ingli overlooking the beach\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-180/carningli-double-room.rdtomm.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Double bedroom with window with views\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-180/carningli-double-bedroom.rdtomt.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Double bed with blue floral bed linen. Bedside table and lamps\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-180/Well equipped kitchen.ogud2h.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Well equipped kitchen\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-180/ci-lounge-2018.pgjq2p.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Lounge with sofa, armchair, fireplace and coffee table\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-180/lounge-2-2018.pgjq08.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Comfortable lounge\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-180/bathroom.pgjq17.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Shower room\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-180/carninlgi-family-room.rdtomv.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Family bedroom with one double and one single bed. Bedside tables and lamps\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-180/ci-dining-room.pgjpzf.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Spacious dining room - seats 6\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-180/Breakfast room.ogud2v.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Breakfast room\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-180/Sunny conservatory.ogud37.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Sunny conservatory\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-180/carn-ingli.ogud31.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Carn Ingli with conservatory to front\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-180/Clifftop patio.ogud3h.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Clifftop patio\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/stock-2016-09/aberporth-dyffryn-beach.odjs39.jpg\",\n                    \"main\": false,\n                    \"alt\": \"One of the sandy beaches at nearby Aberporth\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/9855/e8TmyQQXUzbCMJOVOtRN83JCcpHQyGdyPKnjdalz.jpg\",\n                    \"main\": false,\n                    \"alt\": null\n                }\n            ],\n            \"features\": [\n                \"Cot\",\n                \"TV\",\n                \"Enclosed Garden\",\n                \"Walkers\",\n                \"Views\",\n                \"WiFi\",\n                \"Beach within 1 mile\",\n                \"Beach 3\",\n                \"Riding Stable\",\n                \"Sea Views\",\n                \"Pub\",\n                \"Dishwasher\",\n                \"Washing Machine\",\n                \"Tumble Dryer\",\n                \"Walking area\",\n                \"Linen Provided\",\n                \"Travel cot\",\n                \"Shop within 1 mile\",\n                \"Coastal\",\n                \"Village\",\n                \"Stunning Sea Views\",\n                \"Beach within 1 mile\",\n                \"Beach 3\",\n                \"Pub\",\n                \"Walking area\",\n                \"Shop within 1 mile\",\n                \"Coastal\"\n            ],\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9855\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9855/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9855/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9855/reviews\"\n            }\n        },\n        {\n            \"id\": 9858,\n            \"name\": \"Cartref Bach\",\n            \"reference\": \"cartrefbach\",\n            \"slug\": \"cartref-bach\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/cartref-bach\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:48.000000Z\",\n                \"updated_at\": \"2025-06-20T14:53:16.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 4,\n                \"bedrooms\": 2,\n                \"bathrooms\": 2,\n                \"pets\": 2,\n                \"parking\": 4,\n                \"type\": \"House\",\n                \"description\": \"Only three-quarters of a mile from the dog-friendly beach and Ceredigion Coast Path, Cartref Bach in Llanrhystud is a bright sunny stone cottage sleeping 4. It is in the old pretty part of the village, overlooking open fields and the Parish church.\\r\\n\\r\\nWithin a short walk, there is a village shop, dog-friendly pub and golf/ leisure club, both of which serve food. Permits to use the leisure facilities (pool, sauna, steam room and gym) and /or play golf are available to purchase at the reception of Penrhos Park which is about a mile up Lampeter Road.\\r\\n\\r\\nAberystwyth which is 9 miles north offers a wide selection of entertainment: restaurants, pubs, theatre and cinemas. Aberaeron 6 miles south is a very attractive Georgian town with harbour and restaurants.\\r\\n\\r\\nThe interior of Cartref Bach has been refurbished and is stylish with some exposed stone walls and elegant lighting; the furniture is a lovely mix of modern and older pieces. The cottage is beautifully warm for those winter breaks with full oil-fired central heating, plentiful hot water and a wood burner to relax in front of in the sitting room.\\r\\n\\r\\nACCOMMODATION\\r\\nCartref Bach sleeps 4 in 2 bedrooms: 2Â king size\\r\\n\\r\\nUPSTAIRS\\r\\nBedroom 1: king size bed, hairdryer, coastal views\\r\\nEn suite: bath with shower over, wash hand basin, WC\\r\\nBedroom 2: king size bed, coastal views\\r\\nEn suite: shower wash hand basin WC\\r\\n\\r\\nDOWNSTAIRS\\r\\nSitting room: wood burner, 2 sofas, 2 chairs, flat-screen TV, DVD player, stereo radio/CD player with MP3 connection\\r\\nKitchen breakfast room: electric range, microwave, fridge, freezer, dishwasher, toaster, coffee machine and food mixers. Table seating 4\\r\\nGarden/dining room: wood burner, arm chairs, table seating 6, patio doors leading to large terrace\\r\\nUtility room: washing machine and drying facilities, WC\\r\\n\\r\\nOUTSIDE\\r\\nTo the rear is a large mature enclosed garden and orchard with garden furniture, a picnic table, sun loungers and BBQ. To the front is a sunny south-facing bench. There is plenty of off-road parking space for 2 or 3 cars.\\r\\n\\r\\nKEY FACTS\\r\\n- Bed linen and towels provided\\r\\n- Please bring your own beach towels\\r\\n- Cot and high chair available\\r\\n- Oil central heating\\r\\n- Logs provided\\r\\n- Good mobile signal\\r\\n- Free WiFi\\r\\n- 2 well-behaved dogs welcome at Â£15 each per stay\\r\\n- No smoking\"\n            },\n            \"rules\": {\n                \"damage_deposits\": {\n                    \"required\": false,\n                    \"amount\": \"0.00\"\n                },\n                \"notice_prior_to_booking\": {\n                    \"hours\": 12\n                },\n                \"balance_due_prior_to_check_in\": {\n                    \"days\": 42\n                }\n            },\n            \"charges\": {\n                \"dogs\": [\n                    {\n                        \"id\": 86,\n                        \"name\": \"Dogs\",\n                        \"amount\": \"15.00\",\n                        \"charge_type\": \"flat\",\n                        \"quantity\": 1,\n                        \"max_qty\": 2\n                    }\n                ],\n                \"extras\": [\n                    {\n                        \"id\": 498,\n                        \"name\": \"Cot\",\n                        \"charge_type\": \"flat\",\n                        \"amount\": \"0.00\",\n                        \"quantity\": 1,\n                        \"max_qty\": 1\n                    },\n                    {\n                        \"id\": 827,\n                        \"name\": \"Child's bed\",\n                        \"charge_type\": \"flat\",\n                        \"amount\": \"0.00\",\n                        \"quantity\": 1,\n                        \"max_qty\": 1\n                    }\n                ]\n            },\n            \"location\": {\n                \"display\": \"Aberystwyth, Ceredigion\",\n                \"coordinates\": {\n                    \"latitude\": \"52.3058014\",\n                    \"longitude\": \"-4.1461196\"\n                },\n                \"address\": {\n                    \"county\": \"Ceredigion\",\n                    \"town\": \"Aberystwyth\"\n                }\n            },\n            \"images\": [\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-183/cartref-bach.q6xpmf.jpg\",\n                    \"main\": true,\n                    \"alt\": \"Outside view of Cartref Bach\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-183/cartref-bach-bedroom.oi8dog.jpg\",\n                    \"main\": false,\n                    \"alt\": \"King size bedroom with bed, bedside tables, lamps and window\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-183/cartref-bach-kitchen.q6tzw2.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Kitchen with dining table and chairs\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-183/cartref-bach-kitchen.q6tyow.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Kitchen and dining area\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-183/cartref-bach-lounge.oi8c13.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Lounge with 2 sofa, 2 chairs, coffee table, TV and log burning stove\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-183/cartref-bach-lounge.oi8ejm.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Lounge with sofa, chairs, coffee table, TV, dresser and log burning stove\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-183/cartref-bach-bedroom.oi8e5o.jpg\",\n                    \"main\": false,\n                    \"alt\": \"King size bedroom with bed, beside table, lamps chest of drawers\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-183/cartfer-bach.q6tyor.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Dining and garden room, dining table and chairs, woodburner\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-183/cartref-bach-garden-room.q6tynv.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Garden and dining room with woodburner, large sky light and patio doors\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-183/cartref-bach-garden.oq5e0t.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Cartref Bach garden, lawn with trees and 2 garden seats. Hedges with hills in background\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-183/cartref-bach-garden.oq5dtf.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Cartef Bach garden patio area with table and chairs, shrubs and flowers, lawn in the background\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-183/cartref2009-021.og7wbq.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Pebbles and sand on the beach\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/stock-2016-09/llanrhystud-area-1vw.jpg.odlg62.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Person walking along the coast path near Llanrhystud\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/stock-2016-09/aberaeron-2vw.odjmmv.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Boats on the water in the foreground, The Harbourmaster and houses in background\"\n                }\n            ],\n            \"features\": [\n                \"Bike storage\",\n                \"Cot\",\n                \"TV\",\n                \"Enclosed Garden\",\n                \"Walkers\",\n                \"Views\",\n                \"WiFi\",\n                \"King-size bed\",\n                \"Beach within 1 mile\",\n                \"Beach 3\",\n                \"Golf Course\",\n                \"Riding Stable\",\n                \"Pub\",\n                \"Woodburner\",\n                \"Dishwasher\",\n                \"Washing Machine\",\n                \"Walking area\",\n                \"Countryside\",\n                \"Linen Provided\",\n                \"Towels Provided\",\n                \"Coastal\",\n                \"Village\",\n                \"Beach within 1 mile\",\n                \"Beach 3\",\n                \"Pub\",\n                \"Walking area\",\n                \"Countryside\",\n                \"Coastal\",\n                \"Village\"\n            ],\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9858\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9858/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9858/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9858/reviews\"\n            }\n        },\n        {\n            \"id\": 9860,\n            \"name\": \"Y Cartws\",\n            \"reference\": \"cartws\",\n            \"slug\": \"y-cartws-hebron\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/y-cartws-hebron\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:48.000000Z\",\n                \"updated_at\": \"2025-07-12T05:50:11.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 4,\n                \"bedrooms\": 2,\n                \"bathrooms\": 1,\n                \"pets\": 1,\n                \"parking\": 2,\n                \"type\": \"House\",\n                \"description\": \"Y Cartws is a former cart house which has been converted into a character stone cottage. It is close to the Preseli Hills and within easy reach of the rugged Pembrokeshire coastline. Explore the beautiful sandy beaches along over 180 miles of the Pembrokeshire Coast Path, offering stunning scenery and the opportunity to spot breathtaking wildlife.\\r\\n\\r\\nThe nearest town is Narberth where you will find stylish, independent boutiques and a fab choice of restaurants and cafÃ©s. You could spend a day out here visiting the museum, vineyard or browsing through the music shops.\\r\\n\\r\\nThere are many family-friendly attractions within driving distance. These include Folly Farm Adventure Park and Zoo, Colby Woodland Gardens and Castell Henllys Iron Age Fort. Y Cartws has been approved under the Visit Wales Walkers Welcome and Cyclists Welcome schemes so itâ€™s ideal for family holidays, groups of walkers and those who love cycling. Y Cartws is on a working sheep farm and Paul, Eirlys and their family are the seventh generation of the same family to have farmed there. They look forward to giving you a warm welcome at the cottage.\\r\\n\\r\\nACCOMMODATION\\r\\nY Cartws sleeps 4-5 in 2 bedrooms: 1 double and 1 twin\\r\\n\\r\\nUPSTAIRS\\r\\nBedroom 1: double bed, built-in wardrobe, bedside tables, chest of drawers, rocking chair, views across the fields\\r\\nBedroom 2: twin beds, pull-out bed, bedside tables, chest of drawers\\r\\nBathroom: shower, WC, wash hand basin\\r\\n\\r\\nDOWNSTAIRS\\r\\nLiving room: two 2-seater sofas, armchair, coffee table, 32â€\\u009d digital flat screen TV with DVD player, bookcase with selection of books, DVDs, games\\r\\nKitchen/dining area: gas hob and cooker, dishwasher, fridge/freezer, automatic washing machine, microwave oven, dining table seating 6\\r\\n\\r\\nOUTSIDE\\r\\nThere is a picnic table and a bench at the front of the cottage. Guests are welcome to stroll down to the stream which is in the woodland area (please ensure gates are closed after you). Parking for 2 cars.\\r\\n\\r\\nKEY FACTS\\r\\n- Bed linen and towels provided. Please bring your own beach towels\\r\\n- Cot, highchair and stairgate available. Please bring your own cot bedding\\r\\n- Oil central heating\\r\\n- Free WiFi\\r\\n- 1 well-behaved small dog welcome\\r\\n- No smoking\\r\\n- Â£80 refundable damages deposit\"\n            },\n            \"rules\": {\n                \"damage_deposits\": {\n                    \"required\": true,\n                    \"amount\": \"80.00\"\n                },\n                \"notice_prior_to_booking\": {\n                    \"hours\": 48\n                },\n                \"balance_due_prior_to_check_in\": {\n                    \"days\": 42\n                }\n            },\n            \"charges\": {\n                \"dogs\": [\n                    {\n                        \"id\": 2020,\n                        \"name\": \"Dogs\",\n                        \"amount\": \"0.00\",\n                        \"charge_type\": \"flat\",\n                        \"quantity\": 1,\n                        \"max_qty\": 1\n                    }\n                ],\n                \"extras\": []\n            },\n            \"location\": {\n                \"display\": \"Crymych, Carmarthenshire\",\n                \"coordinates\": {\n                    \"latitude\": \"51.9106255\",\n                    \"longitude\": \"-4.6741219\"\n                },\n                \"address\": {\n                    \"county\": \"Carmarthenshire\",\n                    \"town\": \"Crymych\"\n                }\n            },\n            \"images\": [\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-185/y-cartws-hebron.p9agix.jpg\",\n                    \"main\": true,\n                    \"alt\": \"View through stone gateway towards Y Cartws cottage\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-185/img-0555.pf3ugq.jpg\",\n                    \"main\": false,\n                    \"alt\": null\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-185/feeding-time.pf3ui7.jpg\",\n                    \"main\": false,\n                    \"alt\": null\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-185/stream-at-maesyfelin.pf3url.jpg\",\n                    \"main\": false,\n                    \"alt\": null\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-185/img-5580.pf3vfp.jpg\",\n                    \"main\": false,\n                    \"alt\": null\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-185/imgp4622a.oguqte.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Double bedroom\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-185/y-cartws-kitchen-diner.ositke.jpg\",\n                    \"main\": false,\n                    \"alt\": \"kitchen and dining area, table and 6 chairs\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-185/y-cartws-kitchen-diner.ositif.jpg\",\n                    \"main\": false,\n                    \"alt\": \"kitchen and dining area, table and 6 chairs\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-185/y-cartws-hebron-dining-area.p9agix.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Dining set for breakfast with chairs and doors leading to outside yard\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-185/y-cartws-hebron-lounge.ositke.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Lounge with sofa, two armchairs, tv\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-185/christmas-at-y-cartws.pf3ui6.jpg\",\n                    \"main\": false,\n                    \"alt\": null\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-185/y-cartws-bathroom.p9jtmn.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Bathroom in Y Cartws, bath with shower over, toilet and velux window in the sloping roof\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-185/imgp4629a.oguqtl.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Twin bedroom\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-185/imagea.oguqta.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Welcome to Y Cartws\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-185/y-cartws.ositmf.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Armchair and reading table with lamp with velux window at Y Cartws\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-185/y-cartws-hebron.ph5isz.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Aerial view of Y Cartws the farm and surrounding countryside\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-185/y-cartws-hebron.ph5itg.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Two dogs playing in the yard at Y Cartws\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-185/y-cartws-hebron.p9agj1.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Track leading to Y Cartws cottage\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-185/y-cartws-hebron.ph5itc.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Sheep in a field\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-185/butterfly.pf3ui2.jpg\",\n                    \"main\": false,\n                    \"alt\": null\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-185/y-cartws.ositg0.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Field of bluebells with dog in the middle\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-185/y-cartws-hebron.ph5itr.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Stream and woodland at Y Cartws\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-185/y-cartws-hebron.ph5itx.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Dark starry sky\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-185/foeldrigarn-ir-website-newydd---copy.pf3ugq.jpg\",\n                    \"main\": false,\n                    \"alt\": null\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-185/pembs-coast-walk.pf3uv6.jpg\",\n                    \"main\": false,\n                    \"alt\": null\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/stock-2022-09/wwhc-peggys-pad-77.rix0ep.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Narberth high street and shops\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/stock-2016-11/preselis-1jb.ogp8n3.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Rocky outcrop on the Preseli Hills with views across countryside\"\n                }\n            ],\n            \"features\": [\n                \"Bike storage\",\n                \"Cot\",\n                \"TV\",\n                \"Walkers\",\n                \"Views\",\n                \"WiFi\",\n                \"On a Farm\",\n                \"Dishwasher\",\n                \"Washing Machine\",\n                \"Walking area\",\n                \"Romantic\",\n                \"Detached\",\n                \"Countryside\",\n                \"Rural\",\n                \"Affordable\",\n                \"Dogs Go Free\",\n                \"Walking area\",\n                \"Countryside\"\n            ],\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9860\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9860/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9860/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9860/reviews\"\n            }\n        },\n        {\n            \"id\": 9861,\n            \"name\": \"Castell Cwtch\",\n            \"reference\": \"castell\",\n            \"slug\": \"castell-cwtch\",\n            \"url\": \"https://www.westwalesholidaycottages.co.uk/property/castell-cwtch\",\n            \"metadata\": {\n                \"created_at\": \"2023-06-08T14:22:48.000000Z\",\n                \"updated_at\": \"2025-07-12T23:06:36.000000Z\"\n            },\n            \"details\": {\n                \"sleeps\": 6,\n                \"bedrooms\": 3,\n                \"bathrooms\": 2,\n                \"pets\": 2,\n                \"parking\": 2,\n                \"type\": \"Cottage\",\n                \"description\": \"Castell Cwtch (Welsh for â€œCuddle Castleâ€\\u009d) is a charming period cottage with coastal character and a modern twist, tucked away in the heart of the picturesque seaside village of Llangrannog. Whether you're planning a romantic escape, a family holiday, or a peaceful work-from-home retreat, this welcoming space offers the best of West Wales right on your doorstep.\\r\\n\\r\\nJust across the patio, a newly converted annexe offers flexibility and privacy, with its own peaceful decking area over the Nant Hawen stream. Itâ€™s full of character and ideal for grandparents, couples, or larger families who appreciate a little extra space. The annexe also has access to the main patio and cottage area.\\r\\n\\r\\nJust a short 500-yard stroll from the cottage brings you to Llangrannogâ€™s Blue Flag sandy beach, framed by dramatic granite cliffs. The village has a friendly local pub and a couple of laid-back cafÃ©s â€” perfect for soaking up the slow pace of coastal life.\\r\\n\\r\\nThe area is a paradise for walkers, with the Ceredigion Coast Path offering breathtaking views, hidden coves, and wildlife sightings. Surfing, sailing, dolphin watching, horse riding, and golf are all nearby, while the charming market towns of Aberaeron and Cardigan, just 12 miles away, are home to independent shops, local food, galleries, and more.\\r\\n\\r\\nOut of high season, the owners are happy to offer a discounted price for guests who do not require use of the annexe.\\r\\n\\r\\nACCOMMODATION\\r\\nCastell Cwtch sleeps a total of 7 people in 2 upstairs bedrooms in the cottage: 1 king size, 1 twin plus full-length floor mattress, and in the annexe: 1 king size\\r\\n\\r\\nUPSTAIRS (Cottage)\\r\\nBedroom 1: king-size bed, bedside tables, chair, wardrobe, chest of drawers\\r\\nBedroom 2: two single beds, chest of drawers, wardrobe, full-length floor mattress\\r\\nBathroom: bath, shower, toilet, hand basin\\r\\n\\r\\nDOWNSTAIRS (Cottage)\\r\\nOpen plan area with... \\r\\nSitting area: two 2-seater sofas perfect for watching Amazon Prime, Netflix or BBC iPlayer on the 32&rdquo; Freeview TV, log burner\\r\\nKitchen area: gas oven and hobs, fridge/ freezer, microwave, toaster, kettle, dishwasher, washer/dryer\\r\\nDining area: dining table seating 5\\r\\n\\r\\nANNEXE (Discounted rate if not using the annexe out of season, please enquire)\\r\\nBedroom 3: King-size bed, two bedside shelves, two wicker chairs, wicker table, built-in wardrobe\\r\\nEnsuite Shower room: walk-in shower, washbasin, mirror, WC\\r\\n\\r\\nOUTSIDE\\r\\nSecluded patio/garden area with garden furniture, ideal for outside eating and safe for children to play. There is also a private decking area in front of the annexe. Off-road private parking for 2 vehicles.\\r\\n\\r\\nKEY FACTS\\r\\n\\r\\n- Bed linen provided and towels provided. Please bring your own beach towels\\r\\n- Cot and Highchair available on request. Please bring your own cot bedding\\r\\n- Gas central heating\\r\\n- Free WiFi\\r\\n- 2 well-behaved dogs welcome upon request. Please let us know if you're bringing a dog (or more) upon booking. If you wish to bring up to 2 cats, please state you're bringing cats when booking.\\r\\n- No smoking\\r\\n- 4pm Check-in and 10am Check-out\"\n            },\n            \"rules\": {\n                \"damage_deposits\": {\n                    \"required\": false,\n                    \"amount\": \"0.00\"\n                },\n                \"notice_prior_to_booking\": {\n                    \"hours\": 24\n                },\n                \"balance_due_prior_to_check_in\": {\n                    \"days\": 42\n                }\n            },\n            \"charges\": {\n                \"dogs\": [\n                    {\n                        \"id\": 1705,\n                        \"name\": \"Dogs\",\n                        \"amount\": \"20.00\",\n                        \"charge_type\": \"flat\",\n                        \"quantity\": 1,\n                        \"max_qty\": 2\n                    }\n                ],\n                \"extras\": [\n                    {\n                        \"id\": 499,\n                        \"name\": \"Cot\",\n                        \"charge_type\": \"flat\",\n                        \"amount\": \"0.00\",\n                        \"quantity\": 1,\n                        \"max_qty\": 1\n                    }\n                ]\n            },\n            \"location\": {\n                \"display\": \"Llangrannog, Ceredigion\",\n                \"coordinates\": {\n                    \"latitude\": \"52.1586266\",\n                    \"longitude\": \"-4.462697\"\n                },\n                \"address\": {\n                    \"county\": \"Ceredigion\",\n                    \"town\": \"Llangrannog\"\n                }\n            },\n            \"images\": [\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-186/castell-cwtch-external.qebv3y.jpg\",\n                    \"main\": true,\n                    \"alt\": \"The outside of Castell Cwtch with patio table and chairs\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-186/castell-cwtch-bedroom.qazwss.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Bedroom, wardrobe, bed, window\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-186/castell-cwtch-bedroom.qazwtf.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Bedroom with bed, wardrobe, chair, chest of drawers, window\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-186/castell-cwtch-kitchen.qazwqq.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Kitchen, cooker, sink, window\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/9861/A7ualhbhzqW1l5VAFHOKD8MFOARrV54wHIG4GqwE.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Kitchen with electric oven and wooden work surfaces\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-186/castell-cwtch-lounge.qazwq8.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Lounge with sofas, coffee table, tv, fireplace with woodburner\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-186/castell-cwtch-mirror.qazwrw.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Mirror with reflection of staircase and lounge\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-186/castell-cwtch-lounge.qazwsf.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Lounge with sofas, staircase to first floor, kitchen, front door\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-186/castell-cwtch-kitchen-diner.qazwoj.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Kitchen and dining area with table and chairs, view of lounge\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-186/castell-cwtch-dining-area.qazwpb.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Dining area with table and chairs, view of lounge\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-186/castell-cwtch-twin-bedroom.qazwn5.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Bedroom with two single beds\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-186/castell-cwtch-bedroom.qazwn2.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Single bed and chest of drawers in twin bedroom\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-186/castell-cwtch-bathroom.qazwu2.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Bathroom with shower over bath, toilet\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-186/castell-cwtch-entrance.qazwoj.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Front door and entrance to Castell Cwtch\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-186/castell-cwtch-annexe.rt3qrh.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Garden annexe with double bedroom opening out onto garden and deck\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-186/castell-cwtch-annexe-deck.rt3qrh.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Annexe and deck with garden furniture at Castell Cwtch\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-186/castell-cwtch-annexe-bedroom.rt3qrh.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Annexe bedroom with king size bed, armchairs, velux windows\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-186/castell-cwtch-annexe-bedroom.rt3qrg.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Bedroom with large glass window looking out over deck and garden\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-186/castell-cwtch-annexe-shower-room.rt3qrg.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Shower room with walk in shower, wash basin\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/9861/plr0D65Jo0cbww1wCE0GIAfFuBZ71PX4kL8OtLi2.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Outside area at Castell Cwtch\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/9861/hMrav1R52bG1pF0LnNeV72VFKM2ibrs8V99w3fJ1.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Patio with small outdoor table and chairs at Castell Cwtch\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-186/dscn0285a.og4i13.jpg\",\n                    \"main\": false,\n                    \"alt\": \"View from second bedroom\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-186/st-crannog-and-llangrannog.pazmzk.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Statue of St Crannog overlooking the beach at Llangrannog\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/property-186/llangrannog-beach.pazmzh.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Llangrannog beach taken from the coastal path\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/stock-2016-09/llangrannog-1JB.odleyi.jpg\",\n                    \"main\": false,\n                    \"alt\": \"View from high above Llangrannog beach with village and houses to left sea to the right\"\n                },\n                {\n                    \"url\": \"https://wwhc-staging.imgix.net/m/stock-2021-12/llangrannog-3508524373-8343717f0f-o.flickr.r4iwfc.jpg\",\n                    \"main\": false,\n                    \"alt\": \"Waves crashing on the beach at Llangrannog\"\n                }\n            ],\n            \"features\": [\n                \"Cot\",\n                \"TV\",\n                \"Walkers\",\n                \"WiFi\",\n                \"King-size bed\",\n                \"Beach within 1 mile\",\n                \"Beach 3\",\n                \"Golf Course\",\n                \"Riding Stable\",\n                \"Pub\",\n                \"Woodburner\",\n                \"Dishwasher\",\n                \"Washing Machine\",\n                \"Tumble Dryer\",\n                \"Walking area\",\n                \"Linen Provided\",\n                \"Towels Provided\",\n                \"Coastal\",\n                \"Village\",\n                \"Beach within 1 mile\",\n                \"Beach 3\",\n                \"Pub\",\n                \"Walking area\",\n                \"Shop within 1 mile\",\n                \"Coastal\"\n            ],\n            \"_links\": {\n                \"self\": \"http://127.0.0.1:8080/api/partners/properties/9861\",\n                \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9861/availability\",\n                \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9861/pricing\",\n                \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9861/reviews\"\n            }\n        }\n    ],\n    \"_links\": {\n        \"self\": \"http://127.0.0.1:8080/api/partners/properties?page=1\",\n        \"first\": \"http://127.0.0.1:8080/api/partners/properties?page=1\",\n        \"last\": \"http://127.0.0.1:8080/api/partners/properties?page=21\",\n        \"prev\": null,\n        \"next\": \"http://127.0.0.1:8080/api/partners/properties?page=2\"\n    },\n    \"meta\": {\n        \"total\": 515,\n        \"current_page\": 1,\n        \"from\": 1,\n        \"to\": 25,\n        \"per_page\": 25,\n        \"last_page\": 21\n    }\n}"}],"_postman_id":"2bd6f46a-2128-4406-8872-86af4530b1b3"},{"name":"single","id":"e03ef9fa-8e51-483e-b33d-60aeb5b9d09b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{domain}}/api/partners/properties/9697","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"3f073019-b235-4945-8bf1-9594767d99d5","id":"3f073019-b235-4945-8bf1-9594767d99d5","name":"Properties","type":"folder"}},"urlObject":{"path":["api","partners","properties","9697"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"efb3f33e-7536-4347-9f6d-d849b348a2f9","name":"success","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{domain}}/api/partners/properties/9697"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8080"},{"key":"Date","value":"Mon, 21 Jul 2025 11:09:33 GMT"},{"key":"Date","value":"Mon, 21 Jul 2025 11:09:33 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.2.0"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"1000"},{"key":"X-RateLimit-Remaining","value":"999"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 9697,\n        \"name\": \"Ty Aelwyd\",\n        \"reference\": \"aelwyd\",\n        \"slug\": \"ty-aelwyd\",\n        \"url\": \"https://www.westwalesholidaycottages.co.uk/property/ty-aelwyd\",\n        \"metadata\": {\n            \"created_at\": \"2023-06-08T14:22:41.000000Z\",\n            \"updated_at\": \"2025-06-20T14:40:59.000000Z\"\n        },\n        \"details\": {\n            \"sleeps\": 2,\n            \"bedrooms\": 1,\n            \"bathrooms\": 1,\n            \"pets\": 2,\n            \"parking\": 1,\n            \"type\": \"House\",\n            \"description\": \"Ty Aelwyd in upper Solva has magnificent views over St Brides Bay and Skomer Island. It is conveniently situated less than 10 minutes drive from St Davids and from sandy beaches, less than a 10 minute walk from the Pembrokeshire Coast Path and about a 5 minute walk from the pubs and cafes in the charming village of Solva. It is a self-contained annexe attached to the ownerâ€™s home.\\r\\n\\r\\nTy Aelwyd is set in the Pembrokeshire Coast National Park with ample opportunities for walks amidst gorgeous scenery. The beaches of Whitesands and Newgale are within an easy drive.\\r\\n\\r\\nThe tiny city of St Davids with its ancient cathedral offers galleries, restaurants, pubs and shops as well as being home to Oriel y Parc, the National Park Visitor Centre and Gallery. This area abounds with wildlife, much of which can be spotted in secluded coves or from the coast path, just a short walk from Ty Aelwyd. You can take a boat trip for the chance to see dolphins, seals, puffins and huge breeding colonies of seabirds on the off-shore islands.\\r\\n\\r\\nACCOMMODATION\\r\\nTy Aelwyd sleeps 2 inÂ 1 king size bedroom\\r\\n\\r\\nDOWNSTAIRS\\r\\nBedroom: king size bed, hair dryer, countryside views\\r\\nEn suite shower room: shower, toilet, hand basin\\r\\nKitchen: compact cooker, fridge, microwave, washing machine, iron\\r\\n\\r\\nUPSTAIRS\\r\\nLiving room/dining area: 2-seater sofa, armchair, Freeview TV, dining table and 2 chairs. The magnificent views from the Velux window are south-facing over St Brides Bay with the island of Skomer opposite.\\r\\n\\r\\nOUTSIDE\\r\\nThere is seating in the enclosed garden which also has a bike or kayak lock-up. DrivewayÂ parking for 1 car.\\r\\n\\r\\nKEY FACTS\\r\\n- Bed linen and towels provided. Please bring your own beach towels.\\r\\n- Oil-fired central heating.\\r\\n- Free WiFi.\\r\\n- Two well-behaved dogs welcome at Â£20 each per week\\r\\n - No smoking\"\n        },\n        \"rules\": {\n            \"damage_deposits\": {\n                \"required\": false,\n                \"amount\": \"0.00\"\n            },\n            \"notice_prior_to_booking\": {\n                \"hours\": 12\n            },\n            \"balance_due_prior_to_check_in\": {\n                \"days\": 42\n            }\n        },\n        \"charges\": {\n            \"dogs\": [\n                {\n                    \"id\": 25,\n                    \"name\": \"Dogs\",\n                    \"amount\": \"20.00\",\n                    \"charge_type\": \"weekly\",\n                    \"quantity\": 1,\n                    \"max_qty\": 2\n                }\n            ],\n            \"extras\": []\n        },\n        \"location\": {\n            \"display\": \"Solva, Pembrokeshire\",\n            \"coordinates\": {\n                \"latitude\": \"51.876469\",\n                \"longitude\": \"-5.197786\"\n            },\n            \"address\": {\n                \"county\": \"Pembrokeshire\",\n                \"town\": \"Solva\"\n            }\n        },\n        \"images\": [\n            {\n                \"url\": \"https://wwhc-staging.imgix.net/m/property-21/aelwyd-bedroom.pehe9i.jpg\",\n                \"main\": true,\n                \"alt\": \"Bedroom with wooden bed fram, bedside table and lamps\"\n            },\n            {\n                \"url\": \"https://wwhc-staging.imgix.net/9697/f9jNheAB1BNj8WIAKZczeyhdsZLUQlAjVRQ2QLlH.jpg\",\n                \"main\": false,\n                \"alt\": null\n            },\n            {\n                \"url\": \"https://wwhc-staging.imgix.net/9697/39to7s3zOK3I7VlR4eOiHKEzmjd7KBshv8HKnsl0.jpg\",\n                \"main\": false,\n                \"alt\": null\n            },\n            {\n                \"url\": \"https://wwhc-staging.imgix.net/9697/uKLcExxvGNHYiPHAtsHqQPSYpf8Q5fDPxsQiuBdf.jpg\",\n                \"main\": false,\n                \"alt\": null\n            },\n            {\n                \"url\": \"https://wwhc-staging.imgix.net/9697/zioixTuN4PlOIt3vcFucdHvN71vwzA7wJgdqnOwr.jpg\",\n                \"main\": false,\n                \"alt\": null\n            },\n            {\n                \"url\": \"https://wwhc-staging.imgix.net/m/property-21/ty-aelwyd-dining-area.pn10f1.jpg\",\n                \"main\": false,\n                \"alt\": \"Dining area with round table, two chairs, electric fire\"\n            },\n            {\n                \"url\": \"https://wwhc-staging.imgix.net/9697/0ytTzaY52Vzfhuw4uNPrDm73Cbaw2hKEcyLHbGCm.jpg\",\n                \"main\": false,\n                \"alt\": null\n            },\n            {\n                \"url\": \"https://wwhc-staging.imgix.net/m/property-21/ty-aelwyd.oyujnx.jpg\",\n                \"main\": false,\n                \"alt\": \"Footpath in woods with bank of bluebells to the left\"\n            },\n            {\n                \"url\": \"https://wwhc-staging.imgix.net/m/property-21/ty-aelwyd-solva-harbour.oyujot.jpg\",\n                \"main\": false,\n                \"alt\": \"Solva harbour with jetty, boat houses and fishing boat\"\n            },\n            {\n                \"url\": \"https://wwhc-staging.imgix.net/m/property-21/ty-aelwyd.oyzxpp.jpg\",\n                \"main\": false,\n                \"alt\": \"Coastal view with wild flowers\"\n            },\n            {\n                \"url\": \"https://wwhc-staging.imgix.net/m/property-21/ty-aelwyd-solva-harbour.oyzxpn.jpg\",\n                \"main\": false,\n                \"alt\": \"Fishing boats in channel at low tide\"\n            },\n            {\n                \"url\": \"https://wwhc-staging.imgix.net/m/stock-2016-11/solva-harbour.ogpa15.jpg\",\n                \"main\": false,\n                \"alt\": \"View down to Solva harbour and village\"\n            },\n            {\n                \"url\": \"https://wwhc-staging.imgix.net/9697/60Bekpmurz5V4sOnyINUHd4Bocz3AqIh00lUgCMw.jpg\",\n                \"main\": false,\n                \"alt\": null\n            },\n            {\n                \"url\": \"https://wwhc-staging.imgix.net/m/stock-2022-01/cathedral-4299247.pb.r5aq2l.jpg\",\n                \"main\": false,\n                \"alt\": \"St Davids Cathedral\"\n            },\n            {\n                \"url\": \"https://wwhc-staging.imgix.net/m/property-21/ty-aelwyd-kitchen.plbxvj.jpg\",\n                \"main\": false,\n                \"alt\": \"Kitchen with kettle and fridge\"\n            },\n            {\n                \"url\": \"https://wwhc-staging.imgix.net/9697/FJpTGSWrQLl9DZWIUkJ1JSWCvbO5AtBTUnYTOrN5.jpg\",\n                \"main\": false,\n                \"alt\": \"Sunset taken from Ty Aelwyd\"\n            }\n        ],\n        \"features\": [\n            \"Bike storage\",\n            \"TV\",\n            \"Enclosed Garden\",\n            \"Walkers\",\n            \"Views\",\n            \"Ground Floor Bedroom with bathroom\",\n            \"WiFi\",\n            \"King-size bed\",\n            \"Beach within 1 mile\",\n            \"Beach 3\",\n            \"Golf Course\",\n            \"Sea Views\",\n            \"Pub\",\n            \"Washing Machine\",\n            \"Walking area\",\n            \"Romantic\",\n            \"Towels Provided\",\n            \"Coastal\",\n            \"Village\",\n            \"Affordable\",\n            \"Beach within 1 mile\",\n            \"Beach 3\",\n            \"Pub\",\n            \"Walking area\",\n            \"Coastal\",\n            \"Village\"\n        ],\n        \"_links\": {\n            \"self\": \"http://127.0.0.1:8080/api/partners/properties/9697\",\n            \"availability\": \"http://127.0.0.1:8080/api/partners/properties/9697/availability\",\n            \"pricing\": \"http://127.0.0.1:8080/api/partners/properties/9697/pricing\",\n            \"reviews\": \"http://127.0.0.1:8080/api/partners/properties/9697/reviews\"\n        }\n    }\n}"}],"_postman_id":"e03ef9fa-8e51-483e-b33d-60aeb5b9d09b"},{"name":"availability","id":"67ea6237-8de3-4232-bc23-364e27261455","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{domain}}/api/partners/properties/9697/availability","description":"<p>The dataset here returns forward looking availability.</p>\n<p>It will not return availability for dates that have passed.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"3f073019-b235-4945-8bf1-9594767d99d5","id":"3f073019-b235-4945-8bf1-9594767d99d5","name":"Properties","type":"folder"}},"urlObject":{"path":["api","partners","properties","9697","availability"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"4ebaae8c-7633-406d-a85a-a6a54119f9bb","name":"success","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{domain}}/api/partners/properties/9697/availability"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8080"},{"key":"Date","value":"Tue, 25 Mar 2025 13:22:18 GMT"},{"key":"Date","value":"Tue, 25 Mar 2025 13:22:18 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.2.0"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"1000"},{"key":"X-RateLimit-Remaining","value":"999"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"property_id\": 9697,\n        \"availability\": {\n            \"2025-03-26\": {\n                \"available\": true\n            },\n            \"2025-03-27\": {\n                \"available\": true\n            },\n            \"2025-03-28\": {\n                \"available\": false\n            },\n            \"2025-03-29\": {\n                \"available\": false\n            },\n            \"2025-03-30\": {\n                \"available\": true\n            },\n            \"2025-03-31\": {\n                \"available\": true\n            },\n            \"2025-04-01\": {\n                \"available\": true\n            },\n            \"2025-04-02\": {\n                \"available\": true\n            },\n            \"2025-04-03\": {\n                \"available\": true\n            },\n            \"2025-04-04\": {\n                \"available\": true\n            },\n            \"2025-04-05\": {\n                \"available\": true\n            },\n            \"2025-04-06\": {\n                \"available\": true\n            },\n            \"2025-04-07\": {\n                \"available\": true\n            },\n            \"2025-04-08\": {\n                \"available\": true\n            },\n            \"2025-04-09\": {\n                \"available\": true\n            },\n            \"2025-04-10\": {\n                \"available\": true\n            },\n            \"2025-04-11\": {\n                \"available\": true\n            },\n            \"2025-04-12\": {\n                \"available\": true\n            },\n            \"2025-04-13\": {\n                \"available\": true\n            },\n            \"2025-04-14\": {\n                \"available\": true\n            },\n            \"2025-04-15\": {\n                \"available\": true\n            },\n            \"2025-04-16\": {\n                \"available\": true\n            },\n            \"2025-04-17\": {\n                \"available\": true\n            },\n            \"2025-04-18\": {\n                \"available\": false\n            },\n            \"2025-04-19\": {\n                \"available\": false\n            },\n            \"2025-04-20\": {\n                \"available\": false\n            },\n            \"2025-04-21\": {\n                \"available\": false\n            },\n            \"2025-04-22\": {\n                \"available\": false\n            },\n            \"2025-04-23\": {\n                \"available\": false\n            },\n            \"2025-04-24\": {\n                \"available\": true\n            },\n            \"2025-04-25\": {\n                \"available\": true\n            },\n            \"2025-04-26\": {\n                \"available\": true\n            },\n            \"2025-04-27\": {\n                \"available\": true\n            },\n            \"2025-04-28\": {\n                \"available\": true\n            },\n            \"2025-04-29\": {\n                \"available\": true\n            },\n            \"2025-04-30\": {\n                \"available\": true\n            },\n            \"2025-05-01\": {\n                \"available\": true\n            },\n            \"2025-05-02\": {\n                \"available\": true\n            },\n            \"2025-05-03\": {\n                \"available\": true\n            },\n            \"2025-05-04\": {\n                \"available\": true\n            },\n            \"2025-05-05\": {\n                \"available\": true\n            },\n            \"2025-05-06\": {\n                \"available\": true\n            },\n            \"2025-05-07\": {\n                \"available\": true\n            },\n            \"2025-05-08\": {\n                \"available\": true\n            },\n            \"2025-05-09\": {\n                \"available\": true\n            },\n            \"2025-05-10\": {\n                \"available\": false\n            },\n            \"2025-05-11\": {\n                \"available\": false\n            },\n            \"2025-05-12\": {\n                \"available\": false\n            },\n            \"2025-05-13\": {\n                \"available\": false\n            },\n            \"2025-05-14\": {\n                \"available\": false\n            },\n            \"2025-05-15\": {\n                \"available\": false\n            },\n            \"2025-05-16\": {\n                \"available\": false\n            },\n            \"2025-05-17\": {\n                \"available\": false\n            },\n            \"2025-05-18\": {\n                \"available\": false\n            },\n            \"2025-05-19\": {\n                \"available\": false\n            },\n            \"2025-05-20\": {\n                \"available\": false\n            },\n            \"2025-05-21\": {\n                \"available\": false\n            },\n            \"2025-05-22\": {\n                \"available\": false\n            },\n            \"2025-05-23\": {\n                \"available\": false\n            },\n            \"2025-05-24\": {\n                \"available\": false\n            },\n            \"2025-05-25\": {\n                \"available\": false\n            },\n            \"2025-05-26\": {\n                \"available\": false\n            },\n            \"2025-05-27\": {\n                \"available\": false\n            },\n            \"2025-05-28\": {\n                \"available\": false\n            },\n            \"2025-05-29\": {\n                \"available\": false\n            },\n            \"2025-05-30\": {\n                \"available\": false\n            },\n            \"2025-05-31\": {\n                \"available\": false\n            },\n            \"2025-06-01\": {\n                \"available\": false\n            },\n            \"2025-06-02\": {\n                \"available\": false\n            },\n            \"2025-06-03\": {\n                \"available\": false\n            },\n            \"2025-06-04\": {\n                \"available\": false\n            },\n            \"2025-06-05\": {\n                \"available\": false\n            },\n            \"2025-06-06\": {\n                \"available\": false\n            },\n            \"2025-06-07\": {\n                \"available\": true\n            },\n            \"2025-06-08\": {\n                \"available\": true\n            },\n            \"2025-06-09\": {\n                \"available\": true\n            },\n            \"2025-06-10\": {\n                \"available\": true\n            },\n            \"2025-06-11\": {\n                \"available\": true\n            },\n            \"2025-06-12\": {\n                \"available\": true\n            },\n            \"2025-06-13\": {\n                \"available\": true\n            },\n            \"2025-06-14\": {\n                \"available\": true\n            },\n            \"2025-06-15\": {\n                \"available\": true\n            },\n            \"2025-06-16\": {\n                \"available\": true\n            },\n            \"2025-06-17\": {\n                \"available\": true\n            },\n            \"2025-06-18\": {\n                \"available\": true\n            },\n            \"2025-06-19\": {\n                \"available\": true\n            },\n            \"2025-06-20\": {\n                \"available\": true\n            },\n            \"2025-06-21\": {\n                \"available\": false\n            },\n            \"2025-06-22\": {\n                \"available\": false\n            },\n            \"2025-06-23\": {\n                \"available\": false\n            },\n            \"2025-06-24\": {\n                \"available\": false\n            },\n            \"2025-06-25\": {\n                \"available\": false\n            },\n            \"2025-06-26\": {\n                \"available\": false\n            },\n            \"2025-06-27\": {\n                \"available\": false\n            },\n            \"2025-06-28\": {\n                \"available\": true\n            },\n            \"2025-06-29\": {\n                \"available\": true\n            },\n            \"2025-06-30\": {\n                \"available\": true\n            },\n            \"2025-07-01\": {\n                \"available\": true\n            },\n            \"2025-07-02\": {\n                \"available\": true\n            },\n            \"2025-07-03\": {\n                \"available\": false\n            },\n            \"2025-07-04\": {\n                \"available\": false\n            },\n            \"2025-07-05\": {\n                \"available\": false\n            },\n            \"2025-07-06\": {\n                \"available\": false\n            },\n            \"2025-07-07\": {\n                \"available\": false\n            },\n            \"2025-07-08\": {\n                \"available\": true\n            },\n            \"2025-07-09\": {\n                \"available\": true\n            },\n            \"2025-07-10\": {\n                \"available\": true\n            },\n            \"2025-07-11\": {\n                \"available\": true\n            },\n            \"2025-07-12\": {\n                \"available\": true\n            },\n            \"2025-07-13\": {\n                \"available\": true\n            },\n            \"2025-07-14\": {\n                \"available\": false\n            },\n            \"2025-07-15\": {\n                \"available\": false\n            },\n            \"2025-07-16\": {\n                \"available\": false\n            },\n            \"2025-07-17\": {\n                \"available\": false\n            },\n            \"2025-07-18\": {\n                \"available\": true\n            },\n            \"2025-07-19\": {\n                \"available\": true\n            },\n            \"2025-07-20\": {\n                \"available\": true\n            },\n            \"2025-07-21\": {\n                \"available\": true\n            },\n            \"2025-07-22\": {\n                \"available\": true\n            },\n            \"2025-07-23\": {\n                \"available\": true\n            },\n            \"2025-07-24\": {\n                \"available\": false\n            },\n            \"2025-07-25\": {\n                \"available\": false\n            },\n            \"2025-07-26\": {\n                \"available\": false\n            },\n            \"2025-07-27\": {\n                \"available\": true\n            },\n            \"2025-07-28\": {\n                \"available\": true\n            },\n            \"2025-07-29\": {\n                \"available\": true\n            },\n            \"2025-07-30\": {\n                \"available\": true\n            },\n            \"2025-07-31\": {\n                \"available\": true\n            },\n            \"2025-08-01\": {\n                \"available\": true\n            },\n            \"2025-08-02\": {\n                \"available\": false\n            },\n            \"2025-08-03\": {\n                \"available\": false\n            },\n            \"2025-08-04\": {\n                \"available\": false\n            },\n            \"2025-08-05\": {\n                \"available\": false\n            },\n            \"2025-08-06\": {\n                \"available\": false\n            },\n            \"2025-08-07\": {\n                \"available\": false\n            },\n            \"2025-08-08\": {\n                \"available\": false\n            },\n            \"2025-08-09\": {\n                \"available\": true\n            },\n            \"2025-08-10\": {\n                \"available\": true\n            },\n            \"2025-08-11\": {\n                \"available\": true\n            },\n            \"2025-08-12\": {\n                \"available\": true\n            },\n            \"2025-08-13\": {\n                \"available\": true\n            },\n            \"2025-08-14\": {\n                \"available\": true\n            },\n            \"2025-08-15\": {\n                \"available\": true\n            },\n            \"2025-08-16\": {\n                \"available\": true\n            },\n            \"2025-08-17\": {\n                \"available\": true\n            },\n            \"2025-08-18\": {\n                \"available\": true\n            },\n            \"2025-08-19\": {\n                \"available\": false\n            },\n            \"2025-08-20\": {\n                \"available\": false\n            },\n            \"2025-08-21\": {\n                \"available\": false\n            },\n            \"2025-08-22\": {\n                \"available\": false\n            },\n            \"2025-08-23\": {\n                \"available\": false\n            },\n            \"2025-08-24\": {\n                \"available\": true\n            },\n            \"2025-08-25\": {\n                \"available\": true\n            },\n            \"2025-08-26\": {\n                \"available\": true\n            },\n            \"2025-08-27\": {\n                \"available\": true\n            },\n            \"2025-08-28\": {\n                \"available\": true\n            },\n            \"2025-08-29\": {\n                \"available\": true\n            },\n            \"2025-08-30\": {\n                \"available\": true\n            },\n            \"2025-08-31\": {\n                \"available\": true\n            },\n            \"2025-09-01\": {\n                \"available\": true\n            },\n            \"2025-09-02\": {\n                \"available\": true\n            },\n            \"2025-09-03\": {\n                \"available\": true\n            },\n            \"2025-09-04\": {\n                \"available\": true\n            },\n            \"2025-09-05\": {\n                \"available\": true\n            },\n            \"2025-09-06\": {\n                \"available\": true\n            },\n            \"2025-09-07\": {\n                \"available\": true\n            },\n            \"2025-09-08\": {\n                \"available\": true\n            },\n            \"2025-09-09\": {\n                \"available\": true\n            },\n            \"2025-09-10\": {\n                \"available\": false\n            },\n            \"2025-09-11\": {\n                \"available\": false\n            },\n            \"2025-09-12\": {\n                \"available\": false\n            },\n            \"2025-09-13\": {\n                \"available\": false\n            },\n            \"2025-09-14\": {\n                \"available\": true\n            },\n            \"2025-09-15\": {\n                \"available\": true\n            },\n            \"2025-09-16\": {\n                \"available\": true\n            },\n            \"2025-09-17\": {\n                \"available\": true\n            },\n            \"2025-09-18\": {\n                \"available\": true\n            },\n            \"2025-09-19\": {\n                \"available\": true\n            },\n            \"2025-09-20\": {\n                \"available\": true\n            },\n            \"2025-09-21\": {\n                \"available\": true\n            },\n            \"2025-09-22\": {\n                \"available\": true\n            },\n            \"2025-09-23\": {\n                \"available\": true\n            },\n            \"2025-09-24\": {\n                \"available\": true\n            },\n            \"2025-09-25\": {\n                \"available\": true\n            },\n            \"2025-09-26\": {\n                \"available\": true\n            },\n            \"2025-09-27\": {\n                \"available\": true\n            },\n            \"2025-09-28\": {\n                \"available\": true\n            },\n            \"2025-09-29\": {\n                \"available\": true\n            },\n            \"2025-09-30\": {\n                \"available\": true\n            },\n            \"2025-10-01\": {\n                \"available\": true\n            },\n            \"2025-10-02\": {\n                \"available\": true\n            },\n            \"2025-10-03\": {\n                \"available\": true\n            },\n            \"2025-10-04\": {\n                \"available\": true\n            },\n            \"2025-10-05\": {\n                \"available\": true\n            },\n            \"2025-10-06\": {\n                \"available\": true\n            },\n            \"2025-10-07\": {\n                \"available\": true\n            },\n            \"2025-10-08\": {\n                \"available\": true\n            },\n            \"2025-10-09\": {\n                \"available\": true\n            },\n            \"2025-10-10\": {\n                \"available\": true\n            },\n            \"2025-10-11\": {\n                \"available\": true\n            },\n            \"2025-10-12\": {\n                \"available\": true\n            },\n            \"2025-10-13\": {\n                \"available\": true\n            },\n            \"2025-10-14\": {\n                \"available\": true\n            },\n            \"2025-10-15\": {\n                \"available\": true\n            },\n            \"2025-10-16\": {\n                \"available\": true\n            },\n            \"2025-10-17\": {\n                \"available\": true\n            },\n            \"2025-10-18\": {\n                \"available\": true\n            },\n            \"2025-10-19\": {\n                \"available\": true\n            },\n            \"2025-10-20\": {\n                \"available\": true\n            },\n            \"2025-10-21\": {\n                \"available\": true\n            },\n            \"2025-10-22\": {\n                \"available\": true\n            },\n            \"2025-10-23\": {\n                \"available\": true\n            },\n            \"2025-10-24\": {\n                \"available\": true\n            },\n            \"2025-10-25\": {\n                \"available\": true\n            },\n            \"2025-10-26\": {\n                \"available\": true\n            },\n            \"2025-10-27\": {\n                \"available\": true\n            },\n            \"2025-10-28\": {\n                \"available\": true\n            },\n            \"2025-10-29\": {\n                \"available\": true\n            },\n            \"2025-10-30\": {\n                \"available\": true\n            },\n            \"2025-10-31\": {\n                \"available\": true\n            },\n            \"2025-11-01\": {\n                \"available\": true\n            },\n            \"2025-11-02\": {\n                \"available\": true\n            },\n            \"2025-11-03\": {\n                \"available\": true\n            },\n            \"2025-11-04\": {\n                \"available\": true\n            },\n            \"2025-11-05\": {\n                \"available\": true\n            },\n            \"2025-11-06\": {\n                \"available\": true\n            },\n            \"2025-11-07\": {\n                \"available\": true\n            },\n            \"2025-11-08\": {\n                \"available\": true\n            },\n            \"2025-11-09\": {\n                \"available\": true\n            },\n            \"2025-11-10\": {\n                \"available\": true\n            },\n            \"2025-11-11\": {\n                \"available\": true\n            },\n            \"2025-11-12\": {\n                \"available\": true\n            },\n            \"2025-11-13\": {\n                \"available\": true\n            },\n            \"2025-11-14\": {\n                \"available\": true\n            },\n            \"2025-11-15\": {\n                \"available\": true\n            },\n            \"2025-11-16\": {\n                \"available\": true\n            },\n            \"2025-11-17\": {\n                \"available\": true\n            },\n            \"2025-11-18\": {\n                \"available\": true\n            },\n            \"2025-11-19\": {\n                \"available\": true\n            },\n            \"2025-11-20\": {\n                \"available\": true\n            },\n            \"2025-11-21\": {\n                \"available\": true\n            },\n            \"2025-11-22\": {\n                \"available\": true\n            },\n            \"2025-11-23\": {\n                \"available\": true\n            },\n            \"2025-11-24\": {\n                \"available\": true\n            },\n            \"2025-11-25\": {\n                \"available\": true\n            },\n            \"2025-11-26\": {\n                \"available\": true\n            },\n            \"2025-11-27\": {\n                \"available\": true\n            },\n            \"2025-11-28\": {\n                \"available\": true\n            },\n            \"2025-11-29\": {\n                \"available\": true\n            },\n            \"2025-11-30\": {\n                \"available\": true\n            },\n            \"2025-12-01\": {\n                \"available\": true\n            },\n            \"2025-12-02\": {\n                \"available\": true\n            },\n            \"2025-12-03\": {\n                \"available\": true\n            },\n            \"2025-12-04\": {\n                \"available\": true\n            },\n            \"2025-12-05\": {\n                \"available\": true\n            },\n            \"2025-12-06\": {\n                \"available\": true\n            },\n            \"2025-12-07\": {\n                \"available\": true\n            },\n            \"2025-12-08\": {\n                \"available\": true\n            },\n            \"2025-12-09\": {\n                \"available\": true\n            },\n            \"2025-12-10\": {\n                \"available\": true\n            },\n            \"2025-12-11\": {\n                \"available\": true\n            },\n            \"2025-12-12\": {\n                \"available\": true\n            },\n            \"2025-12-13\": {\n                \"available\": true\n            },\n            \"2025-12-14\": {\n                \"available\": true\n            },\n            \"2025-12-15\": {\n                \"available\": true\n            },\n            \"2025-12-16\": {\n                \"available\": true\n            },\n            \"2025-12-17\": {\n                \"available\": true\n            },\n            \"2025-12-18\": {\n                \"available\": true\n            },\n            \"2025-12-19\": {\n                \"available\": true\n            },\n            \"2025-12-20\": {\n                \"available\": true\n            },\n            \"2025-12-21\": {\n                \"available\": true\n            },\n            \"2025-12-22\": {\n                \"available\": true\n            },\n            \"2025-12-23\": {\n                \"available\": true\n            },\n            \"2025-12-24\": {\n                \"available\": true\n            },\n            \"2025-12-25\": {\n                \"available\": true\n            },\n            \"2025-12-26\": {\n                \"available\": true\n            },\n            \"2025-12-27\": {\n                \"available\": true\n            },\n            \"2025-12-28\": {\n                \"available\": true\n            },\n            \"2025-12-29\": {\n                \"available\": true\n            },\n            \"2025-12-30\": {\n                \"available\": true\n            },\n            \"2025-12-31\": {\n                \"available\": true\n            },\n            \"2026-01-01\": {\n                \"available\": true\n            },\n            \"2026-01-02\": {\n                \"available\": true\n            },\n            \"2026-01-03\": {\n                \"available\": true\n            },\n            \"2026-01-04\": {\n                \"available\": true\n            }\n        }\n    }\n}"}],"_postman_id":"67ea6237-8de3-4232-bc23-364e27261455"},{"name":"pricing","id":"ab101d36-1925-4730-a604-679afa9959b2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{domain}}/api/partners/properties/11401/pricing","description":"<h3 id=\"get-property-pricing\">Get Property Pricing</h3>\n<p>This endpoint retrieves the pricing information for a specific property belonging to a partner.</p>\n<p>You will note that under \"pricing\" the \"nights\" will range from 1 to 28.</p>\n<p>Inside that are YYYY-MM-DD dates and quotes for holidays for that number of nights.</p>\n<p>If any key of nights is entirely missing, the property does not offer stays of that number of nights, or has no availability left for that number of nights.</p>\n<p>The result for each night and date combination will feature:</p>\n<ul>\n<li><p><code>currency</code> - \"GBP\"</p>\n</li>\n<li><p><code>price</code> - the price of the given stay for that date.</p>\n</li>\n<li><p><code>price_inc_dd</code> - the cost including a damage deposit</p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"3f073019-b235-4945-8bf1-9594767d99d5","id":"3f073019-b235-4945-8bf1-9594767d99d5","name":"Properties","type":"folder"}},"urlObject":{"path":["api","partners","properties","11401","pricing"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"79c21f6e-b84f-438f-805e-82eeba8adb27","name":"success","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{domain}}/api/partners/properties/11401/pricing"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8080"},{"key":"Date","value":"Tue, 25 Mar 2025 13:22:23 GMT"},{"key":"Date","value":"Tue, 25 Mar 2025 13:22:23 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.2.0"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"1000"},{"key":"X-RateLimit-Remaining","value":"998"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"property_id\": 11401,\n        \"pricing\": {\n            \"nights\": {\n                \"3\": {\n                    \"2025-03-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"683.00\",\n                        \"price_inc_damage_deposit\": \"783.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-03-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"684.00\",\n                        \"price_inc_damage_deposit\": \"784.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-03-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"684.00\",\n                        \"price_inc_damage_deposit\": \"784.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-03-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"683.00\",\n                        \"price_inc_damage_deposit\": \"783.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-03-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"683.00\",\n                        \"price_inc_damage_deposit\": \"783.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-03-31\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"683.00\",\n                        \"price_inc_damage_deposit\": \"783.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-04-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"683.00\",\n                        \"price_inc_damage_deposit\": \"783.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-04-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"683.00\",\n                        \"price_inc_damage_deposit\": \"783.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-04-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"708.00\",\n                        \"price_inc_damage_deposit\": \"808.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-04-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"733.00\",\n                        \"price_inc_damage_deposit\": \"833.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-04-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-04-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-04-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-04-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-04-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-04-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-04-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-04-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-04-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"937.00\",\n                        \"price_inc_damage_deposit\": \"1037.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"937.00\",\n                        \"price_inc_damage_deposit\": \"1037.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"937.00\",\n                        \"price_inc_damage_deposit\": \"1037.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"937.00\",\n                        \"price_inc_damage_deposit\": \"1037.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-31\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"937.00\",\n                        \"price_inc_damage_deposit\": \"1037.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"937.00\",\n                        \"price_inc_damage_deposit\": \"1037.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1016.00\",\n                        \"price_inc_damage_deposit\": \"1116.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1095.00\",\n                        \"price_inc_damage_deposit\": \"1195.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1173.00\",\n                        \"price_inc_damage_deposit\": \"1273.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1173.00\",\n                        \"price_inc_damage_deposit\": \"1273.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1173.00\",\n                        \"price_inc_damage_deposit\": \"1273.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1173.00\",\n                        \"price_inc_damage_deposit\": \"1273.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1173.00\",\n                        \"price_inc_damage_deposit\": \"1273.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1173.00\",\n                        \"price_inc_damage_deposit\": \"1273.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1173.00\",\n                        \"price_inc_damage_deposit\": \"1273.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1174.00\",\n                        \"price_inc_damage_deposit\": \"1274.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1174.00\",\n                        \"price_inc_damage_deposit\": \"1274.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1173.00\",\n                        \"price_inc_damage_deposit\": \"1273.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1173.00\",\n                        \"price_inc_damage_deposit\": \"1273.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1173.00\",\n                        \"price_inc_damage_deposit\": \"1273.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1173.00\",\n                        \"price_inc_damage_deposit\": \"1273.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1173.00\",\n                        \"price_inc_damage_deposit\": \"1273.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-08-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1173.00\",\n                        \"price_inc_damage_deposit\": \"1273.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-08-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1173.00\",\n                        \"price_inc_damage_deposit\": \"1273.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-08-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1173.00\",\n                        \"price_inc_damage_deposit\": \"1273.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-08-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1173.00\",\n                        \"price_inc_damage_deposit\": \"1273.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-08-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1173.00\",\n                        \"price_inc_damage_deposit\": \"1273.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-08-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1016.00\",\n                        \"price_inc_damage_deposit\": \"1116.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-08-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-08-31\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"937.00\",\n                        \"price_inc_damage_deposit\": \"1037.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"937.00\",\n                        \"price_inc_damage_deposit\": \"1037.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"937.00\",\n                        \"price_inc_damage_deposit\": \"1037.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"937.00\",\n                        \"price_inc_damage_deposit\": \"1037.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"937.00\",\n                        \"price_inc_damage_deposit\": \"1037.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"877.00\",\n                        \"price_inc_damage_deposit\": \"977.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"816.00\",\n                        \"price_inc_damage_deposit\": \"916.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"756.00\",\n                        \"price_inc_damage_deposit\": \"856.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"756.00\",\n                        \"price_inc_damage_deposit\": \"856.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"756.00\",\n                        \"price_inc_damage_deposit\": \"856.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"756.00\",\n                        \"price_inc_damage_deposit\": \"856.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"756.00\",\n                        \"price_inc_damage_deposit\": \"856.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"756.00\",\n                        \"price_inc_damage_deposit\": \"856.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"756.00\",\n                        \"price_inc_damage_deposit\": \"856.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-31\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"756.00\",\n                        \"price_inc_damage_deposit\": \"856.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"756.00\",\n                        \"price_inc_damage_deposit\": \"856.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"756.00\",\n                        \"price_inc_damage_deposit\": \"856.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"756.00\",\n                        \"price_inc_damage_deposit\": \"856.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"756.00\",\n                        \"price_inc_damage_deposit\": \"856.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"756.00\",\n                        \"price_inc_damage_deposit\": \"856.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"756.00\",\n                        \"price_inc_damage_deposit\": \"856.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"756.00\",\n                        \"price_inc_damage_deposit\": \"856.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"756.00\",\n                        \"price_inc_damage_deposit\": \"856.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"756.00\",\n                        \"price_inc_damage_deposit\": \"856.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"756.00\",\n                        \"price_inc_damage_deposit\": \"856.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"756.00\",\n                        \"price_inc_damage_deposit\": \"856.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"756.00\",\n                        \"price_inc_damage_deposit\": \"856.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"816.00\",\n                        \"price_inc_damage_deposit\": \"916.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"877.00\",\n                        \"price_inc_damage_deposit\": \"977.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"937.00\",\n                        \"price_inc_damage_deposit\": \"1037.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"937.00\",\n                        \"price_inc_damage_deposit\": \"1037.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-31\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"936.00\",\n                        \"price_inc_damage_deposit\": \"1036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    }\n                },\n                \"4\": {\n                    \"2025-03-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"736.00\",\n                        \"price_inc_damage_deposit\": \"836.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-03-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"734.00\",\n                        \"price_inc_damage_deposit\": \"834.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-03-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"736.00\",\n                        \"price_inc_damage_deposit\": \"836.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-03-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"733.00\",\n                        \"price_inc_damage_deposit\": \"833.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-03-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"733.00\",\n                        \"price_inc_damage_deposit\": \"833.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-03-31\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"733.00\",\n                        \"price_inc_damage_deposit\": \"833.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-04-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"733.00\",\n                        \"price_inc_damage_deposit\": \"833.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-04-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"755.00\",\n                        \"price_inc_damage_deposit\": \"855.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-04-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"773.00\",\n                        \"price_inc_damage_deposit\": \"873.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-04-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"794.00\",\n                        \"price_inc_damage_deposit\": \"894.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-04-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-04-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-04-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-04-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-04-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1006.00\",\n                        \"price_inc_damage_deposit\": \"1106.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1006.00\",\n                        \"price_inc_damage_deposit\": \"1106.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1006.00\",\n                        \"price_inc_damage_deposit\": \"1106.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1006.00\",\n                        \"price_inc_damage_deposit\": \"1106.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-31\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1006.00\",\n                        \"price_inc_damage_deposit\": \"1106.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1006.00\",\n                        \"price_inc_damage_deposit\": \"1106.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1070.00\",\n                        \"price_inc_damage_deposit\": \"1170.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1134.00\",\n                        \"price_inc_damage_deposit\": \"1234.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1199.00\",\n                        \"price_inc_damage_deposit\": \"1299.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1261.00\",\n                        \"price_inc_damage_deposit\": \"1361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1261.00\",\n                        \"price_inc_damage_deposit\": \"1361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1261.00\",\n                        \"price_inc_damage_deposit\": \"1361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1261.00\",\n                        \"price_inc_damage_deposit\": \"1361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1261.00\",\n                        \"price_inc_damage_deposit\": \"1361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1262.00\",\n                        \"price_inc_damage_deposit\": \"1362.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1262.00\",\n                        \"price_inc_damage_deposit\": \"1362.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1262.00\",\n                        \"price_inc_damage_deposit\": \"1362.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1261.00\",\n                        \"price_inc_damage_deposit\": \"1361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1261.00\",\n                        \"price_inc_damage_deposit\": \"1361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1261.00\",\n                        \"price_inc_damage_deposit\": \"1361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1261.00\",\n                        \"price_inc_damage_deposit\": \"1361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-08-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1261.00\",\n                        \"price_inc_damage_deposit\": \"1361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-08-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1261.00\",\n                        \"price_inc_damage_deposit\": \"1361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-08-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1261.00\",\n                        \"price_inc_damage_deposit\": \"1361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-08-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1261.00\",\n                        \"price_inc_damage_deposit\": \"1361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-08-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1070.00\",\n                        \"price_inc_damage_deposit\": \"1170.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-08-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-08-31\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1006.00\",\n                        \"price_inc_damage_deposit\": \"1106.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1006.00\",\n                        \"price_inc_damage_deposit\": \"1106.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1006.00\",\n                        \"price_inc_damage_deposit\": \"1106.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1006.00\",\n                        \"price_inc_damage_deposit\": \"1106.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1006.00\",\n                        \"price_inc_damage_deposit\": \"1106.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"958.00\",\n                        \"price_inc_damage_deposit\": \"1058.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"908.00\",\n                        \"price_inc_damage_deposit\": \"1008.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"861.00\",\n                        \"price_inc_damage_deposit\": \"961.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"813.00\",\n                        \"price_inc_damage_deposit\": \"913.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"812.00\",\n                        \"price_inc_damage_deposit\": \"912.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"813.00\",\n                        \"price_inc_damage_deposit\": \"913.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"813.00\",\n                        \"price_inc_damage_deposit\": \"913.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"812.00\",\n                        \"price_inc_damage_deposit\": \"912.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"813.00\",\n                        \"price_inc_damage_deposit\": \"913.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"813.00\",\n                        \"price_inc_damage_deposit\": \"913.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"812.00\",\n                        \"price_inc_damage_deposit\": \"912.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"813.00\",\n                        \"price_inc_damage_deposit\": \"913.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"813.00\",\n                        \"price_inc_damage_deposit\": \"913.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"812.00\",\n                        \"price_inc_damage_deposit\": \"912.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-31\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"813.00\",\n                        \"price_inc_damage_deposit\": \"913.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"813.00\",\n                        \"price_inc_damage_deposit\": \"913.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"812.00\",\n                        \"price_inc_damage_deposit\": \"912.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"813.00\",\n                        \"price_inc_damage_deposit\": \"913.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"813.00\",\n                        \"price_inc_damage_deposit\": \"913.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"812.00\",\n                        \"price_inc_damage_deposit\": \"912.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"813.00\",\n                        \"price_inc_damage_deposit\": \"913.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"813.00\",\n                        \"price_inc_damage_deposit\": \"913.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"812.00\",\n                        \"price_inc_damage_deposit\": \"912.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"813.00\",\n                        \"price_inc_damage_deposit\": \"913.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"813.00\",\n                        \"price_inc_damage_deposit\": \"913.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"812.00\",\n                        \"price_inc_damage_deposit\": \"912.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"813.00\",\n                        \"price_inc_damage_deposit\": \"913.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"813.00\",\n                        \"price_inc_damage_deposit\": \"913.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"812.00\",\n                        \"price_inc_damage_deposit\": \"912.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"813.00\",\n                        \"price_inc_damage_deposit\": \"913.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"813.00\",\n                        \"price_inc_damage_deposit\": \"913.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"812.00\",\n                        \"price_inc_damage_deposit\": \"912.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"813.00\",\n                        \"price_inc_damage_deposit\": \"913.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"810.00\",\n                        \"price_inc_damage_deposit\": \"910.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"861.00\",\n                        \"price_inc_damage_deposit\": \"961.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"908.00\",\n                        \"price_inc_damage_deposit\": \"1008.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"958.00\",\n                        \"price_inc_damage_deposit\": \"1058.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1006.00\",\n                        \"price_inc_damage_deposit\": \"1106.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1006.00\",\n                        \"price_inc_damage_deposit\": \"1106.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1005.00\",\n                        \"price_inc_damage_deposit\": \"1105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    }\n                },\n                \"5\": {\n                    \"2025-03-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"835.00\",\n                        \"price_inc_damage_deposit\": \"935.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-03-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"835.00\",\n                        \"price_inc_damage_deposit\": \"935.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-03-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"835.00\",\n                        \"price_inc_damage_deposit\": \"935.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-03-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"834.00\",\n                        \"price_inc_damage_deposit\": \"934.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-03-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"834.00\",\n                        \"price_inc_damage_deposit\": \"934.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-03-31\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"834.00\",\n                        \"price_inc_damage_deposit\": \"934.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-04-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"853.00\",\n                        \"price_inc_damage_deposit\": \"953.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-04-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"871.00\",\n                        \"price_inc_damage_deposit\": \"971.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-04-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"888.00\",\n                        \"price_inc_damage_deposit\": \"988.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-04-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"906.00\",\n                        \"price_inc_damage_deposit\": \"1006.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-04-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"923.00\",\n                        \"price_inc_damage_deposit\": \"1023.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-04-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"923.00\",\n                        \"price_inc_damage_deposit\": \"1023.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1144.00\",\n                        \"price_inc_damage_deposit\": \"1244.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1144.00\",\n                        \"price_inc_damage_deposit\": \"1244.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1144.00\",\n                        \"price_inc_damage_deposit\": \"1244.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1144.00\",\n                        \"price_inc_damage_deposit\": \"1244.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1144.00\",\n                        \"price_inc_damage_deposit\": \"1244.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1144.00\",\n                        \"price_inc_damage_deposit\": \"1244.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1144.00\",\n                        \"price_inc_damage_deposit\": \"1244.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-31\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1144.00\",\n                        \"price_inc_damage_deposit\": \"1244.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1144.00\",\n                        \"price_inc_damage_deposit\": \"1244.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1144.00\",\n                        \"price_inc_damage_deposit\": \"1244.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1144.00\",\n                        \"price_inc_damage_deposit\": \"1244.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1144.00\",\n                        \"price_inc_damage_deposit\": \"1244.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1144.00\",\n                        \"price_inc_damage_deposit\": \"1244.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1144.00\",\n                        \"price_inc_damage_deposit\": \"1244.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1144.00\",\n                        \"price_inc_damage_deposit\": \"1244.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1205.00\",\n                        \"price_inc_damage_deposit\": \"1305.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1262.00\",\n                        \"price_inc_damage_deposit\": \"1362.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1321.00\",\n                        \"price_inc_damage_deposit\": \"1421.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1379.00\",\n                        \"price_inc_damage_deposit\": \"1479.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1437.00\",\n                        \"price_inc_damage_deposit\": \"1537.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1437.00\",\n                        \"price_inc_damage_deposit\": \"1537.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1437.00\",\n                        \"price_inc_damage_deposit\": \"1537.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1438.00\",\n                        \"price_inc_damage_deposit\": \"1538.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1438.00\",\n                        \"price_inc_damage_deposit\": \"1538.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1438.00\",\n                        \"price_inc_damage_deposit\": \"1538.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1438.00\",\n                        \"price_inc_damage_deposit\": \"1538.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1437.00\",\n                        \"price_inc_damage_deposit\": \"1537.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1437.00\",\n                        \"price_inc_damage_deposit\": \"1537.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1437.00\",\n                        \"price_inc_damage_deposit\": \"1537.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-08-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1437.00\",\n                        \"price_inc_damage_deposit\": \"1537.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-08-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1437.00\",\n                        \"price_inc_damage_deposit\": \"1537.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-08-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1437.00\",\n                        \"price_inc_damage_deposit\": \"1537.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-08-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1205.00\",\n                        \"price_inc_damage_deposit\": \"1305.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-08-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1144.00\",\n                        \"price_inc_damage_deposit\": \"1244.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-08-31\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1144.00\",\n                        \"price_inc_damage_deposit\": \"1244.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1144.00\",\n                        \"price_inc_damage_deposit\": \"1244.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1144.00\",\n                        \"price_inc_damage_deposit\": \"1244.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1144.00\",\n                        \"price_inc_damage_deposit\": \"1244.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1144.00\",\n                        \"price_inc_damage_deposit\": \"1244.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1144.00\",\n                        \"price_inc_damage_deposit\": \"1244.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1144.00\",\n                        \"price_inc_damage_deposit\": \"1244.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1144.00\",\n                        \"price_inc_damage_deposit\": \"1244.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1144.00\",\n                        \"price_inc_damage_deposit\": \"1244.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1144.00\",\n                        \"price_inc_damage_deposit\": \"1244.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1144.00\",\n                        \"price_inc_damage_deposit\": \"1244.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1102.00\",\n                        \"price_inc_damage_deposit\": \"1202.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1057.00\",\n                        \"price_inc_damage_deposit\": \"1157.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1012.00\",\n                        \"price_inc_damage_deposit\": \"1112.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"967.00\",\n                        \"price_inc_damage_deposit\": \"1067.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"923.00\",\n                        \"price_inc_damage_deposit\": \"1023.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"923.00\",\n                        \"price_inc_damage_deposit\": \"1023.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"923.00\",\n                        \"price_inc_damage_deposit\": \"1023.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"924.00\",\n                        \"price_inc_damage_deposit\": \"1024.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"924.00\",\n                        \"price_inc_damage_deposit\": \"1024.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"924.00\",\n                        \"price_inc_damage_deposit\": \"1024.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"924.00\",\n                        \"price_inc_damage_deposit\": \"1024.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"923.00\",\n                        \"price_inc_damage_deposit\": \"1023.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"923.00\",\n                        \"price_inc_damage_deposit\": \"1023.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"923.00\",\n                        \"price_inc_damage_deposit\": \"1023.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"924.00\",\n                        \"price_inc_damage_deposit\": \"1024.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"924.00\",\n                        \"price_inc_damage_deposit\": \"1024.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"924.00\",\n                        \"price_inc_damage_deposit\": \"1024.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"924.00\",\n                        \"price_inc_damage_deposit\": \"1024.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"923.00\",\n                        \"price_inc_damage_deposit\": \"1023.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"923.00\",\n                        \"price_inc_damage_deposit\": \"1023.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"923.00\",\n                        \"price_inc_damage_deposit\": \"1023.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"924.00\",\n                        \"price_inc_damage_deposit\": \"1024.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"924.00\",\n                        \"price_inc_damage_deposit\": \"1024.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"924.00\",\n                        \"price_inc_damage_deposit\": \"1024.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"924.00\",\n                        \"price_inc_damage_deposit\": \"1024.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"923.00\",\n                        \"price_inc_damage_deposit\": \"1023.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"923.00\",\n                        \"price_inc_damage_deposit\": \"1023.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"923.00\",\n                        \"price_inc_damage_deposit\": \"1023.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"924.00\",\n                        \"price_inc_damage_deposit\": \"1024.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"924.00\",\n                        \"price_inc_damage_deposit\": \"1024.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"924.00\",\n                        \"price_inc_damage_deposit\": \"1024.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-31\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"924.00\",\n                        \"price_inc_damage_deposit\": \"1024.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"923.00\",\n                        \"price_inc_damage_deposit\": \"1023.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"923.00\",\n                        \"price_inc_damage_deposit\": \"1023.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"923.00\",\n                        \"price_inc_damage_deposit\": \"1023.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"924.00\",\n                        \"price_inc_damage_deposit\": \"1024.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"924.00\",\n                        \"price_inc_damage_deposit\": \"1024.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"924.00\",\n                        \"price_inc_damage_deposit\": \"1024.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"924.00\",\n                        \"price_inc_damage_deposit\": \"1024.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"923.00\",\n                        \"price_inc_damage_deposit\": \"1023.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"923.00\",\n                        \"price_inc_damage_deposit\": \"1023.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"923.00\",\n                        \"price_inc_damage_deposit\": \"1023.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"924.00\",\n                        \"price_inc_damage_deposit\": \"1024.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"924.00\",\n                        \"price_inc_damage_deposit\": \"1024.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"924.00\",\n                        \"price_inc_damage_deposit\": \"1024.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"924.00\",\n                        \"price_inc_damage_deposit\": \"1024.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"923.00\",\n                        \"price_inc_damage_deposit\": \"1023.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"923.00\",\n                        \"price_inc_damage_deposit\": \"1023.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"923.00\",\n                        \"price_inc_damage_deposit\": \"1023.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"924.00\",\n                        \"price_inc_damage_deposit\": \"1024.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"924.00\",\n                        \"price_inc_damage_deposit\": \"1024.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"924.00\",\n                        \"price_inc_damage_deposit\": \"1024.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"924.00\",\n                        \"price_inc_damage_deposit\": \"1024.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"923.00\",\n                        \"price_inc_damage_deposit\": \"1023.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"923.00\",\n                        \"price_inc_damage_deposit\": \"1023.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"923.00\",\n                        \"price_inc_damage_deposit\": \"1023.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"924.00\",\n                        \"price_inc_damage_deposit\": \"1024.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"924.00\",\n                        \"price_inc_damage_deposit\": \"1024.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"924.00\",\n                        \"price_inc_damage_deposit\": \"1024.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"924.00\",\n                        \"price_inc_damage_deposit\": \"1024.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"923.00\",\n                        \"price_inc_damage_deposit\": \"1023.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"923.00\",\n                        \"price_inc_damage_deposit\": \"1023.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"923.00\",\n                        \"price_inc_damage_deposit\": \"1023.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"924.00\",\n                        \"price_inc_damage_deposit\": \"1024.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"924.00\",\n                        \"price_inc_damage_deposit\": \"1024.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"924.00\",\n                        \"price_inc_damage_deposit\": \"1024.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"924.00\",\n                        \"price_inc_damage_deposit\": \"1024.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"923.00\",\n                        \"price_inc_damage_deposit\": \"1023.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"923.00\",\n                        \"price_inc_damage_deposit\": \"1023.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"923.00\",\n                        \"price_inc_damage_deposit\": \"1023.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"924.00\",\n                        \"price_inc_damage_deposit\": \"1024.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"924.00\",\n                        \"price_inc_damage_deposit\": \"1024.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"924.00\",\n                        \"price_inc_damage_deposit\": \"1024.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"924.00\",\n                        \"price_inc_damage_deposit\": \"1024.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"923.00\",\n                        \"price_inc_damage_deposit\": \"1023.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"923.00\",\n                        \"price_inc_damage_deposit\": \"1023.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"923.00\",\n                        \"price_inc_damage_deposit\": \"1023.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"967.00\",\n                        \"price_inc_damage_deposit\": \"1067.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1012.00\",\n                        \"price_inc_damage_deposit\": \"1112.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1057.00\",\n                        \"price_inc_damage_deposit\": \"1157.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1102.00\",\n                        \"price_inc_damage_deposit\": \"1202.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1144.00\",\n                        \"price_inc_damage_deposit\": \"1244.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1144.00\",\n                        \"price_inc_damage_deposit\": \"1244.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1144.00\",\n                        \"price_inc_damage_deposit\": \"1244.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1144.00\",\n                        \"price_inc_damage_deposit\": \"1244.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1144.00\",\n                        \"price_inc_damage_deposit\": \"1244.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1144.00\",\n                        \"price_inc_damage_deposit\": \"1244.00\",\n                        \"damage_deposit\": \"100.00\"\n                    }\n                },\n                \"6\": {\n                    \"2025-03-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"986.00\",\n                        \"price_inc_damage_deposit\": \"1086.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-03-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"986.00\",\n                        \"price_inc_damage_deposit\": \"1086.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-03-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"986.00\",\n                        \"price_inc_damage_deposit\": \"1086.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-03-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"984.00\",\n                        \"price_inc_damage_deposit\": \"1084.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-03-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"984.00\",\n                        \"price_inc_damage_deposit\": \"1084.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-03-31\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1004.00\",\n                        \"price_inc_damage_deposit\": \"1104.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-04-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1022.00\",\n                        \"price_inc_damage_deposit\": \"1122.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-04-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1038.00\",\n                        \"price_inc_damage_deposit\": \"1138.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-04-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1056.00\",\n                        \"price_inc_damage_deposit\": \"1156.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-04-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1074.00\",\n                        \"price_inc_damage_deposit\": \"1174.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1354.00\",\n                        \"price_inc_damage_deposit\": \"1454.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1354.00\",\n                        \"price_inc_damage_deposit\": \"1454.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1354.00\",\n                        \"price_inc_damage_deposit\": \"1454.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1354.00\",\n                        \"price_inc_damage_deposit\": \"1454.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1354.00\",\n                        \"price_inc_damage_deposit\": \"1454.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1353.00\",\n                        \"price_inc_damage_deposit\": \"1453.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1353.00\",\n                        \"price_inc_damage_deposit\": \"1453.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1354.00\",\n                        \"price_inc_damage_deposit\": \"1454.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1354.00\",\n                        \"price_inc_damage_deposit\": \"1454.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1354.00\",\n                        \"price_inc_damage_deposit\": \"1454.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1354.00\",\n                        \"price_inc_damage_deposit\": \"1454.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1354.00\",\n                        \"price_inc_damage_deposit\": \"1454.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1353.00\",\n                        \"price_inc_damage_deposit\": \"1453.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1353.00\",\n                        \"price_inc_damage_deposit\": \"1453.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-31\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1353.00\",\n                        \"price_inc_damage_deposit\": \"1453.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1353.00\",\n                        \"price_inc_damage_deposit\": \"1453.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1353.00\",\n                        \"price_inc_damage_deposit\": \"1453.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1354.00\",\n                        \"price_inc_damage_deposit\": \"1454.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1354.00\",\n                        \"price_inc_damage_deposit\": \"1454.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1354.00\",\n                        \"price_inc_damage_deposit\": \"1454.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1354.00\",\n                        \"price_inc_damage_deposit\": \"1454.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1354.00\",\n                        \"price_inc_damage_deposit\": \"1454.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1353.00\",\n                        \"price_inc_damage_deposit\": \"1453.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1353.00\",\n                        \"price_inc_damage_deposit\": \"1453.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1412.00\",\n                        \"price_inc_damage_deposit\": \"1512.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1470.00\",\n                        \"price_inc_damage_deposit\": \"1570.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1528.00\",\n                        \"price_inc_damage_deposit\": \"1628.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1586.00\",\n                        \"price_inc_damage_deposit\": \"1686.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1644.00\",\n                        \"price_inc_damage_deposit\": \"1744.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1700.00\",\n                        \"price_inc_damage_deposit\": \"1800.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1701.00\",\n                        \"price_inc_damage_deposit\": \"1801.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1701.00\",\n                        \"price_inc_damage_deposit\": \"1801.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1701.00\",\n                        \"price_inc_damage_deposit\": \"1801.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1701.00\",\n                        \"price_inc_damage_deposit\": \"1801.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1701.00\",\n                        \"price_inc_damage_deposit\": \"1801.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1700.00\",\n                        \"price_inc_damage_deposit\": \"1800.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1700.00\",\n                        \"price_inc_damage_deposit\": \"1800.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-08-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1700.00\",\n                        \"price_inc_damage_deposit\": \"1800.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-08-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1700.00\",\n                        \"price_inc_damage_deposit\": \"1800.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-08-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1412.00\",\n                        \"price_inc_damage_deposit\": \"1512.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-08-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1353.00\",\n                        \"price_inc_damage_deposit\": \"1453.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-08-31\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1353.00\",\n                        \"price_inc_damage_deposit\": \"1453.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1354.00\",\n                        \"price_inc_damage_deposit\": \"1454.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1353.00\",\n                        \"price_inc_damage_deposit\": \"1453.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1353.00\",\n                        \"price_inc_damage_deposit\": \"1453.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1354.00\",\n                        \"price_inc_damage_deposit\": \"1454.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1354.00\",\n                        \"price_inc_damage_deposit\": \"1454.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1354.00\",\n                        \"price_inc_damage_deposit\": \"1454.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1354.00\",\n                        \"price_inc_damage_deposit\": \"1454.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1354.00\",\n                        \"price_inc_damage_deposit\": \"1454.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1353.00\",\n                        \"price_inc_damage_deposit\": \"1453.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1353.00\",\n                        \"price_inc_damage_deposit\": \"1453.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1354.00\",\n                        \"price_inc_damage_deposit\": \"1454.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1354.00\",\n                        \"price_inc_damage_deposit\": \"1454.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1354.00\",\n                        \"price_inc_damage_deposit\": \"1454.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1354.00\",\n                        \"price_inc_damage_deposit\": \"1454.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1354.00\",\n                        \"price_inc_damage_deposit\": \"1454.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1353.00\",\n                        \"price_inc_damage_deposit\": \"1453.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1353.00\",\n                        \"price_inc_damage_deposit\": \"1453.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1311.00\",\n                        \"price_inc_damage_deposit\": \"1411.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1267.00\",\n                        \"price_inc_damage_deposit\": \"1367.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1222.00\",\n                        \"price_inc_damage_deposit\": \"1322.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1179.00\",\n                        \"price_inc_damage_deposit\": \"1279.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1135.00\",\n                        \"price_inc_damage_deposit\": \"1235.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1089.00\",\n                        \"price_inc_damage_deposit\": \"1189.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1089.00\",\n                        \"price_inc_damage_deposit\": \"1189.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1091.00\",\n                        \"price_inc_damage_deposit\": \"1191.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1091.00\",\n                        \"price_inc_damage_deposit\": \"1191.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1090.00\",\n                        \"price_inc_damage_deposit\": \"1190.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1091.00\",\n                        \"price_inc_damage_deposit\": \"1191.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1091.00\",\n                        \"price_inc_damage_deposit\": \"1191.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1089.00\",\n                        \"price_inc_damage_deposit\": \"1189.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1089.00\",\n                        \"price_inc_damage_deposit\": \"1189.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1091.00\",\n                        \"price_inc_damage_deposit\": \"1191.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1091.00\",\n                        \"price_inc_damage_deposit\": \"1191.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1090.00\",\n                        \"price_inc_damage_deposit\": \"1190.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1091.00\",\n                        \"price_inc_damage_deposit\": \"1191.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1091.00\",\n                        \"price_inc_damage_deposit\": \"1191.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1089.00\",\n                        \"price_inc_damage_deposit\": \"1189.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1089.00\",\n                        \"price_inc_damage_deposit\": \"1189.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1091.00\",\n                        \"price_inc_damage_deposit\": \"1191.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1091.00\",\n                        \"price_inc_damage_deposit\": \"1191.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1090.00\",\n                        \"price_inc_damage_deposit\": \"1190.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1091.00\",\n                        \"price_inc_damage_deposit\": \"1191.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1091.00\",\n                        \"price_inc_damage_deposit\": \"1191.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1089.00\",\n                        \"price_inc_damage_deposit\": \"1189.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1089.00\",\n                        \"price_inc_damage_deposit\": \"1189.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1091.00\",\n                        \"price_inc_damage_deposit\": \"1191.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1091.00\",\n                        \"price_inc_damage_deposit\": \"1191.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1090.00\",\n                        \"price_inc_damage_deposit\": \"1190.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1091.00\",\n                        \"price_inc_damage_deposit\": \"1191.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-31\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1091.00\",\n                        \"price_inc_damage_deposit\": \"1191.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1089.00\",\n                        \"price_inc_damage_deposit\": \"1189.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1089.00\",\n                        \"price_inc_damage_deposit\": \"1189.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1091.00\",\n                        \"price_inc_damage_deposit\": \"1191.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1091.00\",\n                        \"price_inc_damage_deposit\": \"1191.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1090.00\",\n                        \"price_inc_damage_deposit\": \"1190.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1091.00\",\n                        \"price_inc_damage_deposit\": \"1191.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1091.00\",\n                        \"price_inc_damage_deposit\": \"1191.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1089.00\",\n                        \"price_inc_damage_deposit\": \"1189.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1089.00\",\n                        \"price_inc_damage_deposit\": \"1189.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1091.00\",\n                        \"price_inc_damage_deposit\": \"1191.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1091.00\",\n                        \"price_inc_damage_deposit\": \"1191.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1090.00\",\n                        \"price_inc_damage_deposit\": \"1190.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1091.00\",\n                        \"price_inc_damage_deposit\": \"1191.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1091.00\",\n                        \"price_inc_damage_deposit\": \"1191.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1089.00\",\n                        \"price_inc_damage_deposit\": \"1189.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1089.00\",\n                        \"price_inc_damage_deposit\": \"1189.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1091.00\",\n                        \"price_inc_damage_deposit\": \"1191.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1091.00\",\n                        \"price_inc_damage_deposit\": \"1191.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1090.00\",\n                        \"price_inc_damage_deposit\": \"1190.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1091.00\",\n                        \"price_inc_damage_deposit\": \"1191.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1091.00\",\n                        \"price_inc_damage_deposit\": \"1191.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1089.00\",\n                        \"price_inc_damage_deposit\": \"1189.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1089.00\",\n                        \"price_inc_damage_deposit\": \"1189.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1091.00\",\n                        \"price_inc_damage_deposit\": \"1191.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1091.00\",\n                        \"price_inc_damage_deposit\": \"1191.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1090.00\",\n                        \"price_inc_damage_deposit\": \"1190.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1091.00\",\n                        \"price_inc_damage_deposit\": \"1191.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1091.00\",\n                        \"price_inc_damage_deposit\": \"1191.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1089.00\",\n                        \"price_inc_damage_deposit\": \"1189.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1089.00\",\n                        \"price_inc_damage_deposit\": \"1189.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1091.00\",\n                        \"price_inc_damage_deposit\": \"1191.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1091.00\",\n                        \"price_inc_damage_deposit\": \"1191.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1090.00\",\n                        \"price_inc_damage_deposit\": \"1190.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1091.00\",\n                        \"price_inc_damage_deposit\": \"1191.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1091.00\",\n                        \"price_inc_damage_deposit\": \"1191.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1089.00\",\n                        \"price_inc_damage_deposit\": \"1189.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1089.00\",\n                        \"price_inc_damage_deposit\": \"1189.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1091.00\",\n                        \"price_inc_damage_deposit\": \"1191.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1091.00\",\n                        \"price_inc_damage_deposit\": \"1191.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1090.00\",\n                        \"price_inc_damage_deposit\": \"1190.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1091.00\",\n                        \"price_inc_damage_deposit\": \"1191.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1091.00\",\n                        \"price_inc_damage_deposit\": \"1191.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1089.00\",\n                        \"price_inc_damage_deposit\": \"1189.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1089.00\",\n                        \"price_inc_damage_deposit\": \"1189.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1135.00\",\n                        \"price_inc_damage_deposit\": \"1235.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1179.00\",\n                        \"price_inc_damage_deposit\": \"1279.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1222.00\",\n                        \"price_inc_damage_deposit\": \"1322.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1267.00\",\n                        \"price_inc_damage_deposit\": \"1367.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1311.00\",\n                        \"price_inc_damage_deposit\": \"1411.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1353.00\",\n                        \"price_inc_damage_deposit\": \"1453.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1353.00\",\n                        \"price_inc_damage_deposit\": \"1453.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1354.00\",\n                        \"price_inc_damage_deposit\": \"1454.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1354.00\",\n                        \"price_inc_damage_deposit\": \"1454.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1354.00\",\n                        \"price_inc_damage_deposit\": \"1454.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1354.00\",\n                        \"price_inc_damage_deposit\": \"1454.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1354.00\",\n                        \"price_inc_damage_deposit\": \"1454.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1353.00\",\n                        \"price_inc_damage_deposit\": \"1453.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1353.00\",\n                        \"price_inc_damage_deposit\": \"1453.00\",\n                        \"damage_deposit\": \"100.00\"\n                    }\n                },\n                \"7\": {\n                    \"2025-03-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1035.00\",\n                        \"price_inc_damage_deposit\": \"1135.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-03-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1035.00\",\n                        \"price_inc_damage_deposit\": \"1135.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-03-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1035.00\",\n                        \"price_inc_damage_deposit\": \"1135.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-03-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1035.00\",\n                        \"price_inc_damage_deposit\": \"1135.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-03-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1050.00\",\n                        \"price_inc_damage_deposit\": \"1150.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-03-31\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1067.00\",\n                        \"price_inc_damage_deposit\": \"1167.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-04-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1082.00\",\n                        \"price_inc_damage_deposit\": \"1182.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-04-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1098.00\",\n                        \"price_inc_damage_deposit\": \"1198.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-04-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1114.00\",\n                        \"price_inc_damage_deposit\": \"1214.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1423.00\",\n                        \"price_inc_damage_deposit\": \"1523.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1423.00\",\n                        \"price_inc_damage_deposit\": \"1523.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1423.00\",\n                        \"price_inc_damage_deposit\": \"1523.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1423.00\",\n                        \"price_inc_damage_deposit\": \"1523.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1423.00\",\n                        \"price_inc_damage_deposit\": \"1523.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1423.00\",\n                        \"price_inc_damage_deposit\": \"1523.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1423.00\",\n                        \"price_inc_damage_deposit\": \"1523.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1423.00\",\n                        \"price_inc_damage_deposit\": \"1523.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1423.00\",\n                        \"price_inc_damage_deposit\": \"1523.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1423.00\",\n                        \"price_inc_damage_deposit\": \"1523.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1423.00\",\n                        \"price_inc_damage_deposit\": \"1523.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1423.00\",\n                        \"price_inc_damage_deposit\": \"1523.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1423.00\",\n                        \"price_inc_damage_deposit\": \"1523.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1423.00\",\n                        \"price_inc_damage_deposit\": \"1523.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1423.00\",\n                        \"price_inc_damage_deposit\": \"1523.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1423.00\",\n                        \"price_inc_damage_deposit\": \"1523.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1423.00\",\n                        \"price_inc_damage_deposit\": \"1523.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1423.00\",\n                        \"price_inc_damage_deposit\": \"1523.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1423.00\",\n                        \"price_inc_damage_deposit\": \"1523.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1423.00\",\n                        \"price_inc_damage_deposit\": \"1523.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1423.00\",\n                        \"price_inc_damage_deposit\": \"1523.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1475.00\",\n                        \"price_inc_damage_deposit\": \"1575.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1528.00\",\n                        \"price_inc_damage_deposit\": \"1628.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1580.00\",\n                        \"price_inc_damage_deposit\": \"1680.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1632.00\",\n                        \"price_inc_damage_deposit\": \"1732.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1684.00\",\n                        \"price_inc_damage_deposit\": \"1784.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1789.00\",\n                        \"price_inc_damage_deposit\": \"1889.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1789.00\",\n                        \"price_inc_damage_deposit\": \"1889.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1789.00\",\n                        \"price_inc_damage_deposit\": \"1889.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1789.00\",\n                        \"price_inc_damage_deposit\": \"1889.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1789.00\",\n                        \"price_inc_damage_deposit\": \"1889.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1789.00\",\n                        \"price_inc_damage_deposit\": \"1889.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1789.00\",\n                        \"price_inc_damage_deposit\": \"1889.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-08-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1789.00\",\n                        \"price_inc_damage_deposit\": \"1889.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-08-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1475.00\",\n                        \"price_inc_damage_deposit\": \"1575.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-08-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1423.00\",\n                        \"price_inc_damage_deposit\": \"1523.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1423.00\",\n                        \"price_inc_damage_deposit\": \"1523.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1423.00\",\n                        \"price_inc_damage_deposit\": \"1523.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1423.00\",\n                        \"price_inc_damage_deposit\": \"1523.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1423.00\",\n                        \"price_inc_damage_deposit\": \"1523.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1423.00\",\n                        \"price_inc_damage_deposit\": \"1523.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1423.00\",\n                        \"price_inc_damage_deposit\": \"1523.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1423.00\",\n                        \"price_inc_damage_deposit\": \"1523.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1423.00\",\n                        \"price_inc_damage_deposit\": \"1523.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1423.00\",\n                        \"price_inc_damage_deposit\": \"1523.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1423.00\",\n                        \"price_inc_damage_deposit\": \"1523.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1423.00\",\n                        \"price_inc_damage_deposit\": \"1523.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1423.00\",\n                        \"price_inc_damage_deposit\": \"1523.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1423.00\",\n                        \"price_inc_damage_deposit\": \"1523.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1423.00\",\n                        \"price_inc_damage_deposit\": \"1523.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1423.00\",\n                        \"price_inc_damage_deposit\": \"1523.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1423.00\",\n                        \"price_inc_damage_deposit\": \"1523.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1383.00\",\n                        \"price_inc_damage_deposit\": \"1483.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1344.00\",\n                        \"price_inc_damage_deposit\": \"1444.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1304.00\",\n                        \"price_inc_damage_deposit\": \"1404.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1265.00\",\n                        \"price_inc_damage_deposit\": \"1365.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1225.00\",\n                        \"price_inc_damage_deposit\": \"1325.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1186.00\",\n                        \"price_inc_damage_deposit\": \"1286.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-31\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1146.00\",\n                        \"price_inc_damage_deposit\": \"1246.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1186.00\",\n                        \"price_inc_damage_deposit\": \"1286.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1225.00\",\n                        \"price_inc_damage_deposit\": \"1325.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1265.00\",\n                        \"price_inc_damage_deposit\": \"1365.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1304.00\",\n                        \"price_inc_damage_deposit\": \"1404.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1344.00\",\n                        \"price_inc_damage_deposit\": \"1444.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1383.00\",\n                        \"price_inc_damage_deposit\": \"1483.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1423.00\",\n                        \"price_inc_damage_deposit\": \"1523.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1423.00\",\n                        \"price_inc_damage_deposit\": \"1523.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1423.00\",\n                        \"price_inc_damage_deposit\": \"1523.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1423.00\",\n                        \"price_inc_damage_deposit\": \"1523.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1423.00\",\n                        \"price_inc_damage_deposit\": \"1523.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1423.00\",\n                        \"price_inc_damage_deposit\": \"1523.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1423.00\",\n                        \"price_inc_damage_deposit\": \"1523.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1423.00\",\n                        \"price_inc_damage_deposit\": \"1523.00\",\n                        \"damage_deposit\": \"100.00\"\n                    }\n                },\n                \"8\": {\n                    \"2025-03-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1179.00\",\n                        \"price_inc_damage_deposit\": \"1279.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-03-31\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1226.00\",\n                        \"price_inc_damage_deposit\": \"1326.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-04-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1241.00\",\n                        \"price_inc_damage_deposit\": \"1341.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-04-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1258.00\",\n                        \"price_inc_damage_deposit\": \"1358.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1622.00\",\n                        \"price_inc_damage_deposit\": \"1722.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1622.00\",\n                        \"price_inc_damage_deposit\": \"1722.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1622.00\",\n                        \"price_inc_damage_deposit\": \"1722.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1622.00\",\n                        \"price_inc_damage_deposit\": \"1722.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1622.00\",\n                        \"price_inc_damage_deposit\": \"1722.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1622.00\",\n                        \"price_inc_damage_deposit\": \"1722.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1779.00\",\n                        \"price_inc_damage_deposit\": \"1879.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1832.00\",\n                        \"price_inc_damage_deposit\": \"1932.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1884.00\",\n                        \"price_inc_damage_deposit\": \"1984.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2041.00\",\n                        \"price_inc_damage_deposit\": \"2141.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2041.00\",\n                        \"price_inc_damage_deposit\": \"2141.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2041.00\",\n                        \"price_inc_damage_deposit\": \"2141.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1622.00\",\n                        \"price_inc_damage_deposit\": \"1722.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1622.00\",\n                        \"price_inc_damage_deposit\": \"1722.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1622.00\",\n                        \"price_inc_damage_deposit\": \"1722.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1622.00\",\n                        \"price_inc_damage_deposit\": \"1722.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1503.00\",\n                        \"price_inc_damage_deposit\": \"1603.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1464.00\",\n                        \"price_inc_damage_deposit\": \"1564.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1424.00\",\n                        \"price_inc_damage_deposit\": \"1524.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1305.00\",\n                        \"price_inc_damage_deposit\": \"1405.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1305.00\",\n                        \"price_inc_damage_deposit\": \"1405.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1305.00\",\n                        \"price_inc_damage_deposit\": \"1405.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1305.00\",\n                        \"price_inc_damage_deposit\": \"1405.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1305.00\",\n                        \"price_inc_damage_deposit\": \"1405.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1305.00\",\n                        \"price_inc_damage_deposit\": \"1405.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1305.00\",\n                        \"price_inc_damage_deposit\": \"1405.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1305.00\",\n                        \"price_inc_damage_deposit\": \"1405.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1305.00\",\n                        \"price_inc_damage_deposit\": \"1405.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1305.00\",\n                        \"price_inc_damage_deposit\": \"1405.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1305.00\",\n                        \"price_inc_damage_deposit\": \"1405.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1305.00\",\n                        \"price_inc_damage_deposit\": \"1405.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1305.00\",\n                        \"price_inc_damage_deposit\": \"1405.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1305.00\",\n                        \"price_inc_damage_deposit\": \"1405.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1305.00\",\n                        \"price_inc_damage_deposit\": \"1405.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1305.00\",\n                        \"price_inc_damage_deposit\": \"1405.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1305.00\",\n                        \"price_inc_damage_deposit\": \"1405.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1305.00\",\n                        \"price_inc_damage_deposit\": \"1405.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1305.00\",\n                        \"price_inc_damage_deposit\": \"1405.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1305.00\",\n                        \"price_inc_damage_deposit\": \"1405.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1305.00\",\n                        \"price_inc_damage_deposit\": \"1405.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1305.00\",\n                        \"price_inc_damage_deposit\": \"1405.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1305.00\",\n                        \"price_inc_damage_deposit\": \"1405.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1305.00\",\n                        \"price_inc_damage_deposit\": \"1405.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1305.00\",\n                        \"price_inc_damage_deposit\": \"1405.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1305.00\",\n                        \"price_inc_damage_deposit\": \"1405.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1305.00\",\n                        \"price_inc_damage_deposit\": \"1405.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1305.00\",\n                        \"price_inc_damage_deposit\": \"1405.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1305.00\",\n                        \"price_inc_damage_deposit\": \"1405.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1305.00\",\n                        \"price_inc_damage_deposit\": \"1405.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1424.00\",\n                        \"price_inc_damage_deposit\": \"1524.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1464.00\",\n                        \"price_inc_damage_deposit\": \"1564.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1503.00\",\n                        \"price_inc_damage_deposit\": \"1603.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1622.00\",\n                        \"price_inc_damage_deposit\": \"1722.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1622.00\",\n                        \"price_inc_damage_deposit\": \"1722.00\",\n                        \"damage_deposit\": \"100.00\"\n                    }\n                },\n                \"9\": {\n                    \"2025-03-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1321.00\",\n                        \"price_inc_damage_deposit\": \"1421.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-03-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1369.00\",\n                        \"price_inc_damage_deposit\": \"1469.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-03-31\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1385.00\",\n                        \"price_inc_damage_deposit\": \"1485.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-04-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1400.00\",\n                        \"price_inc_damage_deposit\": \"1500.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1822.00\",\n                        \"price_inc_damage_deposit\": \"1922.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1822.00\",\n                        \"price_inc_damage_deposit\": \"1922.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1822.00\",\n                        \"price_inc_damage_deposit\": \"1922.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1822.00\",\n                        \"price_inc_damage_deposit\": \"1922.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1822.00\",\n                        \"price_inc_damage_deposit\": \"1922.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1822.00\",\n                        \"price_inc_damage_deposit\": \"1922.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1822.00\",\n                        \"price_inc_damage_deposit\": \"1922.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1822.00\",\n                        \"price_inc_damage_deposit\": \"1922.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1822.00\",\n                        \"price_inc_damage_deposit\": \"1922.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1822.00\",\n                        \"price_inc_damage_deposit\": \"1922.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1822.00\",\n                        \"price_inc_damage_deposit\": \"1922.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1979.00\",\n                        \"price_inc_damage_deposit\": \"2079.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2031.00\",\n                        \"price_inc_damage_deposit\": \"2131.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2084.00\",\n                        \"price_inc_damage_deposit\": \"2184.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2293.00\",\n                        \"price_inc_damage_deposit\": \"2393.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2293.00\",\n                        \"price_inc_damage_deposit\": \"2393.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2293.00\",\n                        \"price_inc_damage_deposit\": \"2393.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2293.00\",\n                        \"price_inc_damage_deposit\": \"2393.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1822.00\",\n                        \"price_inc_damage_deposit\": \"1922.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1822.00\",\n                        \"price_inc_damage_deposit\": \"1922.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1822.00\",\n                        \"price_inc_damage_deposit\": \"1922.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1822.00\",\n                        \"price_inc_damage_deposit\": \"1922.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1822.00\",\n                        \"price_inc_damage_deposit\": \"1922.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1822.00\",\n                        \"price_inc_damage_deposit\": \"1922.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1822.00\",\n                        \"price_inc_damage_deposit\": \"1922.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1822.00\",\n                        \"price_inc_damage_deposit\": \"1922.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1703.00\",\n                        \"price_inc_damage_deposit\": \"1803.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1662.00\",\n                        \"price_inc_damage_deposit\": \"1762.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1583.00\",\n                        \"price_inc_damage_deposit\": \"1683.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1464.00\",\n                        \"price_inc_damage_deposit\": \"1564.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1464.00\",\n                        \"price_inc_damage_deposit\": \"1564.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1464.00\",\n                        \"price_inc_damage_deposit\": \"1564.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1464.00\",\n                        \"price_inc_damage_deposit\": \"1564.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1464.00\",\n                        \"price_inc_damage_deposit\": \"1564.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1464.00\",\n                        \"price_inc_damage_deposit\": \"1564.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1464.00\",\n                        \"price_inc_damage_deposit\": \"1564.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1464.00\",\n                        \"price_inc_damage_deposit\": \"1564.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1464.00\",\n                        \"price_inc_damage_deposit\": \"1564.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1464.00\",\n                        \"price_inc_damage_deposit\": \"1564.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1464.00\",\n                        \"price_inc_damage_deposit\": \"1564.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1464.00\",\n                        \"price_inc_damage_deposit\": \"1564.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1464.00\",\n                        \"price_inc_damage_deposit\": \"1564.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1464.00\",\n                        \"price_inc_damage_deposit\": \"1564.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1464.00\",\n                        \"price_inc_damage_deposit\": \"1564.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1464.00\",\n                        \"price_inc_damage_deposit\": \"1564.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1464.00\",\n                        \"price_inc_damage_deposit\": \"1564.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1464.00\",\n                        \"price_inc_damage_deposit\": \"1564.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1464.00\",\n                        \"price_inc_damage_deposit\": \"1564.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1464.00\",\n                        \"price_inc_damage_deposit\": \"1564.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1464.00\",\n                        \"price_inc_damage_deposit\": \"1564.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1464.00\",\n                        \"price_inc_damage_deposit\": \"1564.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1464.00\",\n                        \"price_inc_damage_deposit\": \"1564.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1464.00\",\n                        \"price_inc_damage_deposit\": \"1564.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1464.00\",\n                        \"price_inc_damage_deposit\": \"1564.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1464.00\",\n                        \"price_inc_damage_deposit\": \"1564.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1464.00\",\n                        \"price_inc_damage_deposit\": \"1564.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1464.00\",\n                        \"price_inc_damage_deposit\": \"1564.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1464.00\",\n                        \"price_inc_damage_deposit\": \"1564.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1464.00\",\n                        \"price_inc_damage_deposit\": \"1564.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1464.00\",\n                        \"price_inc_damage_deposit\": \"1564.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1464.00\",\n                        \"price_inc_damage_deposit\": \"1564.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1464.00\",\n                        \"price_inc_damage_deposit\": \"1564.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1464.00\",\n                        \"price_inc_damage_deposit\": \"1564.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1464.00\",\n                        \"price_inc_damage_deposit\": \"1564.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1464.00\",\n                        \"price_inc_damage_deposit\": \"1564.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1464.00\",\n                        \"price_inc_damage_deposit\": \"1564.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1464.00\",\n                        \"price_inc_damage_deposit\": \"1564.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1464.00\",\n                        \"price_inc_damage_deposit\": \"1564.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1464.00\",\n                        \"price_inc_damage_deposit\": \"1564.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1583.00\",\n                        \"price_inc_damage_deposit\": \"1683.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1662.00\",\n                        \"price_inc_damage_deposit\": \"1762.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1703.00\",\n                        \"price_inc_damage_deposit\": \"1803.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1822.00\",\n                        \"price_inc_damage_deposit\": \"1922.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1822.00\",\n                        \"price_inc_damage_deposit\": \"1922.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1822.00\",\n                        \"price_inc_damage_deposit\": \"1922.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1822.00\",\n                        \"price_inc_damage_deposit\": \"1922.00\",\n                        \"damage_deposit\": \"100.00\"\n                    }\n                },\n                \"10\": {\n                    \"2025-03-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1465.00\",\n                        \"price_inc_damage_deposit\": \"1565.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-03-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1513.00\",\n                        \"price_inc_damage_deposit\": \"1613.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-03-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1528.00\",\n                        \"price_inc_damage_deposit\": \"1628.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-03-31\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1544.00\",\n                        \"price_inc_damage_deposit\": \"1644.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2020.00\",\n                        \"price_inc_damage_deposit\": \"2120.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2021.00\",\n                        \"price_inc_damage_deposit\": \"2121.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2020.00\",\n                        \"price_inc_damage_deposit\": \"2120.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2020.00\",\n                        \"price_inc_damage_deposit\": \"2120.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2021.00\",\n                        \"price_inc_damage_deposit\": \"2121.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2020.00\",\n                        \"price_inc_damage_deposit\": \"2120.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2021.00\",\n                        \"price_inc_damage_deposit\": \"2121.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2020.00\",\n                        \"price_inc_damage_deposit\": \"2120.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2020.00\",\n                        \"price_inc_damage_deposit\": \"2120.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2021.00\",\n                        \"price_inc_damage_deposit\": \"2121.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2020.00\",\n                        \"price_inc_damage_deposit\": \"2120.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2021.00\",\n                        \"price_inc_damage_deposit\": \"2121.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2020.00\",\n                        \"price_inc_damage_deposit\": \"2120.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2177.00\",\n                        \"price_inc_damage_deposit\": \"2277.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2230.00\",\n                        \"price_inc_damage_deposit\": \"2330.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2282.00\",\n                        \"price_inc_damage_deposit\": \"2382.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2544.00\",\n                        \"price_inc_damage_deposit\": \"2644.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2544.00\",\n                        \"price_inc_damage_deposit\": \"2644.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2544.00\",\n                        \"price_inc_damage_deposit\": \"2644.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2543.00\",\n                        \"price_inc_damage_deposit\": \"2643.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2020.00\",\n                        \"price_inc_damage_deposit\": \"2120.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2021.00\",\n                        \"price_inc_damage_deposit\": \"2121.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2020.00\",\n                        \"price_inc_damage_deposit\": \"2120.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2021.00\",\n                        \"price_inc_damage_deposit\": \"2121.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2020.00\",\n                        \"price_inc_damage_deposit\": \"2120.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2020.00\",\n                        \"price_inc_damage_deposit\": \"2120.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2021.00\",\n                        \"price_inc_damage_deposit\": \"2121.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2020.00\",\n                        \"price_inc_damage_deposit\": \"2120.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2021.00\",\n                        \"price_inc_damage_deposit\": \"2121.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2020.00\",\n                        \"price_inc_damage_deposit\": \"2120.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1901.00\",\n                        \"price_inc_damage_deposit\": \"2001.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1862.00\",\n                        \"price_inc_damage_deposit\": \"1962.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1822.00\",\n                        \"price_inc_damage_deposit\": \"1922.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1783.00\",\n                        \"price_inc_damage_deposit\": \"1883.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1743.00\",\n                        \"price_inc_damage_deposit\": \"1843.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1623.00\",\n                        \"price_inc_damage_deposit\": \"1723.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1743.00\",\n                        \"price_inc_damage_deposit\": \"1843.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1783.00\",\n                        \"price_inc_damage_deposit\": \"1883.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1822.00\",\n                        \"price_inc_damage_deposit\": \"1922.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1862.00\",\n                        \"price_inc_damage_deposit\": \"1962.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1901.00\",\n                        \"price_inc_damage_deposit\": \"2001.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2020.00\",\n                        \"price_inc_damage_deposit\": \"2120.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2021.00\",\n                        \"price_inc_damage_deposit\": \"2121.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2020.00\",\n                        \"price_inc_damage_deposit\": \"2120.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2021.00\",\n                        \"price_inc_damage_deposit\": \"2121.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2020.00\",\n                        \"price_inc_damage_deposit\": \"2120.00\",\n                        \"damage_deposit\": \"100.00\"\n                    }\n                },\n                \"11\": {\n                    \"2025-03-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1672.00\",\n                        \"price_inc_damage_deposit\": \"1772.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-03-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1687.00\",\n                        \"price_inc_damage_deposit\": \"1787.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2219.00\",\n                        \"price_inc_damage_deposit\": \"2319.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2219.00\",\n                        \"price_inc_damage_deposit\": \"2319.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2219.00\",\n                        \"price_inc_damage_deposit\": \"2319.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2219.00\",\n                        \"price_inc_damage_deposit\": \"2319.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2219.00\",\n                        \"price_inc_damage_deposit\": \"2319.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2219.00\",\n                        \"price_inc_damage_deposit\": \"2319.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2219.00\",\n                        \"price_inc_damage_deposit\": \"2319.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2219.00\",\n                        \"price_inc_damage_deposit\": \"2319.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2219.00\",\n                        \"price_inc_damage_deposit\": \"2319.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2219.00\",\n                        \"price_inc_damage_deposit\": \"2319.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2428.00\",\n                        \"price_inc_damage_deposit\": \"2528.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2481.00\",\n                        \"price_inc_damage_deposit\": \"2581.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2795.00\",\n                        \"price_inc_damage_deposit\": \"2895.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2795.00\",\n                        \"price_inc_damage_deposit\": \"2895.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2794.00\",\n                        \"price_inc_damage_deposit\": \"2894.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2219.00\",\n                        \"price_inc_damage_deposit\": \"2319.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2219.00\",\n                        \"price_inc_damage_deposit\": \"2319.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2219.00\",\n                        \"price_inc_damage_deposit\": \"2319.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2219.00\",\n                        \"price_inc_damage_deposit\": \"2319.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2219.00\",\n                        \"price_inc_damage_deposit\": \"2319.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2219.00\",\n                        \"price_inc_damage_deposit\": \"2319.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2219.00\",\n                        \"price_inc_damage_deposit\": \"2319.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2219.00\",\n                        \"price_inc_damage_deposit\": \"2319.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2060.00\",\n                        \"price_inc_damage_deposit\": \"2160.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2021.00\",\n                        \"price_inc_damage_deposit\": \"2121.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1981.00\",\n                        \"price_inc_damage_deposit\": \"2081.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1942.00\",\n                        \"price_inc_damage_deposit\": \"2042.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1783.00\",\n                        \"price_inc_damage_deposit\": \"1883.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1783.00\",\n                        \"price_inc_damage_deposit\": \"1883.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1783.00\",\n                        \"price_inc_damage_deposit\": \"1883.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1783.00\",\n                        \"price_inc_damage_deposit\": \"1883.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1783.00\",\n                        \"price_inc_damage_deposit\": \"1883.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1783.00\",\n                        \"price_inc_damage_deposit\": \"1883.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1783.00\",\n                        \"price_inc_damage_deposit\": \"1883.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1783.00\",\n                        \"price_inc_damage_deposit\": \"1883.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1783.00\",\n                        \"price_inc_damage_deposit\": \"1883.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1783.00\",\n                        \"price_inc_damage_deposit\": \"1883.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1783.00\",\n                        \"price_inc_damage_deposit\": \"1883.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1783.00\",\n                        \"price_inc_damage_deposit\": \"1883.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1783.00\",\n                        \"price_inc_damage_deposit\": \"1883.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1783.00\",\n                        \"price_inc_damage_deposit\": \"1883.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1783.00\",\n                        \"price_inc_damage_deposit\": \"1883.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1783.00\",\n                        \"price_inc_damage_deposit\": \"1883.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1783.00\",\n                        \"price_inc_damage_deposit\": \"1883.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1783.00\",\n                        \"price_inc_damage_deposit\": \"1883.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1783.00\",\n                        \"price_inc_damage_deposit\": \"1883.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1783.00\",\n                        \"price_inc_damage_deposit\": \"1883.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1783.00\",\n                        \"price_inc_damage_deposit\": \"1883.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1783.00\",\n                        \"price_inc_damage_deposit\": \"1883.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1783.00\",\n                        \"price_inc_damage_deposit\": \"1883.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1783.00\",\n                        \"price_inc_damage_deposit\": \"1883.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1783.00\",\n                        \"price_inc_damage_deposit\": \"1883.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1783.00\",\n                        \"price_inc_damage_deposit\": \"1883.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1783.00\",\n                        \"price_inc_damage_deposit\": \"1883.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1783.00\",\n                        \"price_inc_damage_deposit\": \"1883.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1783.00\",\n                        \"price_inc_damage_deposit\": \"1883.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1783.00\",\n                        \"price_inc_damage_deposit\": \"1883.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1783.00\",\n                        \"price_inc_damage_deposit\": \"1883.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1783.00\",\n                        \"price_inc_damage_deposit\": \"1883.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1783.00\",\n                        \"price_inc_damage_deposit\": \"1883.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1783.00\",\n                        \"price_inc_damage_deposit\": \"1883.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1783.00\",\n                        \"price_inc_damage_deposit\": \"1883.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1783.00\",\n                        \"price_inc_damage_deposit\": \"1883.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1783.00\",\n                        \"price_inc_damage_deposit\": \"1883.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1783.00\",\n                        \"price_inc_damage_deposit\": \"1883.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1783.00\",\n                        \"price_inc_damage_deposit\": \"1883.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1783.00\",\n                        \"price_inc_damage_deposit\": \"1883.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1942.00\",\n                        \"price_inc_damage_deposit\": \"2042.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1981.00\",\n                        \"price_inc_damage_deposit\": \"2081.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2021.00\",\n                        \"price_inc_damage_deposit\": \"2121.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2060.00\",\n                        \"price_inc_damage_deposit\": \"2160.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2219.00\",\n                        \"price_inc_damage_deposit\": \"2319.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2219.00\",\n                        \"price_inc_damage_deposit\": \"2319.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2219.00\",\n                        \"price_inc_damage_deposit\": \"2319.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2219.00\",\n                        \"price_inc_damage_deposit\": \"2319.00\",\n                        \"damage_deposit\": \"100.00\"\n                    }\n                },\n                \"12\": {\n                    \"2025-03-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1831.00\",\n                        \"price_inc_damage_deposit\": \"1931.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2418.00\",\n                        \"price_inc_damage_deposit\": \"2518.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2418.00\",\n                        \"price_inc_damage_deposit\": \"2518.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2419.00\",\n                        \"price_inc_damage_deposit\": \"2519.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2418.00\",\n                        \"price_inc_damage_deposit\": \"2518.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2418.00\",\n                        \"price_inc_damage_deposit\": \"2518.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2419.00\",\n                        \"price_inc_damage_deposit\": \"2519.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2418.00\",\n                        \"price_inc_damage_deposit\": \"2518.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2680.00\",\n                        \"price_inc_damage_deposit\": \"2780.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3047.00\",\n                        \"price_inc_damage_deposit\": \"3147.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3045.00\",\n                        \"price_inc_damage_deposit\": \"3145.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2418.00\",\n                        \"price_inc_damage_deposit\": \"2518.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2419.00\",\n                        \"price_inc_damage_deposit\": \"2519.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2418.00\",\n                        \"price_inc_damage_deposit\": \"2518.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2418.00\",\n                        \"price_inc_damage_deposit\": \"2518.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2419.00\",\n                        \"price_inc_damage_deposit\": \"2519.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2418.00\",\n                        \"price_inc_damage_deposit\": \"2518.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2219.00\",\n                        \"price_inc_damage_deposit\": \"2319.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2180.00\",\n                        \"price_inc_damage_deposit\": \"2280.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2140.00\",\n                        \"price_inc_damage_deposit\": \"2240.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1942.00\",\n                        \"price_inc_damage_deposit\": \"2042.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1942.00\",\n                        \"price_inc_damage_deposit\": \"2042.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1942.00\",\n                        \"price_inc_damage_deposit\": \"2042.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1942.00\",\n                        \"price_inc_damage_deposit\": \"2042.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1942.00\",\n                        \"price_inc_damage_deposit\": \"2042.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1942.00\",\n                        \"price_inc_damage_deposit\": \"2042.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1942.00\",\n                        \"price_inc_damage_deposit\": \"2042.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1942.00\",\n                        \"price_inc_damage_deposit\": \"2042.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1942.00\",\n                        \"price_inc_damage_deposit\": \"2042.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1942.00\",\n                        \"price_inc_damage_deposit\": \"2042.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1942.00\",\n                        \"price_inc_damage_deposit\": \"2042.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1942.00\",\n                        \"price_inc_damage_deposit\": \"2042.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1942.00\",\n                        \"price_inc_damage_deposit\": \"2042.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1942.00\",\n                        \"price_inc_damage_deposit\": \"2042.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1942.00\",\n                        \"price_inc_damage_deposit\": \"2042.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1942.00\",\n                        \"price_inc_damage_deposit\": \"2042.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1942.00\",\n                        \"price_inc_damage_deposit\": \"2042.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1942.00\",\n                        \"price_inc_damage_deposit\": \"2042.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1942.00\",\n                        \"price_inc_damage_deposit\": \"2042.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1942.00\",\n                        \"price_inc_damage_deposit\": \"2042.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1942.00\",\n                        \"price_inc_damage_deposit\": \"2042.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1942.00\",\n                        \"price_inc_damage_deposit\": \"2042.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1942.00\",\n                        \"price_inc_damage_deposit\": \"2042.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1942.00\",\n                        \"price_inc_damage_deposit\": \"2042.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1942.00\",\n                        \"price_inc_damage_deposit\": \"2042.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1942.00\",\n                        \"price_inc_damage_deposit\": \"2042.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1942.00\",\n                        \"price_inc_damage_deposit\": \"2042.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1942.00\",\n                        \"price_inc_damage_deposit\": \"2042.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1942.00\",\n                        \"price_inc_damage_deposit\": \"2042.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1942.00\",\n                        \"price_inc_damage_deposit\": \"2042.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2140.00\",\n                        \"price_inc_damage_deposit\": \"2240.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2180.00\",\n                        \"price_inc_damage_deposit\": \"2280.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2219.00\",\n                        \"price_inc_damage_deposit\": \"2319.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2418.00\",\n                        \"price_inc_damage_deposit\": \"2518.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2419.00\",\n                        \"price_inc_damage_deposit\": \"2519.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2418.00\",\n                        \"price_inc_damage_deposit\": \"2518.00\",\n                        \"damage_deposit\": \"100.00\"\n                    }\n                },\n                \"13\": {\n                    \"2025-03-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"1943.00\",\n                        \"price_inc_damage_deposit\": \"2043.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2617.00\",\n                        \"price_inc_damage_deposit\": \"2717.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2617.00\",\n                        \"price_inc_damage_deposit\": \"2717.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2617.00\",\n                        \"price_inc_damage_deposit\": \"2717.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2617.00\",\n                        \"price_inc_damage_deposit\": \"2717.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2617.00\",\n                        \"price_inc_damage_deposit\": \"2717.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2774.00\",\n                        \"price_inc_damage_deposit\": \"2874.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-07-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3297.00\",\n                        \"price_inc_damage_deposit\": \"3397.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2617.00\",\n                        \"price_inc_damage_deposit\": \"2717.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2617.00\",\n                        \"price_inc_damage_deposit\": \"2717.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2617.00\",\n                        \"price_inc_damage_deposit\": \"2717.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2617.00\",\n                        \"price_inc_damage_deposit\": \"2717.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2617.00\",\n                        \"price_inc_damage_deposit\": \"2717.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2498.00\",\n                        \"price_inc_damage_deposit\": \"2598.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2379.00\",\n                        \"price_inc_damage_deposit\": \"2479.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2340.00\",\n                        \"price_inc_damage_deposit\": \"2440.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2221.00\",\n                        \"price_inc_damage_deposit\": \"2321.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2101.00\",\n                        \"price_inc_damage_deposit\": \"2201.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2101.00\",\n                        \"price_inc_damage_deposit\": \"2201.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2101.00\",\n                        \"price_inc_damage_deposit\": \"2201.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2101.00\",\n                        \"price_inc_damage_deposit\": \"2201.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2101.00\",\n                        \"price_inc_damage_deposit\": \"2201.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2101.00\",\n                        \"price_inc_damage_deposit\": \"2201.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2101.00\",\n                        \"price_inc_damage_deposit\": \"2201.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2101.00\",\n                        \"price_inc_damage_deposit\": \"2201.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2101.00\",\n                        \"price_inc_damage_deposit\": \"2201.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2101.00\",\n                        \"price_inc_damage_deposit\": \"2201.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2101.00\",\n                        \"price_inc_damage_deposit\": \"2201.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2101.00\",\n                        \"price_inc_damage_deposit\": \"2201.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2101.00\",\n                        \"price_inc_damage_deposit\": \"2201.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2101.00\",\n                        \"price_inc_damage_deposit\": \"2201.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2101.00\",\n                        \"price_inc_damage_deposit\": \"2201.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2101.00\",\n                        \"price_inc_damage_deposit\": \"2201.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2101.00\",\n                        \"price_inc_damage_deposit\": \"2201.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2101.00\",\n                        \"price_inc_damage_deposit\": \"2201.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2101.00\",\n                        \"price_inc_damage_deposit\": \"2201.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2101.00\",\n                        \"price_inc_damage_deposit\": \"2201.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2101.00\",\n                        \"price_inc_damage_deposit\": \"2201.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2101.00\",\n                        \"price_inc_damage_deposit\": \"2201.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2101.00\",\n                        \"price_inc_damage_deposit\": \"2201.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2101.00\",\n                        \"price_inc_damage_deposit\": \"2201.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2101.00\",\n                        \"price_inc_damage_deposit\": \"2201.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2101.00\",\n                        \"price_inc_damage_deposit\": \"2201.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2101.00\",\n                        \"price_inc_damage_deposit\": \"2201.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2101.00\",\n                        \"price_inc_damage_deposit\": \"2201.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2101.00\",\n                        \"price_inc_damage_deposit\": \"2201.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2221.00\",\n                        \"price_inc_damage_deposit\": \"2321.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2340.00\",\n                        \"price_inc_damage_deposit\": \"2440.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2379.00\",\n                        \"price_inc_damage_deposit\": \"2479.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2498.00\",\n                        \"price_inc_damage_deposit\": \"2598.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2617.00\",\n                        \"price_inc_damage_deposit\": \"2717.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2617.00\",\n                        \"price_inc_damage_deposit\": \"2717.00\",\n                        \"damage_deposit\": \"100.00\"\n                    }\n                },\n                \"14\": {\n                    \"2025-03-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2103.00\",\n                        \"price_inc_damage_deposit\": \"2203.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-03-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2118.00\",\n                        \"price_inc_damage_deposit\": \"2218.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2815.00\",\n                        \"price_inc_damage_deposit\": \"2915.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2815.00\",\n                        \"price_inc_damage_deposit\": \"2915.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2815.00\",\n                        \"price_inc_damage_deposit\": \"2915.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2815.00\",\n                        \"price_inc_damage_deposit\": \"2915.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2815.00\",\n                        \"price_inc_damage_deposit\": \"2915.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2815.00\",\n                        \"price_inc_damage_deposit\": \"2915.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2815.00\",\n                        \"price_inc_damage_deposit\": \"2915.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2867.00\",\n                        \"price_inc_damage_deposit\": \"2967.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2920.00\",\n                        \"price_inc_damage_deposit\": \"3020.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2972.00\",\n                        \"price_inc_damage_deposit\": \"3072.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3024.00\",\n                        \"price_inc_damage_deposit\": \"3124.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3076.00\",\n                        \"price_inc_damage_deposit\": \"3176.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2815.00\",\n                        \"price_inc_damage_deposit\": \"2915.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2815.00\",\n                        \"price_inc_damage_deposit\": \"2915.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2815.00\",\n                        \"price_inc_damage_deposit\": \"2915.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2815.00\",\n                        \"price_inc_damage_deposit\": \"2915.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2815.00\",\n                        \"price_inc_damage_deposit\": \"2915.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2815.00\",\n                        \"price_inc_damage_deposit\": \"2915.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2815.00\",\n                        \"price_inc_damage_deposit\": \"2915.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2815.00\",\n                        \"price_inc_damage_deposit\": \"2915.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2815.00\",\n                        \"price_inc_damage_deposit\": \"2915.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2775.00\",\n                        \"price_inc_damage_deposit\": \"2875.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2736.00\",\n                        \"price_inc_damage_deposit\": \"2836.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2696.00\",\n                        \"price_inc_damage_deposit\": \"2796.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2657.00\",\n                        \"price_inc_damage_deposit\": \"2757.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2617.00\",\n                        \"price_inc_damage_deposit\": \"2717.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2578.00\",\n                        \"price_inc_damage_deposit\": \"2678.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2538.00\",\n                        \"price_inc_damage_deposit\": \"2638.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2498.00\",\n                        \"price_inc_damage_deposit\": \"2598.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2459.00\",\n                        \"price_inc_damage_deposit\": \"2559.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2419.00\",\n                        \"price_inc_damage_deposit\": \"2519.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2380.00\",\n                        \"price_inc_damage_deposit\": \"2480.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2340.00\",\n                        \"price_inc_damage_deposit\": \"2440.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2301.00\",\n                        \"price_inc_damage_deposit\": \"2401.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-31\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2261.00\",\n                        \"price_inc_damage_deposit\": \"2361.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2301.00\",\n                        \"price_inc_damage_deposit\": \"2401.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2340.00\",\n                        \"price_inc_damage_deposit\": \"2440.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2380.00\",\n                        \"price_inc_damage_deposit\": \"2480.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2419.00\",\n                        \"price_inc_damage_deposit\": \"2519.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2459.00\",\n                        \"price_inc_damage_deposit\": \"2559.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2498.00\",\n                        \"price_inc_damage_deposit\": \"2598.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2538.00\",\n                        \"price_inc_damage_deposit\": \"2638.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2578.00\",\n                        \"price_inc_damage_deposit\": \"2678.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2617.00\",\n                        \"price_inc_damage_deposit\": \"2717.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2657.00\",\n                        \"price_inc_damage_deposit\": \"2757.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2696.00\",\n                        \"price_inc_damage_deposit\": \"2796.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2736.00\",\n                        \"price_inc_damage_deposit\": \"2836.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2775.00\",\n                        \"price_inc_damage_deposit\": \"2875.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2815.00\",\n                        \"price_inc_damage_deposit\": \"2915.00\",\n                        \"damage_deposit\": \"100.00\"\n                    }\n                },\n                \"15\": {\n                    \"2025-03-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2105.00\",\n                        \"price_inc_damage_deposit\": \"2205.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2805.00\",\n                        \"price_inc_damage_deposit\": \"2905.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2806.00\",\n                        \"price_inc_damage_deposit\": \"2906.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2805.00\",\n                        \"price_inc_damage_deposit\": \"2905.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2951.00\",\n                        \"price_inc_damage_deposit\": \"3051.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3001.00\",\n                        \"price_inc_damage_deposit\": \"3101.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3049.00\",\n                        \"price_inc_damage_deposit\": \"3149.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2805.00\",\n                        \"price_inc_damage_deposit\": \"2905.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2806.00\",\n                        \"price_inc_damage_deposit\": \"2906.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2805.00\",\n                        \"price_inc_damage_deposit\": \"2905.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2695.00\",\n                        \"price_inc_damage_deposit\": \"2795.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2658.00\",\n                        \"price_inc_damage_deposit\": \"2758.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2621.00\",\n                        \"price_inc_damage_deposit\": \"2721.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2437.00\",\n                        \"price_inc_damage_deposit\": \"2537.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2400.00\",\n                        \"price_inc_damage_deposit\": \"2500.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2363.00\",\n                        \"price_inc_damage_deposit\": \"2463.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2252.00\",\n                        \"price_inc_damage_deposit\": \"2352.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2252.00\",\n                        \"price_inc_damage_deposit\": \"2352.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2252.00\",\n                        \"price_inc_damage_deposit\": \"2352.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2252.00\",\n                        \"price_inc_damage_deposit\": \"2352.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2252.00\",\n                        \"price_inc_damage_deposit\": \"2352.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2252.00\",\n                        \"price_inc_damage_deposit\": \"2352.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2252.00\",\n                        \"price_inc_damage_deposit\": \"2352.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2252.00\",\n                        \"price_inc_damage_deposit\": \"2352.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2252.00\",\n                        \"price_inc_damage_deposit\": \"2352.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2252.00\",\n                        \"price_inc_damage_deposit\": \"2352.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2252.00\",\n                        \"price_inc_damage_deposit\": \"2352.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2252.00\",\n                        \"price_inc_damage_deposit\": \"2352.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2252.00\",\n                        \"price_inc_damage_deposit\": \"2352.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2252.00\",\n                        \"price_inc_damage_deposit\": \"2352.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2252.00\",\n                        \"price_inc_damage_deposit\": \"2352.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2252.00\",\n                        \"price_inc_damage_deposit\": \"2352.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2252.00\",\n                        \"price_inc_damage_deposit\": \"2352.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2252.00\",\n                        \"price_inc_damage_deposit\": \"2352.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2252.00\",\n                        \"price_inc_damage_deposit\": \"2352.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2252.00\",\n                        \"price_inc_damage_deposit\": \"2352.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2252.00\",\n                        \"price_inc_damage_deposit\": \"2352.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2252.00\",\n                        \"price_inc_damage_deposit\": \"2352.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2252.00\",\n                        \"price_inc_damage_deposit\": \"2352.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2252.00\",\n                        \"price_inc_damage_deposit\": \"2352.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2252.00\",\n                        \"price_inc_damage_deposit\": \"2352.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2252.00\",\n                        \"price_inc_damage_deposit\": \"2352.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2252.00\",\n                        \"price_inc_damage_deposit\": \"2352.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2363.00\",\n                        \"price_inc_damage_deposit\": \"2463.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2400.00\",\n                        \"price_inc_damage_deposit\": \"2500.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2437.00\",\n                        \"price_inc_damage_deposit\": \"2537.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2621.00\",\n                        \"price_inc_damage_deposit\": \"2721.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2658.00\",\n                        \"price_inc_damage_deposit\": \"2758.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2695.00\",\n                        \"price_inc_damage_deposit\": \"2795.00\",\n                        \"damage_deposit\": \"100.00\"\n                    }\n                },\n                \"16\": {\n                    \"2025-05-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2991.00\",\n                        \"price_inc_damage_deposit\": \"3091.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2991.00\",\n                        \"price_inc_damage_deposit\": \"3091.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2991.00\",\n                        \"price_inc_damage_deposit\": \"3091.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3136.00\",\n                        \"price_inc_damage_deposit\": \"3236.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3185.00\",\n                        \"price_inc_damage_deposit\": \"3285.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3234.00\",\n                        \"price_inc_damage_deposit\": \"3334.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2991.00\",\n                        \"price_inc_damage_deposit\": \"3091.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2991.00\",\n                        \"price_inc_damage_deposit\": \"3091.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2991.00\",\n                        \"price_inc_damage_deposit\": \"3091.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2991.00\",\n                        \"price_inc_damage_deposit\": \"3091.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2880.00\",\n                        \"price_inc_damage_deposit\": \"2980.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2842.00\",\n                        \"price_inc_damage_deposit\": \"2942.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2806.00\",\n                        \"price_inc_damage_deposit\": \"2906.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2769.00\",\n                        \"price_inc_damage_deposit\": \"2869.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2622.00\",\n                        \"price_inc_damage_deposit\": \"2722.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2585.00\",\n                        \"price_inc_damage_deposit\": \"2685.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2511.00\",\n                        \"price_inc_damage_deposit\": \"2611.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2400.00\",\n                        \"price_inc_damage_deposit\": \"2500.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2400.00\",\n                        \"price_inc_damage_deposit\": \"2500.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2400.00\",\n                        \"price_inc_damage_deposit\": \"2500.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2400.00\",\n                        \"price_inc_damage_deposit\": \"2500.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2400.00\",\n                        \"price_inc_damage_deposit\": \"2500.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2400.00\",\n                        \"price_inc_damage_deposit\": \"2500.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2400.00\",\n                        \"price_inc_damage_deposit\": \"2500.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2400.00\",\n                        \"price_inc_damage_deposit\": \"2500.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2400.00\",\n                        \"price_inc_damage_deposit\": \"2500.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2400.00\",\n                        \"price_inc_damage_deposit\": \"2500.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2400.00\",\n                        \"price_inc_damage_deposit\": \"2500.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2400.00\",\n                        \"price_inc_damage_deposit\": \"2500.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2400.00\",\n                        \"price_inc_damage_deposit\": \"2500.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2400.00\",\n                        \"price_inc_damage_deposit\": \"2500.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2400.00\",\n                        \"price_inc_damage_deposit\": \"2500.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2400.00\",\n                        \"price_inc_damage_deposit\": \"2500.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2400.00\",\n                        \"price_inc_damage_deposit\": \"2500.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2400.00\",\n                        \"price_inc_damage_deposit\": \"2500.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2400.00\",\n                        \"price_inc_damage_deposit\": \"2500.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2400.00\",\n                        \"price_inc_damage_deposit\": \"2500.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2400.00\",\n                        \"price_inc_damage_deposit\": \"2500.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2400.00\",\n                        \"price_inc_damage_deposit\": \"2500.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2400.00\",\n                        \"price_inc_damage_deposit\": \"2500.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2400.00\",\n                        \"price_inc_damage_deposit\": \"2500.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2400.00\",\n                        \"price_inc_damage_deposit\": \"2500.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2400.00\",\n                        \"price_inc_damage_deposit\": \"2500.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2400.00\",\n                        \"price_inc_damage_deposit\": \"2500.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2400.00\",\n                        \"price_inc_damage_deposit\": \"2500.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2400.00\",\n                        \"price_inc_damage_deposit\": \"2500.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2400.00\",\n                        \"price_inc_damage_deposit\": \"2500.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2400.00\",\n                        \"price_inc_damage_deposit\": \"2500.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2400.00\",\n                        \"price_inc_damage_deposit\": \"2500.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2400.00\",\n                        \"price_inc_damage_deposit\": \"2500.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2400.00\",\n                        \"price_inc_damage_deposit\": \"2500.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2400.00\",\n                        \"price_inc_damage_deposit\": \"2500.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2400.00\",\n                        \"price_inc_damage_deposit\": \"2500.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2511.00\",\n                        \"price_inc_damage_deposit\": \"2611.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2585.00\",\n                        \"price_inc_damage_deposit\": \"2685.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2622.00\",\n                        \"price_inc_damage_deposit\": \"2722.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2769.00\",\n                        \"price_inc_damage_deposit\": \"2869.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2806.00\",\n                        \"price_inc_damage_deposit\": \"2906.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2842.00\",\n                        \"price_inc_damage_deposit\": \"2942.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2880.00\",\n                        \"price_inc_damage_deposit\": \"2980.00\",\n                        \"damage_deposit\": \"100.00\"\n                    }\n                },\n                \"17\": {\n                    \"2025-05-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3175.00\",\n                        \"price_inc_damage_deposit\": \"3275.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3176.00\",\n                        \"price_inc_damage_deposit\": \"3276.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3175.00\",\n                        \"price_inc_damage_deposit\": \"3275.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3322.00\",\n                        \"price_inc_damage_deposit\": \"3422.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3370.00\",\n                        \"price_inc_damage_deposit\": \"3470.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3418.00\",\n                        \"price_inc_damage_deposit\": \"3518.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3175.00\",\n                        \"price_inc_damage_deposit\": \"3275.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3176.00\",\n                        \"price_inc_damage_deposit\": \"3276.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3175.00\",\n                        \"price_inc_damage_deposit\": \"3275.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3176.00\",\n                        \"price_inc_damage_deposit\": \"3276.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3175.00\",\n                        \"price_inc_damage_deposit\": \"3275.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3064.00\",\n                        \"price_inc_damage_deposit\": \"3164.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3028.00\",\n                        \"price_inc_damage_deposit\": \"3128.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2991.00\",\n                        \"price_inc_damage_deposit\": \"3091.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2955.00\",\n                        \"price_inc_damage_deposit\": \"3055.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2917.00\",\n                        \"price_inc_damage_deposit\": \"3017.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2806.00\",\n                        \"price_inc_damage_deposit\": \"2906.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2770.00\",\n                        \"price_inc_damage_deposit\": \"2870.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2733.00\",\n                        \"price_inc_damage_deposit\": \"2833.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2696.00\",\n                        \"price_inc_damage_deposit\": \"2796.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2660.00\",\n                        \"price_inc_damage_deposit\": \"2760.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2549.00\",\n                        \"price_inc_damage_deposit\": \"2649.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2660.00\",\n                        \"price_inc_damage_deposit\": \"2760.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2696.00\",\n                        \"price_inc_damage_deposit\": \"2796.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2733.00\",\n                        \"price_inc_damage_deposit\": \"2833.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2770.00\",\n                        \"price_inc_damage_deposit\": \"2870.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2806.00\",\n                        \"price_inc_damage_deposit\": \"2906.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2917.00\",\n                        \"price_inc_damage_deposit\": \"3017.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2955.00\",\n                        \"price_inc_damage_deposit\": \"3055.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2991.00\",\n                        \"price_inc_damage_deposit\": \"3091.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3028.00\",\n                        \"price_inc_damage_deposit\": \"3128.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3064.00\",\n                        \"price_inc_damage_deposit\": \"3164.00\",\n                        \"damage_deposit\": \"100.00\"\n                    }\n                },\n                \"18\": {\n                    \"2025-05-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3360.00\",\n                        \"price_inc_damage_deposit\": \"3460.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-05-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3360.00\",\n                        \"price_inc_damage_deposit\": \"3460.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3555.00\",\n                        \"price_inc_damage_deposit\": \"3655.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3605.00\",\n                        \"price_inc_damage_deposit\": \"3705.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3360.00\",\n                        \"price_inc_damage_deposit\": \"3460.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3360.00\",\n                        \"price_inc_damage_deposit\": \"3460.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3360.00\",\n                        \"price_inc_damage_deposit\": \"3460.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3360.00\",\n                        \"price_inc_damage_deposit\": \"3460.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3213.00\",\n                        \"price_inc_damage_deposit\": \"3313.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3176.00\",\n                        \"price_inc_damage_deposit\": \"3276.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3139.00\",\n                        \"price_inc_damage_deposit\": \"3239.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3103.00\",\n                        \"price_inc_damage_deposit\": \"3203.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2955.00\",\n                        \"price_inc_damage_deposit\": \"3055.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2918.00\",\n                        \"price_inc_damage_deposit\": \"3018.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2881.00\",\n                        \"price_inc_damage_deposit\": \"2981.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2845.00\",\n                        \"price_inc_damage_deposit\": \"2945.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2696.00\",\n                        \"price_inc_damage_deposit\": \"2796.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2696.00\",\n                        \"price_inc_damage_deposit\": \"2796.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2696.00\",\n                        \"price_inc_damage_deposit\": \"2796.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2696.00\",\n                        \"price_inc_damage_deposit\": \"2796.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2696.00\",\n                        \"price_inc_damage_deposit\": \"2796.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2696.00\",\n                        \"price_inc_damage_deposit\": \"2796.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2696.00\",\n                        \"price_inc_damage_deposit\": \"2796.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2696.00\",\n                        \"price_inc_damage_deposit\": \"2796.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2696.00\",\n                        \"price_inc_damage_deposit\": \"2796.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2696.00\",\n                        \"price_inc_damage_deposit\": \"2796.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2696.00\",\n                        \"price_inc_damage_deposit\": \"2796.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2696.00\",\n                        \"price_inc_damage_deposit\": \"2796.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2696.00\",\n                        \"price_inc_damage_deposit\": \"2796.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2696.00\",\n                        \"price_inc_damage_deposit\": \"2796.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2696.00\",\n                        \"price_inc_damage_deposit\": \"2796.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2696.00\",\n                        \"price_inc_damage_deposit\": \"2796.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2696.00\",\n                        \"price_inc_damage_deposit\": \"2796.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2696.00\",\n                        \"price_inc_damage_deposit\": \"2796.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2696.00\",\n                        \"price_inc_damage_deposit\": \"2796.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2696.00\",\n                        \"price_inc_damage_deposit\": \"2796.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2696.00\",\n                        \"price_inc_damage_deposit\": \"2796.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2696.00\",\n                        \"price_inc_damage_deposit\": \"2796.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2696.00\",\n                        \"price_inc_damage_deposit\": \"2796.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2696.00\",\n                        \"price_inc_damage_deposit\": \"2796.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2696.00\",\n                        \"price_inc_damage_deposit\": \"2796.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2696.00\",\n                        \"price_inc_damage_deposit\": \"2796.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2696.00\",\n                        \"price_inc_damage_deposit\": \"2796.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2696.00\",\n                        \"price_inc_damage_deposit\": \"2796.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2696.00\",\n                        \"price_inc_damage_deposit\": \"2796.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2696.00\",\n                        \"price_inc_damage_deposit\": \"2796.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2696.00\",\n                        \"price_inc_damage_deposit\": \"2796.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2696.00\",\n                        \"price_inc_damage_deposit\": \"2796.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2696.00\",\n                        \"price_inc_damage_deposit\": \"2796.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2696.00\",\n                        \"price_inc_damage_deposit\": \"2796.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2696.00\",\n                        \"price_inc_damage_deposit\": \"2796.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2696.00\",\n                        \"price_inc_damage_deposit\": \"2796.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2845.00\",\n                        \"price_inc_damage_deposit\": \"2945.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2881.00\",\n                        \"price_inc_damage_deposit\": \"2981.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2918.00\",\n                        \"price_inc_damage_deposit\": \"3018.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2955.00\",\n                        \"price_inc_damage_deposit\": \"3055.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3103.00\",\n                        \"price_inc_damage_deposit\": \"3203.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3139.00\",\n                        \"price_inc_damage_deposit\": \"3239.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3176.00\",\n                        \"price_inc_damage_deposit\": \"3276.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3213.00\",\n                        \"price_inc_damage_deposit\": \"3313.00\",\n                        \"damage_deposit\": \"100.00\"\n                    }\n                },\n                \"19\": {\n                    \"2025-05-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3545.00\",\n                        \"price_inc_damage_deposit\": \"3645.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-06-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3789.00\",\n                        \"price_inc_damage_deposit\": \"3889.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3545.00\",\n                        \"price_inc_damage_deposit\": \"3645.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3546.00\",\n                        \"price_inc_damage_deposit\": \"3646.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3545.00\",\n                        \"price_inc_damage_deposit\": \"3645.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3360.00\",\n                        \"price_inc_damage_deposit\": \"3460.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3324.00\",\n                        \"price_inc_damage_deposit\": \"3424.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3287.00\",\n                        \"price_inc_damage_deposit\": \"3387.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3103.00\",\n                        \"price_inc_damage_deposit\": \"3203.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3067.00\",\n                        \"price_inc_damage_deposit\": \"3167.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3029.00\",\n                        \"price_inc_damage_deposit\": \"3129.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2845.00\",\n                        \"price_inc_damage_deposit\": \"2945.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2845.00\",\n                        \"price_inc_damage_deposit\": \"2945.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2845.00\",\n                        \"price_inc_damage_deposit\": \"2945.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2845.00\",\n                        \"price_inc_damage_deposit\": \"2945.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2845.00\",\n                        \"price_inc_damage_deposit\": \"2945.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2845.00\",\n                        \"price_inc_damage_deposit\": \"2945.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2845.00\",\n                        \"price_inc_damage_deposit\": \"2945.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2845.00\",\n                        \"price_inc_damage_deposit\": \"2945.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2845.00\",\n                        \"price_inc_damage_deposit\": \"2945.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2845.00\",\n                        \"price_inc_damage_deposit\": \"2945.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2845.00\",\n                        \"price_inc_damage_deposit\": \"2945.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2845.00\",\n                        \"price_inc_damage_deposit\": \"2945.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2845.00\",\n                        \"price_inc_damage_deposit\": \"2945.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2845.00\",\n                        \"price_inc_damage_deposit\": \"2945.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2845.00\",\n                        \"price_inc_damage_deposit\": \"2945.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2845.00\",\n                        \"price_inc_damage_deposit\": \"2945.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2845.00\",\n                        \"price_inc_damage_deposit\": \"2945.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2845.00\",\n                        \"price_inc_damage_deposit\": \"2945.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2845.00\",\n                        \"price_inc_damage_deposit\": \"2945.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2845.00\",\n                        \"price_inc_damage_deposit\": \"2945.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2845.00\",\n                        \"price_inc_damage_deposit\": \"2945.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2845.00\",\n                        \"price_inc_damage_deposit\": \"2945.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2845.00\",\n                        \"price_inc_damage_deposit\": \"2945.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2845.00\",\n                        \"price_inc_damage_deposit\": \"2945.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2845.00\",\n                        \"price_inc_damage_deposit\": \"2945.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2845.00\",\n                        \"price_inc_damage_deposit\": \"2945.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2845.00\",\n                        \"price_inc_damage_deposit\": \"2945.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3029.00\",\n                        \"price_inc_damage_deposit\": \"3129.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3067.00\",\n                        \"price_inc_damage_deposit\": \"3167.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3103.00\",\n                        \"price_inc_damage_deposit\": \"3203.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3287.00\",\n                        \"price_inc_damage_deposit\": \"3387.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3324.00\",\n                        \"price_inc_damage_deposit\": \"3424.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3360.00\",\n                        \"price_inc_damage_deposit\": \"3460.00\",\n                        \"damage_deposit\": \"100.00\"\n                    }\n                },\n                \"20\": {\n                    \"2025-09-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3730.00\",\n                        \"price_inc_damage_deposit\": \"3830.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3730.00\",\n                        \"price_inc_damage_deposit\": \"3830.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3620.00\",\n                        \"price_inc_damage_deposit\": \"3720.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3509.00\",\n                        \"price_inc_damage_deposit\": \"3609.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3473.00\",\n                        \"price_inc_damage_deposit\": \"3573.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3362.00\",\n                        \"price_inc_damage_deposit\": \"3462.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3251.00\",\n                        \"price_inc_damage_deposit\": \"3351.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3214.00\",\n                        \"price_inc_damage_deposit\": \"3314.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3103.00\",\n                        \"price_inc_damage_deposit\": \"3203.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2993.00\",\n                        \"price_inc_damage_deposit\": \"3093.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2993.00\",\n                        \"price_inc_damage_deposit\": \"3093.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2993.00\",\n                        \"price_inc_damage_deposit\": \"3093.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2993.00\",\n                        \"price_inc_damage_deposit\": \"3093.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2993.00\",\n                        \"price_inc_damage_deposit\": \"3093.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2993.00\",\n                        \"price_inc_damage_deposit\": \"3093.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2993.00\",\n                        \"price_inc_damage_deposit\": \"3093.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2993.00\",\n                        \"price_inc_damage_deposit\": \"3093.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2993.00\",\n                        \"price_inc_damage_deposit\": \"3093.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2993.00\",\n                        \"price_inc_damage_deposit\": \"3093.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2993.00\",\n                        \"price_inc_damage_deposit\": \"3093.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2993.00\",\n                        \"price_inc_damage_deposit\": \"3093.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2993.00\",\n                        \"price_inc_damage_deposit\": \"3093.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2993.00\",\n                        \"price_inc_damage_deposit\": \"3093.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2993.00\",\n                        \"price_inc_damage_deposit\": \"3093.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2993.00\",\n                        \"price_inc_damage_deposit\": \"3093.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2993.00\",\n                        \"price_inc_damage_deposit\": \"3093.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2993.00\",\n                        \"price_inc_damage_deposit\": \"3093.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2993.00\",\n                        \"price_inc_damage_deposit\": \"3093.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2993.00\",\n                        \"price_inc_damage_deposit\": \"3093.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2993.00\",\n                        \"price_inc_damage_deposit\": \"3093.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2993.00\",\n                        \"price_inc_damage_deposit\": \"3093.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2993.00\",\n                        \"price_inc_damage_deposit\": \"3093.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2993.00\",\n                        \"price_inc_damage_deposit\": \"3093.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2993.00\",\n                        \"price_inc_damage_deposit\": \"3093.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"2993.00\",\n                        \"price_inc_damage_deposit\": \"3093.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3103.00\",\n                        \"price_inc_damage_deposit\": \"3203.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3214.00\",\n                        \"price_inc_damage_deposit\": \"3314.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3251.00\",\n                        \"price_inc_damage_deposit\": \"3351.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3362.00\",\n                        \"price_inc_damage_deposit\": \"3462.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3473.00\",\n                        \"price_inc_damage_deposit\": \"3573.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3509.00\",\n                        \"price_inc_damage_deposit\": \"3609.00\",\n                        \"damage_deposit\": \"100.00\"\n                    }\n                },\n                \"21\": {\n                    \"2025-09-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4208.00\",\n                        \"price_inc_damage_deposit\": \"4308.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4208.00\",\n                        \"price_inc_damage_deposit\": \"4308.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4168.00\",\n                        \"price_inc_damage_deposit\": \"4268.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4129.00\",\n                        \"price_inc_damage_deposit\": \"4229.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4089.00\",\n                        \"price_inc_damage_deposit\": \"4189.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4050.00\",\n                        \"price_inc_damage_deposit\": \"4150.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4009.00\",\n                        \"price_inc_damage_deposit\": \"4109.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3971.00\",\n                        \"price_inc_damage_deposit\": \"4071.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3930.00\",\n                        \"price_inc_damage_deposit\": \"4030.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3890.00\",\n                        \"price_inc_damage_deposit\": \"3990.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3851.00\",\n                        \"price_inc_damage_deposit\": \"3951.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3811.00\",\n                        \"price_inc_damage_deposit\": \"3911.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3772.00\",\n                        \"price_inc_damage_deposit\": \"3872.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3732.00\",\n                        \"price_inc_damage_deposit\": \"3832.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3693.00\",\n                        \"price_inc_damage_deposit\": \"3793.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3653.00\",\n                        \"price_inc_damage_deposit\": \"3753.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3613.00\",\n                        \"price_inc_damage_deposit\": \"3713.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3574.00\",\n                        \"price_inc_damage_deposit\": \"3674.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3534.00\",\n                        \"price_inc_damage_deposit\": \"3634.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3495.00\",\n                        \"price_inc_damage_deposit\": \"3595.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3455.00\",\n                        \"price_inc_damage_deposit\": \"3555.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3416.00\",\n                        \"price_inc_damage_deposit\": \"3516.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-31\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3376.00\",\n                        \"price_inc_damage_deposit\": \"3476.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3416.00\",\n                        \"price_inc_damage_deposit\": \"3516.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3455.00\",\n                        \"price_inc_damage_deposit\": \"3555.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3495.00\",\n                        \"price_inc_damage_deposit\": \"3595.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3534.00\",\n                        \"price_inc_damage_deposit\": \"3634.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3574.00\",\n                        \"price_inc_damage_deposit\": \"3674.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3613.00\",\n                        \"price_inc_damage_deposit\": \"3713.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3653.00\",\n                        \"price_inc_damage_deposit\": \"3753.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3693.00\",\n                        \"price_inc_damage_deposit\": \"3793.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3732.00\",\n                        \"price_inc_damage_deposit\": \"3832.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3772.00\",\n                        \"price_inc_damage_deposit\": \"3872.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3811.00\",\n                        \"price_inc_damage_deposit\": \"3911.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3851.00\",\n                        \"price_inc_damage_deposit\": \"3951.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3890.00\",\n                        \"price_inc_damage_deposit\": \"3990.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3930.00\",\n                        \"price_inc_damage_deposit\": \"4030.00\",\n                        \"damage_deposit\": \"100.00\"\n                    }\n                },\n                \"22\": {\n                    \"2025-09-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3862.00\",\n                        \"price_inc_damage_deposit\": \"3962.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3827.00\",\n                        \"price_inc_damage_deposit\": \"3927.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3790.00\",\n                        \"price_inc_damage_deposit\": \"3890.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3612.00\",\n                        \"price_inc_damage_deposit\": \"3712.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3578.00\",\n                        \"price_inc_damage_deposit\": \"3678.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3541.00\",\n                        \"price_inc_damage_deposit\": \"3641.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3363.00\",\n                        \"price_inc_damage_deposit\": \"3463.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3327.00\",\n                        \"price_inc_damage_deposit\": \"3427.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3291.00\",\n                        \"price_inc_damage_deposit\": \"3391.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3185.00\",\n                        \"price_inc_damage_deposit\": \"3285.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3185.00\",\n                        \"price_inc_damage_deposit\": \"3285.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3185.00\",\n                        \"price_inc_damage_deposit\": \"3285.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3185.00\",\n                        \"price_inc_damage_deposit\": \"3285.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3185.00\",\n                        \"price_inc_damage_deposit\": \"3285.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3185.00\",\n                        \"price_inc_damage_deposit\": \"3285.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3185.00\",\n                        \"price_inc_damage_deposit\": \"3285.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3185.00\",\n                        \"price_inc_damage_deposit\": \"3285.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3185.00\",\n                        \"price_inc_damage_deposit\": \"3285.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3185.00\",\n                        \"price_inc_damage_deposit\": \"3285.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3185.00\",\n                        \"price_inc_damage_deposit\": \"3285.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3185.00\",\n                        \"price_inc_damage_deposit\": \"3285.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3185.00\",\n                        \"price_inc_damage_deposit\": \"3285.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3185.00\",\n                        \"price_inc_damage_deposit\": \"3285.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3185.00\",\n                        \"price_inc_damage_deposit\": \"3285.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3185.00\",\n                        \"price_inc_damage_deposit\": \"3285.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3185.00\",\n                        \"price_inc_damage_deposit\": \"3285.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3185.00\",\n                        \"price_inc_damage_deposit\": \"3285.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3185.00\",\n                        \"price_inc_damage_deposit\": \"3285.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3185.00\",\n                        \"price_inc_damage_deposit\": \"3285.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3185.00\",\n                        \"price_inc_damage_deposit\": \"3285.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3185.00\",\n                        \"price_inc_damage_deposit\": \"3285.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3185.00\",\n                        \"price_inc_damage_deposit\": \"3285.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3185.00\",\n                        \"price_inc_damage_deposit\": \"3285.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3291.00\",\n                        \"price_inc_damage_deposit\": \"3391.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3327.00\",\n                        \"price_inc_damage_deposit\": \"3427.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3363.00\",\n                        \"price_inc_damage_deposit\": \"3463.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3541.00\",\n                        \"price_inc_damage_deposit\": \"3641.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3578.00\",\n                        \"price_inc_damage_deposit\": \"3678.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3612.00\",\n                        \"price_inc_damage_deposit\": \"3712.00\",\n                        \"damage_deposit\": \"100.00\"\n                    }\n                },\n                \"23\": {\n                    \"2025-09-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4041.00\",\n                        \"price_inc_damage_deposit\": \"4141.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4005.00\",\n                        \"price_inc_damage_deposit\": \"4105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3971.00\",\n                        \"price_inc_damage_deposit\": \"4071.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3934.00\",\n                        \"price_inc_damage_deposit\": \"4034.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3791.00\",\n                        \"price_inc_damage_deposit\": \"3891.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3756.00\",\n                        \"price_inc_damage_deposit\": \"3856.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3720.00\",\n                        \"price_inc_damage_deposit\": \"3820.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3684.00\",\n                        \"price_inc_damage_deposit\": \"3784.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3542.00\",\n                        \"price_inc_damage_deposit\": \"3642.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3506.00\",\n                        \"price_inc_damage_deposit\": \"3606.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3471.00\",\n                        \"price_inc_damage_deposit\": \"3571.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3435.00\",\n                        \"price_inc_damage_deposit\": \"3535.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3327.00\",\n                        \"price_inc_damage_deposit\": \"3427.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3327.00\",\n                        \"price_inc_damage_deposit\": \"3427.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3327.00\",\n                        \"price_inc_damage_deposit\": \"3427.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3327.00\",\n                        \"price_inc_damage_deposit\": \"3427.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3327.00\",\n                        \"price_inc_damage_deposit\": \"3427.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3327.00\",\n                        \"price_inc_damage_deposit\": \"3427.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3327.00\",\n                        \"price_inc_damage_deposit\": \"3427.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3327.00\",\n                        \"price_inc_damage_deposit\": \"3427.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3327.00\",\n                        \"price_inc_damage_deposit\": \"3427.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3327.00\",\n                        \"price_inc_damage_deposit\": \"3427.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3327.00\",\n                        \"price_inc_damage_deposit\": \"3427.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3327.00\",\n                        \"price_inc_damage_deposit\": \"3427.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3327.00\",\n                        \"price_inc_damage_deposit\": \"3427.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3327.00\",\n                        \"price_inc_damage_deposit\": \"3427.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3327.00\",\n                        \"price_inc_damage_deposit\": \"3427.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3327.00\",\n                        \"price_inc_damage_deposit\": \"3427.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3327.00\",\n                        \"price_inc_damage_deposit\": \"3427.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3327.00\",\n                        \"price_inc_damage_deposit\": \"3427.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3327.00\",\n                        \"price_inc_damage_deposit\": \"3427.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3327.00\",\n                        \"price_inc_damage_deposit\": \"3427.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3327.00\",\n                        \"price_inc_damage_deposit\": \"3427.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3327.00\",\n                        \"price_inc_damage_deposit\": \"3427.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3327.00\",\n                        \"price_inc_damage_deposit\": \"3427.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3327.00\",\n                        \"price_inc_damage_deposit\": \"3427.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3327.00\",\n                        \"price_inc_damage_deposit\": \"3427.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3327.00\",\n                        \"price_inc_damage_deposit\": \"3427.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3327.00\",\n                        \"price_inc_damage_deposit\": \"3427.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3327.00\",\n                        \"price_inc_damage_deposit\": \"3427.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3327.00\",\n                        \"price_inc_damage_deposit\": \"3427.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3327.00\",\n                        \"price_inc_damage_deposit\": \"3427.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3327.00\",\n                        \"price_inc_damage_deposit\": \"3427.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3327.00\",\n                        \"price_inc_damage_deposit\": \"3427.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3435.00\",\n                        \"price_inc_damage_deposit\": \"3535.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3471.00\",\n                        \"price_inc_damage_deposit\": \"3571.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3506.00\",\n                        \"price_inc_damage_deposit\": \"3606.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3542.00\",\n                        \"price_inc_damage_deposit\": \"3642.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3684.00\",\n                        \"price_inc_damage_deposit\": \"3784.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3720.00\",\n                        \"price_inc_damage_deposit\": \"3820.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3756.00\",\n                        \"price_inc_damage_deposit\": \"3856.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3791.00\",\n                        \"price_inc_damage_deposit\": \"3891.00\",\n                        \"damage_deposit\": \"100.00\"\n                    }\n                },\n                \"24\": {\n                    \"2025-09-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4219.00\",\n                        \"price_inc_damage_deposit\": \"4319.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4184.00\",\n                        \"price_inc_damage_deposit\": \"4284.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4149.00\",\n                        \"price_inc_damage_deposit\": \"4249.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4113.00\",\n                        \"price_inc_damage_deposit\": \"4213.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4077.00\",\n                        \"price_inc_damage_deposit\": \"4177.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3971.00\",\n                        \"price_inc_damage_deposit\": \"4071.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3935.00\",\n                        \"price_inc_damage_deposit\": \"4035.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3899.00\",\n                        \"price_inc_damage_deposit\": \"3999.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3864.00\",\n                        \"price_inc_damage_deposit\": \"3964.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3828.00\",\n                        \"price_inc_damage_deposit\": \"3928.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3720.00\",\n                        \"price_inc_damage_deposit\": \"3820.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3685.00\",\n                        \"price_inc_damage_deposit\": \"3785.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3650.00\",\n                        \"price_inc_damage_deposit\": \"3750.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3614.00\",\n                        \"price_inc_damage_deposit\": \"3714.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3578.00\",\n                        \"price_inc_damage_deposit\": \"3678.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3471.00\",\n                        \"price_inc_damage_deposit\": \"3571.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3471.00\",\n                        \"price_inc_damage_deposit\": \"3571.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3471.00\",\n                        \"price_inc_damage_deposit\": \"3571.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3471.00\",\n                        \"price_inc_damage_deposit\": \"3571.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3471.00\",\n                        \"price_inc_damage_deposit\": \"3571.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3471.00\",\n                        \"price_inc_damage_deposit\": \"3571.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3471.00\",\n                        \"price_inc_damage_deposit\": \"3571.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3471.00\",\n                        \"price_inc_damage_deposit\": \"3571.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3471.00\",\n                        \"price_inc_damage_deposit\": \"3571.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3471.00\",\n                        \"price_inc_damage_deposit\": \"3571.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3471.00\",\n                        \"price_inc_damage_deposit\": \"3571.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3471.00\",\n                        \"price_inc_damage_deposit\": \"3571.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3471.00\",\n                        \"price_inc_damage_deposit\": \"3571.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3471.00\",\n                        \"price_inc_damage_deposit\": \"3571.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3471.00\",\n                        \"price_inc_damage_deposit\": \"3571.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3471.00\",\n                        \"price_inc_damage_deposit\": \"3571.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3471.00\",\n                        \"price_inc_damage_deposit\": \"3571.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3471.00\",\n                        \"price_inc_damage_deposit\": \"3571.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3471.00\",\n                        \"price_inc_damage_deposit\": \"3571.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3471.00\",\n                        \"price_inc_damage_deposit\": \"3571.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3471.00\",\n                        \"price_inc_damage_deposit\": \"3571.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3471.00\",\n                        \"price_inc_damage_deposit\": \"3571.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3471.00\",\n                        \"price_inc_damage_deposit\": \"3571.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3471.00\",\n                        \"price_inc_damage_deposit\": \"3571.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3471.00\",\n                        \"price_inc_damage_deposit\": \"3571.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3471.00\",\n                        \"price_inc_damage_deposit\": \"3571.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3471.00\",\n                        \"price_inc_damage_deposit\": \"3571.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3471.00\",\n                        \"price_inc_damage_deposit\": \"3571.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3471.00\",\n                        \"price_inc_damage_deposit\": \"3571.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3471.00\",\n                        \"price_inc_damage_deposit\": \"3571.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3471.00\",\n                        \"price_inc_damage_deposit\": \"3571.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3471.00\",\n                        \"price_inc_damage_deposit\": \"3571.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3471.00\",\n                        \"price_inc_damage_deposit\": \"3571.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3471.00\",\n                        \"price_inc_damage_deposit\": \"3571.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3471.00\",\n                        \"price_inc_damage_deposit\": \"3571.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3471.00\",\n                        \"price_inc_damage_deposit\": \"3571.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3471.00\",\n                        \"price_inc_damage_deposit\": \"3571.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3471.00\",\n                        \"price_inc_damage_deposit\": \"3571.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3471.00\",\n                        \"price_inc_damage_deposit\": \"3571.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3471.00\",\n                        \"price_inc_damage_deposit\": \"3571.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3578.00\",\n                        \"price_inc_damage_deposit\": \"3678.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3614.00\",\n                        \"price_inc_damage_deposit\": \"3714.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3650.00\",\n                        \"price_inc_damage_deposit\": \"3750.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3685.00\",\n                        \"price_inc_damage_deposit\": \"3785.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3720.00\",\n                        \"price_inc_damage_deposit\": \"3820.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3828.00\",\n                        \"price_inc_damage_deposit\": \"3928.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3864.00\",\n                        \"price_inc_damage_deposit\": \"3964.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3899.00\",\n                        \"price_inc_damage_deposit\": \"3999.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3935.00\",\n                        \"price_inc_damage_deposit\": \"4035.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3971.00\",\n                        \"price_inc_damage_deposit\": \"4071.00\",\n                        \"damage_deposit\": \"100.00\"\n                    }\n                },\n                \"25\": {\n                    \"2025-09-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4363.00\",\n                        \"price_inc_damage_deposit\": \"4463.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4328.00\",\n                        \"price_inc_damage_deposit\": \"4428.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4291.00\",\n                        \"price_inc_damage_deposit\": \"4391.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4257.00\",\n                        \"price_inc_damage_deposit\": \"4357.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4113.00\",\n                        \"price_inc_damage_deposit\": \"4213.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4078.00\",\n                        \"price_inc_damage_deposit\": \"4178.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4042.00\",\n                        \"price_inc_damage_deposit\": \"4142.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4007.00\",\n                        \"price_inc_damage_deposit\": \"4107.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3864.00\",\n                        \"price_inc_damage_deposit\": \"3964.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3829.00\",\n                        \"price_inc_damage_deposit\": \"3929.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3792.00\",\n                        \"price_inc_damage_deposit\": \"3892.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3758.00\",\n                        \"price_inc_damage_deposit\": \"3858.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3614.00\",\n                        \"price_inc_damage_deposit\": \"3714.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3614.00\",\n                        \"price_inc_damage_deposit\": \"3714.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3614.00\",\n                        \"price_inc_damage_deposit\": \"3714.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3614.00\",\n                        \"price_inc_damage_deposit\": \"3714.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3614.00\",\n                        \"price_inc_damage_deposit\": \"3714.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3614.00\",\n                        \"price_inc_damage_deposit\": \"3714.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3614.00\",\n                        \"price_inc_damage_deposit\": \"3714.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3614.00\",\n                        \"price_inc_damage_deposit\": \"3714.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3614.00\",\n                        \"price_inc_damage_deposit\": \"3714.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3614.00\",\n                        \"price_inc_damage_deposit\": \"3714.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3614.00\",\n                        \"price_inc_damage_deposit\": \"3714.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3614.00\",\n                        \"price_inc_damage_deposit\": \"3714.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3614.00\",\n                        \"price_inc_damage_deposit\": \"3714.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3614.00\",\n                        \"price_inc_damage_deposit\": \"3714.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3614.00\",\n                        \"price_inc_damage_deposit\": \"3714.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3614.00\",\n                        \"price_inc_damage_deposit\": \"3714.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3614.00\",\n                        \"price_inc_damage_deposit\": \"3714.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3614.00\",\n                        \"price_inc_damage_deposit\": \"3714.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3614.00\",\n                        \"price_inc_damage_deposit\": \"3714.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3614.00\",\n                        \"price_inc_damage_deposit\": \"3714.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3614.00\",\n                        \"price_inc_damage_deposit\": \"3714.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3614.00\",\n                        \"price_inc_damage_deposit\": \"3714.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3614.00\",\n                        \"price_inc_damage_deposit\": \"3714.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3614.00\",\n                        \"price_inc_damage_deposit\": \"3714.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3614.00\",\n                        \"price_inc_damage_deposit\": \"3714.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3614.00\",\n                        \"price_inc_damage_deposit\": \"3714.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3614.00\",\n                        \"price_inc_damage_deposit\": \"3714.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3614.00\",\n                        \"price_inc_damage_deposit\": \"3714.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3614.00\",\n                        \"price_inc_damage_deposit\": \"3714.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3614.00\",\n                        \"price_inc_damage_deposit\": \"3714.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3614.00\",\n                        \"price_inc_damage_deposit\": \"3714.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3614.00\",\n                        \"price_inc_damage_deposit\": \"3714.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3758.00\",\n                        \"price_inc_damage_deposit\": \"3858.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3792.00\",\n                        \"price_inc_damage_deposit\": \"3892.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3829.00\",\n                        \"price_inc_damage_deposit\": \"3929.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3864.00\",\n                        \"price_inc_damage_deposit\": \"3964.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4007.00\",\n                        \"price_inc_damage_deposit\": \"4107.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4042.00\",\n                        \"price_inc_damage_deposit\": \"4142.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4078.00\",\n                        \"price_inc_damage_deposit\": \"4178.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4113.00\",\n                        \"price_inc_damage_deposit\": \"4213.00\",\n                        \"damage_deposit\": \"100.00\"\n                    }\n                },\n                \"26\": {\n                    \"2025-09-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4506.00\",\n                        \"price_inc_damage_deposit\": \"4606.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4471.00\",\n                        \"price_inc_damage_deposit\": \"4571.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4435.00\",\n                        \"price_inc_damage_deposit\": \"4535.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4257.00\",\n                        \"price_inc_damage_deposit\": \"4357.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4222.00\",\n                        \"price_inc_damage_deposit\": \"4322.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4185.00\",\n                        \"price_inc_damage_deposit\": \"4285.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4007.00\",\n                        \"price_inc_damage_deposit\": \"4107.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3972.00\",\n                        \"price_inc_damage_deposit\": \"4072.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3936.00\",\n                        \"price_inc_damage_deposit\": \"4036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3758.00\",\n                        \"price_inc_damage_deposit\": \"3858.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3758.00\",\n                        \"price_inc_damage_deposit\": \"3858.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3758.00\",\n                        \"price_inc_damage_deposit\": \"3858.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3758.00\",\n                        \"price_inc_damage_deposit\": \"3858.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3758.00\",\n                        \"price_inc_damage_deposit\": \"3858.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3758.00\",\n                        \"price_inc_damage_deposit\": \"3858.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3758.00\",\n                        \"price_inc_damage_deposit\": \"3858.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3758.00\",\n                        \"price_inc_damage_deposit\": \"3858.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3758.00\",\n                        \"price_inc_damage_deposit\": \"3858.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3758.00\",\n                        \"price_inc_damage_deposit\": \"3858.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3758.00\",\n                        \"price_inc_damage_deposit\": \"3858.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3758.00\",\n                        \"price_inc_damage_deposit\": \"3858.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3758.00\",\n                        \"price_inc_damage_deposit\": \"3858.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3758.00\",\n                        \"price_inc_damage_deposit\": \"3858.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3758.00\",\n                        \"price_inc_damage_deposit\": \"3858.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3758.00\",\n                        \"price_inc_damage_deposit\": \"3858.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3758.00\",\n                        \"price_inc_damage_deposit\": \"3858.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3758.00\",\n                        \"price_inc_damage_deposit\": \"3858.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3758.00\",\n                        \"price_inc_damage_deposit\": \"3858.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3758.00\",\n                        \"price_inc_damage_deposit\": \"3858.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3758.00\",\n                        \"price_inc_damage_deposit\": \"3858.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3758.00\",\n                        \"price_inc_damage_deposit\": \"3858.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3758.00\",\n                        \"price_inc_damage_deposit\": \"3858.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3758.00\",\n                        \"price_inc_damage_deposit\": \"3858.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3936.00\",\n                        \"price_inc_damage_deposit\": \"4036.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3972.00\",\n                        \"price_inc_damage_deposit\": \"4072.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4007.00\",\n                        \"price_inc_damage_deposit\": \"4107.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4185.00\",\n                        \"price_inc_damage_deposit\": \"4285.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4222.00\",\n                        \"price_inc_damage_deposit\": \"4322.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4257.00\",\n                        \"price_inc_damage_deposit\": \"4357.00\",\n                        \"damage_deposit\": \"100.00\"\n                    }\n                },\n                \"27\": {\n                    \"2025-09-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4650.00\",\n                        \"price_inc_damage_deposit\": \"4750.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4615.00\",\n                        \"price_inc_damage_deposit\": \"4715.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4507.00\",\n                        \"price_inc_damage_deposit\": \"4607.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4400.00\",\n                        \"price_inc_damage_deposit\": \"4500.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4365.00\",\n                        \"price_inc_damage_deposit\": \"4465.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4257.00\",\n                        \"price_inc_damage_deposit\": \"4357.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4151.00\",\n                        \"price_inc_damage_deposit\": \"4251.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4116.00\",\n                        \"price_inc_damage_deposit\": \"4216.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4008.00\",\n                        \"price_inc_damage_deposit\": \"4108.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3901.00\",\n                        \"price_inc_damage_deposit\": \"4001.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3901.00\",\n                        \"price_inc_damage_deposit\": \"4001.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3901.00\",\n                        \"price_inc_damage_deposit\": \"4001.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3901.00\",\n                        \"price_inc_damage_deposit\": \"4001.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3901.00\",\n                        \"price_inc_damage_deposit\": \"4001.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3901.00\",\n                        \"price_inc_damage_deposit\": \"4001.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3901.00\",\n                        \"price_inc_damage_deposit\": \"4001.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3901.00\",\n                        \"price_inc_damage_deposit\": \"4001.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3901.00\",\n                        \"price_inc_damage_deposit\": \"4001.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3901.00\",\n                        \"price_inc_damage_deposit\": \"4001.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3901.00\",\n                        \"price_inc_damage_deposit\": \"4001.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3901.00\",\n                        \"price_inc_damage_deposit\": \"4001.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3901.00\",\n                        \"price_inc_damage_deposit\": \"4001.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3901.00\",\n                        \"price_inc_damage_deposit\": \"4001.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3901.00\",\n                        \"price_inc_damage_deposit\": \"4001.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3901.00\",\n                        \"price_inc_damage_deposit\": \"4001.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3901.00\",\n                        \"price_inc_damage_deposit\": \"4001.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3901.00\",\n                        \"price_inc_damage_deposit\": \"4001.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3901.00\",\n                        \"price_inc_damage_deposit\": \"4001.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3901.00\",\n                        \"price_inc_damage_deposit\": \"4001.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3901.00\",\n                        \"price_inc_damage_deposit\": \"4001.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3901.00\",\n                        \"price_inc_damage_deposit\": \"4001.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"3901.00\",\n                        \"price_inc_damage_deposit\": \"4001.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4008.00\",\n                        \"price_inc_damage_deposit\": \"4108.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4116.00\",\n                        \"price_inc_damage_deposit\": \"4216.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4151.00\",\n                        \"price_inc_damage_deposit\": \"4251.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4257.00\",\n                        \"price_inc_damage_deposit\": \"4357.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4365.00\",\n                        \"price_inc_damage_deposit\": \"4465.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4400.00\",\n                        \"price_inc_damage_deposit\": \"4500.00\",\n                        \"damage_deposit\": \"100.00\"\n                    }\n                },\n                \"28\": {\n                    \"2025-09-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"5363.00\",\n                        \"price_inc_damage_deposit\": \"5463.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"5323.00\",\n                        \"price_inc_damage_deposit\": \"5423.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"5283.00\",\n                        \"price_inc_damage_deposit\": \"5383.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"5244.00\",\n                        \"price_inc_damage_deposit\": \"5344.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"5204.00\",\n                        \"price_inc_damage_deposit\": \"5304.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"5165.00\",\n                        \"price_inc_damage_deposit\": \"5265.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"5125.00\",\n                        \"price_inc_damage_deposit\": \"5225.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"5086.00\",\n                        \"price_inc_damage_deposit\": \"5186.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"5045.00\",\n                        \"price_inc_damage_deposit\": \"5145.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"5005.00\",\n                        \"price_inc_damage_deposit\": \"5105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4966.00\",\n                        \"price_inc_damage_deposit\": \"5066.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4926.00\",\n                        \"price_inc_damage_deposit\": \"5026.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4887.00\",\n                        \"price_inc_damage_deposit\": \"4987.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4847.00\",\n                        \"price_inc_damage_deposit\": \"4947.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4808.00\",\n                        \"price_inc_damage_deposit\": \"4908.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4768.00\",\n                        \"price_inc_damage_deposit\": \"4868.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4728.00\",\n                        \"price_inc_damage_deposit\": \"4828.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4689.00\",\n                        \"price_inc_damage_deposit\": \"4789.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-09-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4649.00\",\n                        \"price_inc_damage_deposit\": \"4749.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4610.00\",\n                        \"price_inc_damage_deposit\": \"4710.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4570.00\",\n                        \"price_inc_damage_deposit\": \"4670.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4531.00\",\n                        \"price_inc_damage_deposit\": \"4631.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-10-31\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-07\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-08\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-09\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-10\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-11\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-12\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-13\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-14\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-15\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-16\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-17\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-18\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-19\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-20\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-21\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-22\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4491.00\",\n                        \"price_inc_damage_deposit\": \"4591.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-23\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4531.00\",\n                        \"price_inc_damage_deposit\": \"4631.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-24\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4570.00\",\n                        \"price_inc_damage_deposit\": \"4670.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-25\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4610.00\",\n                        \"price_inc_damage_deposit\": \"4710.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-26\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4649.00\",\n                        \"price_inc_damage_deposit\": \"4749.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-27\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4689.00\",\n                        \"price_inc_damage_deposit\": \"4789.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-28\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4728.00\",\n                        \"price_inc_damage_deposit\": \"4828.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-29\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4768.00\",\n                        \"price_inc_damage_deposit\": \"4868.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-11-30\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4808.00\",\n                        \"price_inc_damage_deposit\": \"4908.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-01\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4847.00\",\n                        \"price_inc_damage_deposit\": \"4947.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-02\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4887.00\",\n                        \"price_inc_damage_deposit\": \"4987.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-03\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4926.00\",\n                        \"price_inc_damage_deposit\": \"5026.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-04\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"4966.00\",\n                        \"price_inc_damage_deposit\": \"5066.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-05\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"5005.00\",\n                        \"price_inc_damage_deposit\": \"5105.00\",\n                        \"damage_deposit\": \"100.00\"\n                    },\n                    \"2025-12-06\": {\n                        \"currency\": \"GBP\",\n                        \"price\": \"5045.00\",\n                        \"price_inc_damage_deposit\": \"5145.00\",\n                        \"damage_deposit\": \"100.00\"\n                    }\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"ab101d36-1925-4730-a604-679afa9959b2"},{"name":"reviews","id":"f25f9ca2-c557-4997-80f2-0cb5a2ee20e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{domain}}/api/partners/properties/9697/reviews","description":"<p>This endpoint return both verified reviews and guestbook comments, as denoted by \"type\" in the dataset returned.</p>\n<p>Type will vary from \"guestbook\" or \"review\".</p>\n<p>Please note, for testing purposes, our staging environment may not return actual reviews for many properties.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"3f073019-b235-4945-8bf1-9594767d99d5","id":"3f073019-b235-4945-8bf1-9594767d99d5","name":"Properties","type":"folder"}},"urlObject":{"path":["api","partners","properties","9697","reviews"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"fb2d2f4d-0fa5-473c-a7b2-825ce0125d84","name":"success","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{domain}}/api/partners/properties/9697/reviews"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8080"},{"key":"Date","value":"Tue, 25 Mar 2025 13:23:26 GMT"},{"key":"Date","value":"Tue, 25 Mar 2025 13:23:26 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.2.0"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"1000"},{"key":"X-RateLimit-Remaining","value":"999"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"property_id\": 9697,\n        \"reviews\": [\n            {\n                \"reviewed_by\": \"Meghan Evans\",\n                \"reviewed_at\": \"2024-07-11 16:01:39\",\n                \"is_review\": true,\n                \"type\": \"review\",\n                \"rating\": 5,\n                \"review_text\": \"We\\\\'re really grateful to Philippa for being so accommodating.\",\n                \"recommended\": true\n            },\n            {\n                \"reviewed_by\": \"Paul Hyden\",\n                \"reviewed_at\": \"2023-06-22 05:38:41\",\n                \"is_review\": true,\n                \"type\": \"review\",\n                \"rating\": 5,\n                \"review_text\": \"Lovely holiday home which was well equipped for 2 people. Safe parking. Very dog friendly with safe enclosed garden.  Several places to eat out in the village. Highly recommended.\",\n                \"recommended\": true\n            },\n            {\n                \"reviewed_by\": \"Liz Dee\",\n                \"reviewed_at\": \"2023-06-22 07:02:10\",\n                \"is_review\": true,\n                \"type\": \"review\",\n                \"rating\": 5,\n                \"review_text\": \"Lovely cottage. Well positioned to explore the coast line and paths. Situated in a lovely village.\",\n                \"recommended\": true\n            },\n            {\n                \"reviewed_by\": \"Feedback - Mar 2023\",\n                \"reviewed_at\": \"2023-03-16\",\n                \"is_review\": false,\n                \"type\": \"guestbook\",\n                \"rating\": null,\n                \"review_text\": \"Lovely cottage. Well positioned to explore the coast line and paths. Situated in a lovely village.\",\n                \"recommended\": true\n            },\n            {\n                \"reviewed_by\": \"Feedback - Aug 2022\",\n                \"reviewed_at\": \"2022-08-13\",\n                \"is_review\": false,\n                \"type\": \"guestbook\",\n                \"rating\": null,\n                \"review_text\": \"Very happy with our stay everything was clean and tidy and the owners were very friendly\",\n                \"recommended\": true\n            },\n            {\n                \"reviewed_by\": \"Feedback - Jul 2022\",\n                \"reviewed_at\": \"2022-07-02\",\n                \"is_review\": false,\n                \"type\": \"guestbook\",\n                \"rating\": null,\n                \"review_text\": \"A comfortable, clean &#039;cottage&#039; with a welcoming owner. An excellent centre for the Coast path and exploring the St David&#039;s area and the islands. Great views from upstairs (the &#039;daytime&#039; bit of the building). We really enjoyed our stay!\",\n                \"recommended\": true\n            },\n            {\n                \"reviewed_by\": \"Feedback - Feb 2022\",\n                \"reviewed_at\": \"2022-02-03\",\n                \"is_review\": false,\n                \"type\": \"guestbook\",\n                \"rating\": null,\n                \"review_text\": \"We had a three nigh stay at the beginning of February. It was very enjoyable and the accommodation was satisfactory in every respect. We would recommend it unreservedly and will come again ourselves.<br />\\r\\n<br />\\r\\nMike and Gwen Shephard\",\n                \"recommended\": true\n            },\n            {\n                \"reviewed_by\": \"Feedback - Jan 2020\",\n                \"reviewed_at\": \"2020-01-04\",\n                \"is_review\": false,\n                \"type\": \"guestbook\",\n                \"rating\": null,\n                \"review_text\": \"The holiday annexe was lovely and cosy, ideal for two and a dog. The owner introduced herself to us was very friendly but not intrusive. The annexe was very well equipped, bed was very comfortable, nice touch was the towels were provided. We stay in Solva up to four times a year, our first time here but would return. Lovely sunday roast in The Cambrian, well worth a visit. It was the perfect place to unwind after the madness of christmas.\",\n                \"recommended\": true\n            },\n            {\n                \"reviewed_by\": \"Feedback - Sep 2019\",\n                \"reviewed_at\": \"2019-09-08\",\n                \"is_review\": false,\n                \"type\": \"guestbook\",\n                \"rating\": null,\n                \"review_text\": \"Lovely and peaceful,  love the coastal walks and beaches.<br />\\r\\nSafe little garden area for our dog.\",\n                \"recommended\": true\n            },\n            {\n                \"reviewed_by\": \"Feedback - Aug 2019\",\n                \"reviewed_at\": \"2019-08-10\",\n                \"is_review\": false,\n                \"type\": \"guestbook\",\n                \"rating\": null,\n                \"review_text\": \"An excellent base for exploring this lovely part of the world.\",\n                \"recommended\": true\n            },\n            {\n                \"reviewed_by\": \"Feedback - Aug 2019\",\n                \"reviewed_at\": \"2019-08-03\",\n                \"is_review\": false,\n                \"type\": \"guestbook\",\n                \"rating\": null,\n                \"review_text\": \"We had a great holiday at Ty Aelwyd. It is an extremely comfortable cottage which is well equipped for self catering. The location is ideal and only a few minutes walk from Solva and pubs and shops. The owner, Philipa was very helpful and friendly. We would certainly visit again.\",\n                \"recommended\": true\n            },\n            {\n                \"reviewed_by\": \"Feedback - Jul 2019\",\n                \"reviewed_at\": \"2019-07-20\",\n                \"is_review\": false,\n                \"type\": \"guestbook\",\n                \"rating\": null,\n                \"review_text\": \"We thoroughly enjoyed our stay, both Solva and the surrounding area are great and the cottage well placed for the village and driving around the countryside. The cottage was well equipped and the little garden a delight both for our dog and for a restorative G&amp;T or cuppa. The owner lives next door and was helpful and welcoming.\",\n                \"recommended\": true\n            },\n            {\n                \"reviewed_by\": \"Feedback - Jul 2019\",\n                \"reviewed_at\": \"2019-07-13\",\n                \"is_review\": false,\n                \"type\": \"guestbook\",\n                \"rating\": null,\n                \"review_text\": \"Had a wonderful stay. The accommodation  was spotless and very nicely decorated .There was a little enclosed garden for our dog. The location is perfect a short walk to the coast path and lower solva we had some wonderful walks.The Royal  George pub does nice food just a short walk. We are looking forward to staying again next year .\",\n                \"recommended\": true\n            },\n            {\n                \"reviewed_by\": \"Feedback - Apr 2019\",\n                \"reviewed_at\": \"2019-04-22\",\n                \"is_review\": false,\n                \"type\": \"guestbook\",\n                \"rating\": null,\n                \"review_text\": \"Warm welcome from owner Philipa and could contact her next door if needed. Home from home, very good location in Solva, central for all West Pembs coastline. Recommend.\",\n                \"recommended\": true\n            },\n            {\n                \"reviewed_by\": \"Feedback - Sep 2018\",\n                \"reviewed_at\": \"2018-09-15\",\n                \"is_review\": false,\n                \"type\": \"guestbook\",\n                \"rating\": null,\n                \"review_text\": \"A delightful stay in this well appointed cottage which is near the beautiful harbour of Solva\",\n                \"recommended\": true\n            },\n            {\n                \"reviewed_by\": \"Feedback - May 2018\",\n                \"reviewed_at\": \"2018-05-05\",\n                \"is_review\": false,\n                \"type\": \"guestbook\",\n                \"rating\": null,\n                \"review_text\": \"We had a great weeks  stay. Quiet location. Lovely to come back to  warm, snug accommodation. Our dog loved it. Good walks around Solva from the door. A great little local shop five minutes away. Philipa was very helpful with local information. Recommended as a base to explore this lovely part of Wales.\",\n                \"recommended\": true\n            },\n            {\n                \"reviewed_by\": \"Feedback - Aug 2017\",\n                \"reviewed_at\": \"2017-08-19\",\n                \"is_review\": false,\n                \"type\": \"guestbook\",\n                \"rating\": null,\n                \"review_text\": \"It was a perfect cottage with lovely views I would highly recommend it .\",\n                \"recommended\": true\n            },\n            {\n                \"reviewed_by\": \"Feedback - Aug 2017\",\n                \"reviewed_at\": \"2017-08-05\",\n                \"is_review\": false,\n                \"type\": \"guestbook\",\n                \"rating\": null,\n                \"review_text\": \"Great little place for two\",\n                \"recommended\": true\n            },\n            {\n                \"reviewed_by\": \"Feedback - Feb 2017\",\n                \"reviewed_at\": \"2017-02-25\",\n                \"is_review\": false,\n                \"type\": \"guestbook\",\n                \"rating\": null,\n                \"review_text\": \"Lovely apartment clean and well equipped, close to all amenities and most importantly close to The Coastal Path.\",\n                \"recommended\": true\n            },\n            {\n                \"reviewed_by\": \"Feedback - Aug 2016\",\n                \"reviewed_at\": \"2016-08-27\",\n                \"is_review\": false,\n                \"type\": \"guestbook\",\n                \"rating\": null,\n                \"review_text\": \"Great property and location enjoyed our stay.\",\n                \"recommended\": true\n            },\n            {\n                \"reviewed_by\": \"Feedback - Jul 2016\",\n                \"reviewed_at\": \"2016-07-09\",\n                \"is_review\": false,\n                \"type\": \"guestbook\",\n                \"rating\": null,\n                \"review_text\": \"Ty Aelwyd gets a full 10/10 for interior decoration (bright and clean) and for the well-equipped kitchen and lounge area. The bathroom was similarly welcoming with big, fluffy bath towels, (we&#039;re so used to the rather thinner, cheaper offerings you normally find in holiday rentals that this was a genuine bonus). The bed linen was crisp and fresh and the bed was extremely comfortable. The fresh flowers in the bedroom were a lovely touch and added to the friendly and homely feel to the house .... and seemed typical of the little touches that the owners have added to the package to make it thoroughly enjoyable.  Being greeted with the sight of fresh welsh cakes and a jar of homemade marmalade was an unexpected joy .... the marmalade was particularly delicious.\",\n                \"recommended\": true\n            },\n            {\n                \"reviewed_by\": \"Feedback - Jun 2016\",\n                \"reviewed_at\": \"2016-06-25\",\n                \"is_review\": false,\n                \"type\": \"guestbook\",\n                \"rating\": null,\n                \"review_text\": \"Very suitable for single or couple. Very convenient for local and surrounding beaches and countryside.\",\n                \"recommended\": true\n            },\n            {\n                \"reviewed_by\": \"Feedback - Aug 2015\",\n                \"reviewed_at\": \"2015-08-01\",\n                \"is_review\": false,\n                \"type\": \"guestbook\",\n                \"rating\": null,\n                \"review_text\": \"Welcoming holiday retreat - owner&#039;s home made marmalade a treat.<br />\\r\\nA topsy-turvy space - bedroom downstairs, sitting/dining room upstairs - the latter making good use of the brighter light and sea view; the former, the relaxed space downstairs.<br />\\r\\nAccommodation a 10 min walk from Solva harbour with lots of paths to discover for routes to it. All very lovely.\",\n                \"recommended\": true\n            }\n        ]\n    }\n}"}],"_postman_id":"f25f9ca2-c557-4997-80f2-0cb5a2ee20e6"},{"name":"quote","id":"653f5112-9d46-47fa-9db7-5b0f271c962c","protocolProfileBehavior":{"disabledSystemHeaders":{"accept":true},"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"check_in","value":"2025-06-13","type":"text","description":"<p>YYYY-MM-DD and must be on or after today.</p>\n"},{"key":"check_out","value":"2025-06-20","type":"text","description":"<p>YYYY-MM-DD and must be after \"check_in\".</p>\n"},{"key":"extras","value":"{123: 1}","type":"text","description":"<p>{ID of extra : qty required} - optional</p>\n","disabled":true},{"key":"dogs","value":"1","description":"<p>optional</p>\n","type":"text","uuid":"f21035ef-0829-4b04-9740-c43bfaf650fd","disabled":true}]},"url":"{{domain}}/api/partners/properties/9709/quote","description":"<p>Retrieve a quote for a property and given date.</p>\n<p>You may optionally pass in a dogs paramater.</p>\n<p>This endpoint can also accept extras {id: qty}, however this has not yet been implemented on our booking creation endpoint, and we advise you do not pass this in yet.</p>\n<p><strong>On Failure</strong></p>\n<p>A <strong>400 error</strong> will be returned if validation of the check_in/out or dogs - the error <code>message</code> will contain information as to why this occurs, either a validation reason or the property is not available.</p>\n<p>Example failure requests are available in \"Example Requests\".</p>\n<p><strong>On Success</strong><br />A <strong>200</strong> response will be returned if the property is available and a quote can be retrieved.</p>\n<p>You should typically expect that all pricing in this endpoint is rounded up to whole pounds.</p>\n<p>The quote will return</p>\n<ul>\n<li><p><code>price</code> - the price of the holiday (exluding Damage Deposits)</p>\n</li>\n<li><p><code>price_inc_dd</code> - the cost of the holiday including any damage deposits dude</p>\n</li>\n<li><p><code>due</code> - the reduced amount that is payable today if this holiday is able to offer a \"deposit\", typically available on holidays more than 6 weeks away. The remaining balance is due later. This will return £0 if not available.</p>\n</li>\n<li><p><code>currency</code> - \"GBP\"</p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"3f073019-b235-4945-8bf1-9594767d99d5","id":"3f073019-b235-4945-8bf1-9594767d99d5","name":"Properties","type":"folder"}},"urlObject":{"path":["api","partners","properties","9709","quote"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"86a6fef0-cfb4-4a53-9047-106b933b1227","name":"success","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"check_in","value":"2025-07-01","type":"text"},{"key":"check_out","value":"2025-07-08","type":"text"},{"key":"extras","value":"{\"1283\": \"2\"}","type":"text","disabled":true},{"key":"dogs","value":"1","type":"text","uuid":"f21035ef-0829-4b04-9740-c43bfaf650fd","disabled":true}]},"url":"{{domain}}/api/partners/properties/11401/quote"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 26 Mar 2025 21:26:54 GMT"},{"key":"Server","value":"Apache/2.4.52 (Ubuntu)"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"1000"},{"key":"X-RateLimit-Remaining","value":"999"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Vary","value":"Authorization"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"property_id\": 9705,\n        \"quote\": {\n            \"price\": \"974.00\",\n            \"price_inc_dd\": \"1124.00\",\n            \"damage_deposit\": \"150.00\",\n            \"due\": \"266.00\",\n            \"currency\": \"GBP\"\n        }\n    }\n}"},{"id":"302c36e8-5e43-4afc-bfd7-363488ba75c7","name":"failure - dogs exceeds property amount","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"check_in","value":"2025-07-01","type":"text"},{"key":"check_out","value":"2025-07-08","type":"text"},{"key":"extras","value":"{\"1283\": \"2\"}","type":"text"},{"key":"dogs","value":"1","type":"text","uuid":"f21035ef-0829-4b04-9740-c43bfaf650fd"}]},"url":"{{domain}}/api/partners/properties/11401/quote"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 26 Mar 2025 22:55:15 GMT"},{"key":"Server","value":"Apache/2.4.52 (Ubuntu)"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"1000"},{"key":"X-RateLimit-Remaining","value":"998"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Vary","value":"Authorization"},{"key":"Connection","value":"close"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": false,\n    \"message\": \"You cannot have more than 0 dogs at this property.\"\n}"},{"id":"9ddb2d31-468f-4f43-89e4-261ef29702ef","name":"failure - check in/out validation","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"check_in","value":"2025-02-01","type":"text"},{"key":"check_out","value":"2025-02-08","type":"text"},{"key":"extras","value":"{\"1283\": \"2\"}","type":"text","disabled":true},{"key":"dogs","value":"1","type":"text","uuid":"f21035ef-0829-4b04-9740-c43bfaf650fd","disabled":true}]},"url":"{{domain}}/api/partners/properties/11401/quote"},"status":"Unprocessable Content","code":422,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 26 Mar 2025 22:55:54 GMT"},{"key":"Server","value":"Apache/2.4.52 (Ubuntu)"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"1000"},{"key":"X-RateLimit-Remaining","value":"999"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Vary","value":"Authorization"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"The check in must be a date after or equal to today.\",\n    \"errors\": {\n        \"check_in\": [\n            \"The check in must be a date after or equal to today.\"\n        ]\n    }\n}"},{"id":"ab3d02c1-41f4-4378-a6e5-8d151868937f","name":"failure - the property is not available","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"check_in","value":"2025-07-01","type":"text"},{"key":"check_out","value":"2025-07-31","type":"text"},{"key":"extras","value":"{\"1283\": \"2\"}","type":"text","disabled":true},{"key":"dogs","value":"1","type":"text","uuid":"f21035ef-0829-4b04-9740-c43bfaf650fd","disabled":true}]},"url":"{{domain}}/api/partners/properties/11401/quote"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 26 Mar 2025 22:56:27 GMT"},{"key":"Server","value":"Apache/2.4.52 (Ubuntu)"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"1000"},{"key":"X-RateLimit-Remaining","value":"998"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Vary","value":"Authorization"},{"key":"Connection","value":"close"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": false,\n    \"message\": \"Sorry, this property is no longer available for your chosen dates.\"\n}"}],"_postman_id":"653f5112-9d46-47fa-9db7-5b0f271c962c"}],"id":"3f073019-b235-4945-8bf1-9594767d99d5","description":"<p>This section of API endpoints is specific to properties.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"f3441851-5ed5-44c8-b7d9-ac22c8911f14","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"cf5b0914-584d-48c7-80ef-b25838e34ec6","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"3f073019-b235-4945-8bf1-9594767d99d5"},{"name":"Bookings","item":[{"name":"create","id":"9d426f7c-467d-4a58-9828-2f4d8fb46b26","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"reservation\": {\r\n        \"property_id\": \"11401\",\r\n        \"check_in\": \"2025-09-13\",\r\n        \"check_out\": \"2025-09-20\"\r\n    },\r\n    \"customer\": {\r\n        \"first_name\": \"John\",\r\n        \"last_name\": \"Doe\",\r\n        \"tel_home\": \"447898654321\",\r\n        \"tel_work\": \"447898654321\",\r\n        \"tel_mob\": \"07898654321\",\r\n        \"email\": \"valid@email.com\",\r\n        \"address_1\": \"Unit 4B, Parc Aberporth\",\r\n        \"address_2\": null,\r\n        \"address_3\": null,\r\n        \"county\": null,\r\n        \"postcode\": \"SA43 2DZ\",\r\n        \"country\": \"gb\"\r\n    },\r\n    \"party\": {\r\n        \"adults\": \"2\",\r\n        \"children\": \"0\",\r\n        \"infants\": \"0\",\r\n        \"pets\": \"0\",\r\n        \"ages\": \"32, 31 and a 6 year old\"\r\n    },\r\n    \"notes\": null\r\n}","options":{"raw":{"language":"json"}}},"url":"{{domain}}/api/partners/bookings/create","description":"<h3 id=\"create-partner-booking\">Create Partner Booking</h3>\n<p>This endpoint allows partners to create a new booking.</p>\n<p>By default, any booking pushed into this endpoint without payment taken immediately with it by our system will become a \"Provisional\" booking.  </p>\n<p>It will notify the guest and send them a payment link to complete the booking.</p>\n<p>If not paid within 24 hours, the booking will automatically cancel and the dates will be released and made available to be booked again.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<ul>\n<li><p><code>reservation</code> (object)</p>\n<ul>\n<li><p><code>property_id</code> (required|string) - The ID of the property for the reservation.</p>\n</li>\n<li><p><code>check_in</code> (required|YYYY-MM-DD) - The check-in date for the reservation. Must be after or equal to today</p>\n</li>\n<li><p><code>check_out</code> (required|YYYY-MM-DD) - The check-out date for the reservation, must be after <code>check_in</code></p>\n</li>\n</ul>\n</li>\n<li><p><code>customer</code> (object)</p>\n</li>\n<li><ul>\n<li><p><code>first_name</code> (required|string) - First name of the customer.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>- `last_name` (required|string) - Last name of the customer.\n    \n- `tel_home` (nullable|string) - Customer's home telephone number\n    \n- `tel_work` (nullable|string) - Customer's work telephone number\n    \n- `tel_mob` (required|string) - Customer's mobile telephone number.\n    \n- `email` (required|email) - Customer's email address.\n    \n- `address_1` (required|string) - Address line 1 of the customer.\n    \n- `address_2` (nullable|string) - Address line 2 of the customer.\n    \n- `address_3` (nullable|string) - Address line 3 of the customer.\n    \n- `county` (nullable|string) - County of the customer's address.\n    \n- `postcode` (required|string) - Postcode of the customer's address.\n    \n- `country` (required|string) - Country of the customer's address.\n</code></pre></li>\n</ul>\n</li>\n<li><p><code>party</code> (object)</p>\n<ul>\n<li><p><code>adults</code> (nullable|integer) - Number of adults in the party.</p>\n</li>\n<li><p><code>children</code> (nullable|integer) - Number of children in the party.</p>\n</li>\n<li><p><code>infants</code> (nullable|integer) - Number of infants in the party.</p>\n</li>\n<li><p><code>pets</code> (nullable|integer) - Number of pets in the party.</p>\n</li>\n<li><p><code>ages</code> (nullable|string) - A string of guest ages that a guest may enter on your website.</p>\n</li>\n</ul>\n</li>\n<li><p><code>notes</code> (nullable|string) - any particular notes that the customer may enter that we or the owner must know about</p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"401d34e2-4775-4f51-bcbb-18e119b36cd6","id":"401d34e2-4775-4f51-bcbb-18e119b36cd6","name":"Bookings","type":"folder"}},"urlObject":{"path":["api","partners","bookings","create"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"af0b60b3-0278-4a35-8006-59339a4adec9","name":"create","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"reservation\": {\r\n        \"property_id\": \"11401\",\r\n        \"check_in\": \"2025-07-01\",\r\n        \"check_out\": \"2025-07-08\"\r\n    },\r\n    \"customer\": {\r\n        \"first_name\": \"John\",\r\n        \"last_name\": \"Doe\",\r\n        \"tel_home\": \"447898654321\",\r\n        \"tel_work\": \"447898654321\",\r\n        \"tel_mob\": \"447898654321\",\r\n        \"email\": \"valid@email.com\",\r\n        \"address_1\": \"Unit 4B, Parc Aberporth\",\r\n        \"address_2\": null,\r\n        \"address_3\": null,\r\n        \"county\": null,\r\n        \"postcode\": \"SA43 2DZ\",\r\n        \"country\": \"gb\"\r\n    },\r\n    \"party\": {\r\n        \"adults\": \"2\",\r\n        \"children\": \"0\",\r\n        \"infants\": \"0\",\r\n        \"pets\": \"0\",\r\n        \"ages\": \"32, 31 and a 6 year old\"\r\n    },\r\n    \"notes\": null\r\n}","options":{"raw":{"language":"json"}}},"url":"{{domain}}/api/partners/bookings/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8080"},{"key":"Date","value":"Wed, 26 Mar 2025 19:23:03 GMT"},{"key":"Date","value":"Wed, 26 Mar 2025 19:23:03 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.2.0"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"1000"},{"key":"X-RateLimit-Remaining","value":"999"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"booking\": {\n        \"id\": 11021715\n    }\n}"},{"id":"d84fdd2a-5045-4aed-a2c4-d65f35e133b6","name":"failure - dates not available","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"reservation\": {\r\n        \"property_id\": \"11401\",\r\n        \"check_in\": \"2025-07-01\",\r\n        \"check_out\": \"2025-07-08\"\r\n    },\r\n    \"customer\": {\r\n        \"first_name\": \"John\",\r\n        \"last_name\": \"Doe\",\r\n        \"tel_home\": \"447898654321\",\r\n        \"tel_work\": \"447898654321\",\r\n        \"tel_mob\": \"447898654321\",\r\n        \"email\": \"valid@email.com\",\r\n        \"address_1\": \"Unit 4B, Parc Aberporth\",\r\n        \"address_2\": null,\r\n        \"address_3\": null,\r\n        \"county\": null,\r\n        \"postcode\": \"SA43 2DZ\",\r\n        \"country\": \"gb\"\r\n    },\r\n    \"party\": {\r\n        \"adults\": \"2\",\r\n        \"children\": \"0\",\r\n        \"infants\": \"0\",\r\n        \"pets\": \"0\",\r\n        \"ages\": \"32, 31 and a 6 year old\"\r\n    },\r\n    \"notes\": null\r\n}","options":{"raw":{"language":"json"}}},"url":"{{domain}}/api/partners/bookings/create"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8080"},{"key":"Date","value":"Tue, 08 Apr 2025 10:16:33 GMT"},{"key":"Date","value":"Tue, 08 Apr 2025 10:16:33 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.2.0"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"1000"},{"key":"X-RateLimit-Remaining","value":"999"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"message\": \"Booking not created\",\n    \"error\": \"Dates requested are not available for this property\"\n}"}],"_postman_id":"9d426f7c-467d-4a58-9828-2f4d8fb46b26"}],"id":"401d34e2-4775-4f51-bcbb-18e119b36cd6","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"97acb589-a67f-4a77-aacb-039885def8cd","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"6641eeb4-7f69-4885-87fc-1cabb6dcef54","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"401d34e2-4775-4f51-bcbb-18e119b36cd6","description":""},{"name":"Exports","item":[{"name":"properties","id":"a7d447fa-c337-4d7f-b783-477f012e8c77","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{domain}}/api/partners/exports/properties","description":"<p>This endpoint returns a simplified CSV feed of our properties.</p>\n<p>Data in this feed is not expected to be \"live\", and may be up to 24 hours old at the time of request.</p>\n<p>Data in this CSV is not exhaustive, and does not include availability or pricing.</p>\n","urlObject":{"path":["api","partners","exports","properties"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"6f0149ea-1896-4870-9514-5acdc46bc363","name":"success","originalRequest":{"method":"GET","header":[],"url":"{{domain}}/api/partners/exports/properties"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Host","value":"127.0.0.1:8080"},{"key":"Date","value":"Mon, 23 Jun 2025 15:00:16 GMT"},{"key":"Date","value":"Mon, 23 Jun 2025 15:00:16 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.2.0"},{"key":"Content-Type","value":"text/csv; charset=UTF-8"},{"key":"Content-Length","value":"2409655"},{"key":"Content-Disposition","value":"inline; filename=live_properties.csv"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"1000"},{"key":"X-RateLimit-Remaining","value":"997"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"\"Name\",\"Ref\",\"Sleeps\",\"Bedrooms\",\"Bathrooms\",\"Pets\",\"Parking\",\"Main Photo\",\"Display Location\",\"County\",\"Town\",\"Latitude\",\"Longitude\",\"Type\",\"Description\",\"Summary\",\"Features\",\"Other Photos\"\n\"Ty Aelwyd\",\"aelwyd\",\"2\",\"1\",\"1\",\"2\",\"1\",\"https://wwhc-staging.imgix.net/m/property-21/aelwyd-bedroom.pehe9i.jpg\",\"Solva, Pembrokeshire\",\"Pembrokeshire\",\"Solva\",\"51.876469\",\"-5.197786\",\"House\",\"Ty Aelwyd in upper Solva has magnificent views over St Brides Bay and Skomer Island. It is conveniently situated less than 10 minutes drive from St Davids and from sandy beaches, less than a 10 minute walk from the Pembrokeshire Coast Path and about a 5 minute walk from the pubs and cafes in the charming village of Solva. It is a self-contained annexe attached to the ownerâ€™s home.\n\nTy Aelwyd is set in the Pembrokeshire Coast National Park with ample opportunities for walks amidst gorgeous scenery. The beaches of Whitesands and Newgale are within an easy drive.\n\nThe tiny city of St Davids with its ancient cathedral offers galleries, restaurants, pubs and shops as well as being home to Oriel y Parc, the National Park Visitor Centre and Gallery. This area abounds with wildlife, much of which can be spotted in secluded coves or from the coast path, just a short walk from Ty Aelwyd. You can take a boat trip for the chance to see dolphins, seals, puffins and huge breeding colonies of seabirds on the off-shore islands.\n\nACCOMMODATION\nTy Aelwyd sleeps 2 inÂ 1 king size bedroom\n\nDOWNSTAIRS\nBedroom: king size bed, hair dryer, countryside views\nEn suite shower room: shower, toilet, hand basin\nKitchen: compact cooker, fridge, microwave, washing machine, iron\n\nUPSTAIRS\nLiving room/dining area: 2-seater sofa, armchair, Freeview TV, dining table and 2 chairs. The magnificent views from the Velux window are south-facing over St Brides Bay with the island of Skomer opposite.\n\nOUTSIDE\nThere is seating in the enclosed garden which also has a bike or kayak lock-up. DrivewayÂ parking for 1 car.\n\nKEY FACTS\n- Bed linen and towels provided. Please bring your own beach towels.\n- Oil-fired central heating.\n- Free WiFi.\n- Two well-behaved dogs welcome at Â£20 each per week\n - No smoking\",\"<p>Self-contained annexe attached to the owner's home in Solva. Stunning coastal views and just 10 minutes to St Davids by car. Set within the Pembrokeshire Coast National Park.</p>\",\"Bike storage, TV, Enclosed Garden, Walkers, Views, Ground Floor Bedroom with bathroom, WiFi, King-size bed, Beach within 1 mile, Beach 3, Golf Course, Sea Views, Pub, Washing Machine, Walking area, Romantic, Towels Provided, Coastal, Village, Affordable, Beach within 1 mile, Beach 3, Pub, Walking area, Coastal, Village\",\"https://wwhc-staging.imgix.net/9697/f9jNheAB1BNj8WIAKZczeyhdsZLUQlAjVRQ2QLlH.jpg, https://wwhc-staging.imgix.net/9697/39to7s3zOK3I7VlR4eOiHKEzmjd7KBshv8HKnsl0.jpg, https://wwhc-staging.imgix.net/9697/uKLcExxvGNHYiPHAtsHqQPSYpf8Q5fDPxsQiuBdf.jpg, https://wwhc-staging.imgix.net/9697/zioixTuN4PlOIt3vcFucdHvN71vwzA7wJgdqnOwr.jpg, https://wwhc-staging.imgix.net/m/property-21/ty-aelwyd-dining-area.pn10f1.jpg, https://wwhc-staging.imgix.net/9697/0ytTzaY52Vzfhuw4uNPrDm73Cbaw2hKEcyLHbGCm.jpg, https://wwhc-staging.imgix.net/m/property-21/ty-aelwyd.oyujnx.jpg, https://wwhc-staging.imgix.net/m/property-21/ty-aelwyd-solva-harbour.oyujot.jpg, https://wwhc-staging.imgix.net/m/property-21/ty-aelwyd.oyzxpp.jpg, https://wwhc-staging.imgix.net/m/property-21/ty-aelwyd-solva-harbour.oyzxpn.jpg, https://wwhc-staging.imgix.net/m/stock-2016-11/solva-harbour.ogpa15.jpg, https://wwhc-staging.imgix.net/9697/60Bekpmurz5V4sOnyINUHd4Bocz3AqIh00lUgCMw.jpg, https://wwhc-staging.imgix.net/m/stock-2022-01/cathedral-4299247.pb.r5aq2l.jpg, https://wwhc-staging.imgix.net/m/property-21/ty-aelwyd-kitchen.plbxvj.jpg, https://wwhc-staging.imgix.net/9697/FJpTGSWrQLl9DZWIUkJ1JSWCvbO5AtBTUnYTOrN5.jpg\"\n"}],"_postman_id":"a7d447fa-c337-4d7f-b783-477f012e8c77"}],"id":"c5081e34-aeee-4ebd-a4ce-3a0b8d0ab272","_postman_id":"c5081e34-aeee-4ebd-a4ce-3a0b8d0ab272","description":""},{"name":"Notifications","item":[{"name":"live","id":"995de9c6-2f99-44a2-a380-1badfbf5eb47","protocolProfileBehavior":{"disabledSystemHeaders":{"accept":true},"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"properties\": [\r\n    {\r\n      \"id\": 123,\r\n      \"url\": \"https://partnerchannel.com/listings/123\"\r\n    },\r\n    {\r\n      \"id\": 202,\r\n      \"url\": \"https://partnerchannel.com/listing/202\"\r\n    },\r\n    {\r\n      \"id\": 303,\r\n      \"url\": \"https://partnerchannel.com/listing/303\"\r\n    }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{domain}}/api/partners/notifications/live","description":"<p><strong>Purpose:</strong>  </p>\n<p>Let us know that one or more of our properties are now live on your channel.  </p>\n<p>This stores the channel URL for each property in our system and tags the property for easier reporting and filtering.</p>\n<p><strong>When to use:</strong></p>\n<ul>\n<li><p>When a property listing is published or re-activated on your platform.</p>\n</li>\n<li><p>When the public URL for a listing changes.</p>\n</li>\n</ul>\n<p><strong>Required fields:</strong></p>\n<ul>\n<li><p><code>properties</code> → an array of objects containing:</p>\n<ul>\n<li><p><code>id</code> → our property ID (integer)</p>\n</li>\n<li><p><code>url</code> → the live HTTPS URL of the listing on your channel</p>\n</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"ad79476a-c3e5-42cc-bc89-db71f0e3552d","id":"ad79476a-c3e5-42cc-bc89-db71f0e3552d","name":"Notifications","type":"folder"}},"urlObject":{"path":["api","partners","notifications","live"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"da9b3006-cfe7-4dfa-a043-eb24501226e5","name":"success","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"properties\": [\r\n    {\r\n      \"id\": 123,\r\n      \"url\": \"https://partnerchannel.com/listings/123\"\r\n    },\r\n    {\r\n      \"id\": 202,\r\n      \"url\": \"https://partnerchannel.com/listing/202\"\r\n    },\r\n    {\r\n      \"id\": 303,\r\n      \"url\": \"https://partnerchannel.com/listing/303\"\r\n    }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{domain}}/api/partners/notifications/live"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"127.0.0.1:8080"},{"key":"Date","value":"Fri, 08 Aug 2025 13:57:46 GMT"},{"key":"Date","value":"Fri, 08 Aug 2025 13:57:46 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.2.0"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"1000"},{"key":"X-RateLimit-Remaining","value":"998"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"1 properties processed successfully.\",\n    \"count\": 1\n}"}],"_postman_id":"995de9c6-2f99-44a2-a380-1badfbf5eb47"},{"name":"removed","id":"5646262e-4541-4ca4-9699-0d8a82a22984","protocolProfileBehavior":{"disabledSystemHeaders":{"accept":true},"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"properties\": [\r\n    {\r\n      \"id\": 123\r\n    },\r\n    {\r\n      \"id\": 202\r\n    },\r\n    {\r\n      \"id\": 303\r\n    }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{domain}}/api/partners/notifications/removed","description":"<p><strong>Purpose:</strong>  </p>\n<p>Tell us that one or more of our properties are no longer live on your channel.  </p>\n<p>This removes the channel URL from our records and detaches the associated partner tag from each property.</p>\n<p><strong>When to use:</strong></p>\n<ul>\n<li>When a listing is unpublished, suspended, or permanently removed from your platform.</li>\n</ul>\n<p><strong>Required fields:</strong></p>\n<ul>\n<li><p><code>properties</code> → an array of objects containing:</p>\n<ul>\n<li><code>id</code> → our property ID (integer)</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"ad79476a-c3e5-42cc-bc89-db71f0e3552d","id":"ad79476a-c3e5-42cc-bc89-db71f0e3552d","name":"Notifications","type":"folder"}},"urlObject":{"path":["api","partners","notifications","removed"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"feb18093-da59-4cf9-b5ef-c2904ad4adf9","name":"success","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"properties\": [\r\n    {\r\n      \"id\": 123\r\n    },\r\n    {\r\n      \"id\": 202\r\n    },\r\n    {\r\n      \"id\": 303\r\n    }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{domain}}/api/partners/notifications/removed"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"127.0.0.1:8080"},{"key":"Date","value":"Fri, 08 Aug 2025 13:57:37 GMT"},{"key":"Date","value":"Fri, 08 Aug 2025 13:57:37 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.2.0"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"1000"},{"key":"X-RateLimit-Remaining","value":"999"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"1 properties removed successfully.\",\n    \"count\": 1\n}"}],"_postman_id":"5646262e-4541-4ca4-9699-0d8a82a22984"}],"id":"ad79476a-c3e5-42cc-bc89-db71f0e3552d","description":"<p>We provide two endpoints that allow partners to tell us when one of our properties goes live (or is removed) on their sales channel.  </p>\n<p>These endpoints help us keep our records in sync and track exactly which properties are live, along with the URL where they can be found.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"015db046-5db2-4bba-a650-eddbbf48ad8a","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"509a152c-f693-412e-b5ac-faee8a235fa5","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"ad79476a-c3e5-42cc-bc89-db71f0e3552d"}],"event":[{"listen":"prerequest","script":{"id":"e0378a81-942b-4cb1-9e84-11dca8b5e0dd","type":"text/javascript","packages":{},"exec":["pm.request.headers.add({ \r","    key: \"Accept\",\r","    value: \"application/json\" \r","});\r",""]}},{"listen":"test","script":{"id":"eb95eb59-7041-4274-827e-8de69adedbd2","type":"text/javascript","packages":{},"exec":[""]}}]}