{"info":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","description":"<html><head></head><body><p>This API documentation is written to primarely explain the carvelo app integration. There might be third party integrations to carvelo data, which can either use the gbfs-interface (<a href=\"#b826b5ce-c9b3-4eeb-9338-b7699f0b4880\">GBFS</a>) or the external endpoints (<a href=\"#1cf1feb0-bda8-42f4-b056-cc8959fe5fec\">External</a>) of our API.</p>\n<p>Improvement or change wishes, please feel free to send them to <a href=\"https://mailto:info@carvelo.ch\">info@carvelo.ch</a>.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"27697395","collectionId":"05149e73-46b3-48b7-bde1-dae786b154cb","publishedId":"2sAXjKZXRi","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2024-12-05T17:12:42.000Z"},"item":[{"name":"Auth","item":[{"name":"generate token","event":[{"listen":"test","script":{"id":"62fb51a7-4a81-4b29-9898-ea8ee0137c9a","exec":["// Stores the tokens in collection variables\r","pm.collectionVariables.set(\"access_token\", pm.response.json().access_token);\r","pm.collectionVariables.set(\"refresh_token\", pm.response.json().refresh_token);"],"type":"text/javascript","packages":{}}}],"id":"a8acedef-6f75-4897-be7b-0e5b87cbb323","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"grant_type","value":"password","description":"<p>With password grant_type you generate a refresh_token</p>\n","type":"text"},{"key":"client_id","value":"{{clientId}}","type":"text"},{"key":"client_secret","value":"{{clientSecret}}","type":"text"},{"key":"username","value":"{{username}}","type":"text"},{"key":"password","value":"{{password}}","type":"text"}]},"url":"https://api.carvelo.ch/v3/auth/token","urlObject":{"path":["v3","auth","token"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[{"id":"bfcdf0dd-1f11-4898-ad53-0102fc614dd0","name":"generate token","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"grant_type","value":"password","description":"With password grant_type you generate a refresh_token","type":"text"},{"key":"client_id","value":"{{clientId}}","type":"text"},{"key":"client_secret","value":"{{clientSecret}}","type":"text"},{"key":"username","value":"{{username}}","type":"text"},{"key":"password","value":"{{password}}","type":"text"}]},"url":"https://api.carvelo.ch/v3/auth/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 19 Sep 2024 08:31:40 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"*****************************************\",\n    \"expires_in\": 86400,\n    \"token_type\": \"bearer\",\n    \"scope\": null,\n    \"refresh_token\": \"*****************************************\"\n}"}],"_postman_id":"a8acedef-6f75-4897-be7b-0e5b87cbb323"},{"name":"refresh token","event":[{"listen":"test","script":{"id":"62fb51a7-4a81-4b29-9898-ea8ee0137c9a","exec":["// Stores the token in a collection variable\r","pm.collectionVariables.set(\"token\", pm.response.json().access_token);"],"type":"text/javascript","packages":{}}}],"id":"98b21b18-72de-40eb-a3f8-791fb3e1457f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"grant_type","value":"client_credentials","type":"text"},{"key":"client_id","value":"{{clientId}}","type":"text"},{"key":"client_secret","value":"{{clientSecret}}","type":"text"},{"key":"token","value":"","type":"text"}]},"url":"https://api.carvelo.ch/v3/auth/token","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"02c335a3-bb3a-4baa-aa15-f5b0be5f37fd","id":"02c335a3-bb3a-4baa-aa15-f5b0be5f37fd","name":"Auth","type":"folder"}},"urlObject":{"path":["v3","auth","token"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[{"id":"16f09b93-c61a-4180-b523-12a9139ae649","name":"refresh token","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"grant_type","value":"client_credentials","type":"text"},{"key":"client_id","value":"{{clientId}}","type":"text"},{"key":"client_secret","value":"{{clientSecret}}","type":"text"},{"key":"token","value":"","type":"text"}]},"url":"https://api.carvelo.ch/v3/auth/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 22 Oct 2024 08:53:05 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"*****************************************\",\n    \"expires_in\": 86400,\n    \"token_type\": \"bearer\",\n    \"scope\": null\n}"}],"_postman_id":"98b21b18-72de-40eb-a3f8-791fb3e1457f"}],"id":"02c335a3-bb3a-4baa-aa15-f5b0be5f37fd","description":"<p>The carvelo API V3 requires oAuth2 on almost all calls. Therefore you must send a valid user token as bearer token in the header of each call. Use the grant type \"password\" to generate an access token and a refresh token. While the access token expires after one day, the refresh token is valid for 180 days. You can regenerate an access token with the refresh token without user credentials. Simply use the grant type \"client_credentials\" for refreshing.</p>\n<h3 id=\"generate-tokens\">Generate tokens</h3>\n<ol>\n<li><p>In order to get access to the api, you first need to contact us at <a href=\"https://mailto:info@carvelo.ch\">info@carvelo.ch</a> to optain your individual client credentials. We will provide you a:</p>\n<ol>\n<li><p>client_id</p>\n</li>\n<li><p>client_password</p>\n</li>\n</ol>\n</li>\n<li><p>In a second step, your users register their accounts with username and password in https://api.carvelo.ch/v3/user/registerlogin. The response of a successful user registration is a valid token and a refresh_token.</p>\n</li>\n<li><p>Add the user credentials from 2. to the body of the generate token POST call https://api.carvelo.ch/v3/auth/token to retrieve a valid token anytime. Provide the grant type \"password\".</p>\n</li>\n<li><p>Use the access token as bearer token and add it to the header of each API call. It remains valid 24 hours.</p>\n</li>\n</ol>\n<h3 id=\"refresh-a-token\">Refresh a token</h3>\n<p>To refresh a token, send grant_type \"client_credentials\", client_id, client_password and a still valid refresh token in the body to https://api.carvelo.ch/v3/auth/token to retrieve a prolonged access token.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"c777ff73-1e13-4dda-a789-6125a6b19e7d","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"fd16b53e-f25a-4349-842f-572e786ebe00","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"02c335a3-bb3a-4baa-aa15-f5b0be5f37fd"},{"name":"User","item":[{"name":"Registration","item":[{"name":"registerlogin","event":[{"listen":"test","script":{"id":"c34642f3-ad2e-4c0c-81b5-5ea043d82d10","exec":["// Stores the tokens in collection variables\r","pm.collectionVariables.set(\"access_token\", pm.response.json().access_token);\r","pm.collectionVariables.set(\"refresh_token\", pm.response.json().refresh_token);\r","pm.collectionVariables.set(\"userId\", pm.response.json().id);\r",""],"type":"text/javascript","packages":{}}}],"id":"778eaf4c-9131-46f9-a95c-c6c370481ad2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"email","value":"tester@carvelo.ch","description":"<p>A valid, unique mailaddress, that will be used as username. You can create only one username systemwide.</p>\n","type":"text"},{"key":"password","value":"KNopfBI76£","description":"<p>Use a save password with at least 8 characters.</p>\n","type":"text"},{"key":"repeat_password","value":"KNopfBI76£","type":"text"},{"key":"lang","value":"de","description":"<p>Optional parameter. The user language, so far we accept the correspondance languages 'en', 'de', 'fr', 'it'.</p>\n","type":"text"}]},"url":"https://api.carvelo.ch/v3/user/registerlogin","urlObject":{"path":["v3","user","registerlogin"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[{"id":"a25cf402-086d-4838-91f7-baf848f4135f","name":"registerlogin","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"email","value":"tester@carvelo.ch","description":"A valid, unique mailaddress, that will be used as username. You can create only one username systemwide.","type":"text"},{"key":"password","value":"KNopfBI76£","description":"Use a save password with at least 8 characters.","type":"text"},{"key":"repeat_password","value":"KNopfBI76£","type":"text"},{"key":"lang","value":"de","description":"Optional parameter. The user language, so far we accept the correspondance languages 'en', 'de', 'fr', 'it'.","type":"text"}]},"url":"https://api.carvelo.ch/v3/user/registerlogin"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 19 Sep 2024 09:13:38 GMT"},{"key":"Server","value":"Apache"},{"key":"Access-Control-Expose-Headers","value":"X-Pagination-Per-Page, X-Pagination-Total-Count, X-Pagination-Current-Page, X-Pagination-Page-Count"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"https://www.carvelo.ch"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, X-Requested-With"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Set-Cookie","value":"_csrf=864cfb489e722eacc161dc38dd3820093beeef5e44c416e3bb1d635019c0f398a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22XLhaLeQ9WrjLTQfhIBiAenKIfTSjUxFO%22%3B%7D; path=/; HttpOnly; SameSite=Lax"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"****************************************\",\n    \"expires_in\": 86400,\n    \"token_type\": \"bearer\",\n    \"scope\": null,\n    \"refresh_token\": \"****************************************\",\n    \"id\": \"****************************************\"\n}"}],"_postman_id":"778eaf4c-9131-46f9-a95c-c6c370481ad2"},{"name":"registerdata","event":[{"listen":"test","script":{"id":"c34642f3-ad2e-4c0c-81b5-5ea043d82d10","exec":[""],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"f0a29f89-88cc-4fa1-9c1d-862f49564be5","exec":[""],"type":"text/javascript","packages":{}}}],"id":"4f83bb75-61a2-4141-bb06-c2e1d63d4008","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"formdata","formdata":[{"key":"User[email]","value":"","type":"text","description":"<p>The correspondance email-address. Might be the same as username.</p>\n"},{"key":"User[altEmail]","value":"","type":"text","description":"<p>A secondary email-address, in use for company master accounts.</p>\n","disabled":true},{"key":"User[firstname]","value":"","type":"text"},{"key":"User[lastname]","value":"","type":"text"},{"key":"User[address]","value":"","type":"text"},{"key":"User[zip]","value":"","type":"text"},{"key":"User[city]","value":"","type":"text"},{"key":"User[phoneCode]","value":"","type":"text","description":"<p>We validate the phone number, so prior to submitting to registerdata, you have to retrieve a code on your phone. Use submitphonecode in the registration section.</p>\n"},{"key":"User[phone]","value":"","type":"text"},{"key":"User[altPhone]","value":"","type":"text","description":"<p>A secondary phone, in use for company master accounts.</p>\n","disabled":true},{"key":"User[dateOfBirth]","value":"","type":"text"},{"key":"User[language]","value":"","type":"text","description":"<p>Any of 'de', 'fr', 'it', 'en'. This sets the correspondance language.</p>\n"},{"key":"User[newsabo]","value":"","type":"text","description":"<p>Boolean for the news-subscription, 1 for yes, 0 for no.</p>\n"},{"key":"User[company_uid]","value":"","type":"text","description":"<p>in use for company master accounts</p>\n","disabled":true},{"key":"User[company_name]","value":"","description":"<p>in use for company master accounts</p>\n","type":"text","disabled":true},{"key":"User[company_master]","value":"","description":"<p>in use for company master accounts</p>\n","type":"text","disabled":true},{"key":"User[company_account]","value":"","description":"<p>in use for company master accounts</p>\n","type":"text","disabled":true}]},"url":"https://api.carvelo.ch/v3/user/registerdata","urlObject":{"path":["v3","user","registerdata"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[],"_postman_id":"4f83bb75-61a2-4141-bb06-c2e1d63d4008"},{"name":"submitphonecode","id":"574127c4-ebfa-484e-963a-8d45eeb6a9a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[{"key":"phoneNumber","value":"","type":"text"}]},"url":"https://api.carvelo.ch/v3/user/submit-phone-code","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}},"urlObject":{"path":["v3","user","submit-phone-code"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[],"_postman_id":"574127c4-ebfa-484e-963a-8d45eeb6a9a6"}],"id":"ec2c06b5-9b41-4e5f-8375-b6b336b7ce19","description":"<p>The following steps are required to register a valid user that can book carvelos:</p>\n<ol>\n<li><p>registerlogin: In this step you register a valid and unique email-address as username and a valid, safe password. You get an access_token and refresh_token as response. The user created is a user with guest permissions. It is important that you register a valid email-address, otherwise you won't be able to retrieve a lost password.</p>\n</li>\n<li><p>registerdata: In this step you register the user details such as first- and lastname, mobile phone, birth date, correspondance email and language, and postal address. We validate the phone number, so prior to submitting to registerdata, you have to retrieve a code on your phone. We suggest, that you first collect all user data, then before submitting it, validate the phone number on submitphonecode, and add the code to the registerdata call together with the user data collected before.</p>\n</li>\n<li><p>registerabo (in user data section): In non-mandatory this step you can register a subscription. There are subscriptions for TCS members, where the membership is validated. There are subscriptions on a code-base, for communities. And there is a payable half price subscription. During this step, you might also need to register a payment method (in payment data section).</p>\n</li>\n</ol>\n","_postman_id":"ec2c06b5-9b41-4e5f-8375-b6b336b7ce19","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}}},{"name":"User data","item":[{"name":"logindata","id":"0027c38f-e8d9-4194-aeac-b7c13c2516aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.carvelo.ch/v3/user/logindata","description":"<p>Retrieve a user's username.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}},"urlObject":{"path":["v3","user","logindata"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[],"_postman_id":"0027c38f-e8d9-4194-aeac-b7c13c2516aa"},{"name":"logindata","id":"915fe26b-7c32-447c-95fd-0252a6459cad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"formdata","formdata":[{"key":"User[username]","value":"{{username}}","type":"text"},{"key":"User[password]","value":"{{password}}","type":"text"},{"key":"User[password_repeat]","value":"{{password}}","type":"text"}]},"url":"https://api.carvelo.ch/v3/user/logindata","description":"<p>Update username and password of a user. The username has to be a valid and unique email-address.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}},"urlObject":{"path":["v3","user","logindata"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[{"id":"d6b5f974-6f9f-417b-9369-ace8eb2f0dda","name":"logindata","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"User[username]","value":"testerbaer@carvelo.ch","type":"text"},{"key":"User[password]","value":"aberSicherIstSicher","type":"text"},{"key":"User[password_repeat]","value":"aberSicherIstSicher","type":"text"}]},"url":"https://api.carvelo.ch/v3/user/logindata"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 08 Oct 2024 13:22:40 GMT"},{"key":"Server","value":"Apache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"6"},{"key":"Access-Control-Expose-Headers","value":"X-Pagination-Per-Page, X-Pagination-Total-Count, X-Pagination-Current-Page, X-Pagination-Page-Count"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"https://www.carvelo.ch"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, X-Requested-With"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"**************************************\",\n    \"User\": {\n        \"username\": \"tester@carvelo.ch\",\n        \"password_changed\": 1\n    },\n    \"message\": []\n}"}],"_postman_id":"915fe26b-7c32-447c-95fd-0252a6459cad"},{"name":"addressdata","id":"a70229de-0f28-4041-85d2-72aeb636cc6a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.carvelo.ch/v3/user/addressdata","description":"<p>Retrieve a users address and personal data.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}},"urlObject":{"path":["v3","user","addressdata"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[],"_postman_id":"a70229de-0f28-4041-85d2-72aeb636cc6a"},{"name":"addressdata","id":"7651a59e-fe14-4306-b83d-fb8840bd455a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"formdata","formdata":[{"key":"User[firstname]","value":"Michel","type":"text"},{"key":"User[lastname]","value":"Baeriswyl privat","type":"text"},{"key":"User[address]","value":"","type":"text","disabled":true},{"key":"User[zip]","value":"","type":"text","disabled":true},{"key":"User[city]","value":"","type":"text","disabled":true},{"key":"User[phone]","value":"","type":"text","disabled":true},{"key":"User[phoneCode]","value":"","description":"<p>We validate the phone number, so prior to submitting to registeruser, you have to retrieve a code on your phone. Use submitphonecode in the registration section.</p>\n","type":"text","disabled":true},{"key":"User[altPhone]","value":"","type":"text","disabled":true},{"key":"User[dateOfBirth]","value":"","type":"text","disabled":true},{"key":"User[language]","value":"","description":"<p>Any of 'de', 'fr', 'it', 'en'. This sets the correspondance language.</p>\n","type":"text","disabled":true}]},"url":"https://api.carvelo.ch/v3/user/addressdata","description":"<p>Update a users address and personal data. The phone number requires a valid phone code.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}},"urlObject":{"path":["v3","user","addressdata"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[],"_postman_id":"7651a59e-fe14-4306-b83d-fb8840bd455a"},{"name":"abodata","id":"32b45286-f194-479a-b4b4-03b4a58c904f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept-Language","value":"fr","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.carvelo.ch/v3/user/abodata","description":"<p>Retrieve a users subscriptions.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}},"urlObject":{"path":["v3","user","abodata"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[],"_postman_id":"32b45286-f194-479a-b4b4-03b4a58c904f"},{"name":"registerabo","id":"11abf530-64c6-44d7-b426-a999e165232f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"abotype","value":"tcsmembership","type":"text","disabled":true},{"key":"User[tcs]","value":"123123123","description":"<p>The TCS membership number</p>\n","type":"text","disabled":true},{"key":"User[firstname]","value":"Test","description":"<p>First name of the user on the tcs card</p>\n","type":"text","disabled":true},{"key":"User[lastname]","value":"Muster","description":"<p>Last name of the user on the tcs card</p>\n","type":"text","disabled":true},{"key":"abotype","value":"subscriber","type":"text","disabled":true},{"key":"code","value":"","description":"<p>A predefined code for the subscription</p>\n","type":"text","disabled":true},{"key":"abotype","value":"28fd6b9b-43fb-45e5-dfe9-4ade62538b5c","type":"text"}]},"url":"https://api.carvelo.ch/v3/user/registerabo","description":"<p>There are 3 different abotypes:</p>\n<ol>\n<li><p>tcsmembership: Provide a valid tcs membership number, that is valid for the user first- and lastname.</p>\n</li>\n<li><p>subscriber: Provide a valid code.</p>\n</li>\n<li><p>: If you set the abotype to a discount-id of a payable subscription, the intermediate response is a mobileToken, which has to be payed on the mobile sdk of datatrans.</p>\n</li>\n</ol>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}},"urlObject":{"path":["v3","user","registerabo"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[],"_postman_id":"11abf530-64c6-44d7-b426-a999e165232f"},{"name":"licencedata","id":"0b4a5c44-a9a4-42fc-aa1c-aa0ace2c8840","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.carvelo.ch/v3/user/licencedata","description":"<p>Retrieve a users driving licence data.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}},"urlObject":{"path":["v3","user","licencedata"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[],"_postman_id":"0b4a5c44-a9a4-42fc-aa1c-aa0ace2c8840"},{"name":"licencedata","id":"3d4d0fcd-2834-4f38-9dd1-5f6f118fe437","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"abotype","value":"add_licence","type":"text"},{"key":"Licence[frontImage]","type":"file","value":null},{"key":"Licence[backImage]","type":"file","value":null}]},"url":"https://api.carvelo.ch/v3/user/licencedata","description":"<p>Add a user drivers licence.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}},"urlObject":{"path":["v3","user","licencedata"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[],"_postman_id":"3d4d0fcd-2834-4f38-9dd1-5f6f118fe437"},{"name":"insurancedata","id":"37ba7fd4-a3f3-4717-b11f-a04d7e4d9cde","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.carvelo.ch/v3/user/insurancedata","description":"<p>Display a users insurance pre-selection.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}},"urlObject":{"path":["v3","user","insurancedata"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[],"_postman_id":"37ba7fd4-a3f3-4717-b11f-a04d7e4d9cde"},{"name":"insurancedata","id":"46a49dd8-d6e3-4cd3-8225-1dcf05d0b982","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"formdata","formdata":[{"key":"abotype","value":"add_insurance","description":"<p>activates the insurance pre-selction option</p>\n","type":"text","disabled":true},{"key":"abotype","value":"remove_insurance","description":"<p>deactivates the insurance pre-selction option</p>\n","type":"text"}]},"url":"https://api.carvelo.ch/v3/user/insurancedata","description":"<p>Update a users insurance pre-selection.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}},"urlObject":{"path":["v3","user","insurancedata"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[],"_postman_id":"46a49dd8-d6e3-4cd3-8225-1dcf05d0b982"},{"name":"changepasswordemail","id":"209119a2-3e49-4c7f-96c2-7223df0ddf96","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.carvelo.ch/v3/user/getpasswordmail","description":"<p>This call sends an update password mail to the user. For security reasons we don't provide any details.</p>\n","urlObject":{"path":["v3","user","getpasswordmail"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[],"_postman_id":"209119a2-3e49-4c7f-96c2-7223df0ddf96"},{"name":"changepassword","id":"7fd7b737-9b6d-47c3-b67e-66ba0e0fd44d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"","type":"text","description":"<p>The user id sent by email</p>\n"},{"key":"hash","value":"","type":"text","description":"<p>The user hash sent by email</p>\n"},{"key":"password","value":"","type":"text"},{"key":"repeat_password","value":"","type":"text"}]},"url":"https://api.carvelo.ch/v3/user/changepassword","description":"<p>This call sends an update password mail to the user. For security reasons we don't provide any details.</p>\n","urlObject":{"path":["v3","user","changepassword"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[],"_postman_id":"7fd7b737-9b6d-47c3-b67e-66ba0e0fd44d"},{"name":"removeuser","id":"e85e4e21-001d-4422-90ea-cbc0761f8db0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.carvelo.ch/v3/user/remove","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}},"urlObject":{"path":["v3","user","remove"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[],"_postman_id":"e85e4e21-001d-4422-90ea-cbc0761f8db0"}],"id":"a8e40d08-7e95-4b7d-b202-35521fdbb4cf","description":"<p>The API uses 6 interfaces to display and update user data:</p>\n<ul>\n<li><p>logindata: Display and update the login credentials</p>\n</li>\n<li><p>addressdata: Display and update the user address data</p>\n</li>\n<li><p>abodata: Display user subscriptions</p>\n</li>\n<li><p>registerabo: Add or prolong a subscription</p>\n</li>\n<li><p>licencedata: Display and update the user driving licence</p>\n</li>\n<li><p>insurancedata: Display and update the user insurance pre-selection</p>\n</li>\n<li><p>pwddata: Retrieve a password forgot mail</p>\n</li>\n</ul>\n","_postman_id":"a8e40d08-7e95-4b7d-b202-35521fdbb4cf","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}}},{"name":"Payment data","item":[{"name":"addpaymentmethod","id":"d5026ce3-b36e-495e-8d42-0353f0473595","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.carvelo.ch/v3/checkout/add-alias","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}},"urlObject":{"path":["v3","checkout","add-alias"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[],"_postman_id":"d5026ce3-b36e-495e-8d42-0353f0473595"},{"name":"paymentdata","event":[{"listen":"test","script":{"id":"6dd4c593-6c07-4fe7-8013-989ec8639711","exec":["// Stores the payment method id in a collection variable\r","pm.collectionVariables.set(\"paymentmethodId\", pm.response.json().paymentMethods.id);"],"type":"text/javascript","packages":{}}}],"id":"587ee375-1375-40ec-9182-2c804f2a8295","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.carvelo.ch/v3/user/paymentdata","description":"<p>Retrieve a users payment method.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}},"urlObject":{"path":["v3","user","paymentdata"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[],"_postman_id":"587ee375-1375-40ec-9182-2c804f2a8295"},{"name":"removepaymentmethod","id":"53b85f7f-2186-4319-99c6-d39daa21c267","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"","type":"text"},{"key":"paymentdata-remove","value":"1","type":"text"}]},"url":"https://api.carvelo.ch/v3/user/paymentdata","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}},"urlObject":{"path":["v3","user","paymentdata"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[],"_postman_id":"53b85f7f-2186-4319-99c6-d39daa21c267"},{"name":"checktransactionstatus","id":"80688882-3a51-4945-b5c2-d6e64df51a7d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.carvelo.ch/v3/checkout/mobile-check?id={{transactionId}}","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}},"urlObject":{"path":["v3","checkout","mobile-check"],"host":["https://api.carvelo.ch"],"query":[{"key":"id","value":"{{transactionId}}"}],"variable":[]}},"response":[],"_postman_id":"80688882-3a51-4945-b5c2-d6e64df51a7d"}],"id":"3579b013-96c2-4039-a25d-2db973753311","description":"<p>We use datatrans as payment provider. The payments are done either directly for subscriptions or authorized and deferred transactions for rents. The deferred payments use aliases, so a payment method once registered can be reused for further rent bookings.</p>\n<p>More details about the mobile sdk of datatrans are described here <a href=\"https://docs.datatrans.ch/docs/mobile-sdk.\">https://docs.datatrans.ch/docs/mobile-sdk.</a> The sdk works only within our own apps. If you are interested in an external integration on the payment/booking level, please contact us at <a href=\"mailto:info@carvelo.ch\">info@carvelo.ch</a>.</p>\n<h3 id=\"add-a-payment-method-alias\">Add a payment method alias</h3>\n<p>A user payment method alias is added by the addpaymentmethod call. This call on the api returns a mobile token, which has to be processed in the mobile sdk. If a datatrans test passes, the payment method alias is added. A direct payment also creates an alias. So, the subscription adding call <a href=\"https://apidocs.carvelo.ch/#11abf530-64c6-44d7-b426-a999e165232f\">https://apidocs.carvelo.ch/#11abf530-64c6-44d7-b426-a999e165232f</a> for a payable subscription also generates a mobile token.</p>\n<h3 id=\"show-the-actual-payment-method\">Show the actual payment method</h3>\n<p>With paymentdata the user payment method is listed. We show the details openbills, canChange and canRemove. As users with bookings can't remove their actual payment method. With open bills, these bills have to be settled prior to a next booking.</p>\n<h3 id=\"remove-payment-method\">Remove payment method</h3>\n<p>The user can remove the alias of a registered payment method, if all bills are settled and no booking reservation exists.</p>\n<h3 id=\"check-transaction-status\">Check transaction status</h3>\n<p>In the payment process of a direct payment, the app might get an affirmative answer, before the payment is processed on the backend. Therefore you can check the transaction status after a subscription has been paid. We use this call to synchronize the subscription confirmation and listing.</p>\n","_postman_id":"3579b013-96c2-4039-a25d-2db973753311","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}}},{"name":"appversion","id":"de5e7d09-646a-4a7e-b954-c169f82d67c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"https://api.carvelo.ch/v2/user/getlogin","description":"<p>With this call you can retrieve all relevant user information. The personal user data, valid discount subscriptions and access groups, are displayed.</p>\n","urlObject":{"path":["v2","user","getlogin"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[],"_postman_id":"de5e7d09-646a-4a7e-b954-c169f82d67c3"},{"name":"loginstate","event":[{"listen":"test","script":{"id":"2eba8319-8e74-4934-85c2-ad6501f3e34e","exec":["// Stores the user id in a collection variable\r","pm.collectionVariables.set(\"userId\", pm.response.json().id);"],"type":"text/javascript","packages":{}}}],"id":"6871064b-3b06-45cf-b3be-3e0d3f190de6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.carvelo.ch/v3/user/getlogin","description":"<p>The loginstate displays the role id of the user. If there is no role, the registration process still needs to be accomplished.</p>\n<p>Furthermore, there are some user options, like insurance pre-selection, whether a valid paymentmethod and/or a valid driving licence is registered. If there are unpayed bills blocking further bookings, this is also displayed. Then the loginstate displays details about a possible company account.</p>\n<p>With loginstate you can also retrieve the required app versions. For the time being, only ios and android apps are supported.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}},"urlObject":{"path":["v3","user","getlogin"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[{"id":"58f893e7-6184-4c9f-830f-cccbc7bff063","name":"loginstate","originalRequest":{"method":"GET","header":[],"url":"https://api.carvelo.ch/v3/user/getlogin"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 08 Oct 2024 12:59:53 GMT"},{"key":"Server","value":"Apache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"6"},{"key":"Access-Control-Expose-Headers","value":"X-Pagination-Per-Page, X-Pagination-Total-Count, X-Pagination-Current-Page, X-Pagination-Page-Count"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"https://www.carvelo.ch"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, X-Requested-With"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Set-Cookie","value":"_csrf=bd3002d7706533abe88cd5bfebe50f3144bbd074c455b2c815da30c5c042a280a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22Cqr1zVVeneHmcMd9wq56Kjj9gU20Hbgu%22%3B%7D; path=/; HttpOnly; SameSite=Lax"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"**************************************\",\n    \"roleid\": \"d3e9ea96-3b2e-4bd0-80f4-f97d10e5b8dc\",\n    \"deleted\": 0,\n    \"deactivated\": 0,\n    \"insuranceselected\": 0,\n    \"paymentregistered\": 1,\n    \"licenceregistered\": 1,\n    \"company_account\": 0,\n    \"company_master\": 0,\n    \"company_name\": null,\n    \"openbills\": 0,\n    \"_csrf\": \"nCq5ZhNli2WwKNsv6bOKWah2szd3ocVldQqhcVD_yIffW8tXaTPdAN5Nk0KK_u5g3weGATzLr1wSX5NBGJ2v8g==\",\n    \"appv\": {\n        \"web\": 8,\n        \"ios\": 2,\n        \"android\": 30\n    }\n}"}],"_postman_id":"6871064b-3b06-45cf-b3be-3e0d3f190de6"}],"id":"2cc1b723-e596-4e32-8b3f-e920ffc06291","description":"<p>This section of the API is related to the user registration process. As most calls on the API require Token Auth, you need to register a user before you can access most parts of the API.</p>\n<p>Find all registration related calls in the folder. All other user related data interfaces are described in the folder user data. And last, payment and checkout related calls are described in the payment data folder.</p>\n<p>The loginstate and appversion calls are used in our app to check, whether a user is currently logged in and whether the app version required is installed or has to be updated.</p>\n","_postman_id":"2cc1b723-e596-4e32-8b3f-e920ffc06291","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}}},{"name":"External","item":[{"name":"gethosts","event":[{"listen":"test","script":{"id":"5b44fed7-2d22-49ec-851b-504a3ffd30d2","exec":["// Stores the first host id in a collection variable\r","pm.collectionVariables.set(\"host1Id\", pm.response.json()[1].id);"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"3b28a347-3dfc-4434-8238-e6830a150082","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.carvelo.ch/v3/external/gethosts","description":"<p>The <code>GET</code> request to <code>/v3/external/gethosts</code> endpoint retrieves a list of hosts. The response is a JSON array containing objects with the following properties:</p>\n<ul>\n<li><p><code>id</code> (string): The unique identifier of the host.</p>\n</li>\n<li><p><code>deleted</code> (number): Indicates if the host has been deleted (0 for not deleted, 1 for deleted).</p>\n</li>\n<li><p><code>deactivated</code> (number): Indicates if the host has been deactivated (0 for not deactivated, 1 for deactivated).</p>\n</li>\n<li><p><code>updated_at</code> (string): The timestamp of the last update to the host's information.</p>\n</li>\n<li><p><code>name</code> (string): The name of the host.</p>\n</li>\n<li><p><code>address</code> (string): The address of the host.</p>\n</li>\n<li><p><code>zip</code> (string): The ZIP code of the host's location.</p>\n</li>\n<li><p><code>location</code> (string): The location of the host.</p>\n</li>\n<li><p><code>regionname</code> (string): The name of the region where the host is located.</p>\n</li>\n<li><p><code>phone</code> (string): The contact phone number of the host.</p>\n</li>\n<li><p><code>latitude</code> (number): The latitude coordinate of the host's location.</p>\n</li>\n<li><p><code>longitude</code> (number): The longitude coordinate of the host's location.</p>\n</li>\n<li><p><code>timezone</code> (string): The timezone of the host's location.</p>\n</li>\n<li><p><code>image</code> (string): The URL of the host's image.</p>\n</li>\n<li><p><code>image_orig</code> (string): The original URL of the host's image.</p>\n</li>\n<li><p><code>carvelobox</code> (number): Indicates if the host has a carvelobox (0 for no, 1 for yes).</p>\n</li>\n<li><p><code>openings</code> (array): An array of objects representing the opening hours of the host, with properties:</p>\n<ul>\n<li><p><code>id</code> (string): The unique identifier of the opening hours.</p>\n</li>\n<li><p><code>updated_at</code> (string): The timestamp of the last update to the opening hours.</p>\n</li>\n<li><p><code>start</code> (string): The start time of the opening hours.</p>\n</li>\n<li><p><code>end</code> (string): The end time of the opening hours.</p>\n</li>\n<li><p><code>days</code> (number): The days of the week as a bitset when the host is open.</p>\n</li>\n<li><p><code>daysum</code> (array): An array representing the days of the week when the host is open.</p>\n</li>\n</ul>\n</li>\n<li><p><code>closings</code> (array): An array of objects representing the closing dates of the host, with properties:</p>\n<ul>\n<li><p><code>id</code> (string): The unique identifier of the closing date.</p>\n</li>\n<li><p><code>updated_at</code> (string): The timestamp of the last update to the closing date.</p>\n</li>\n<li><p><code>name</code> (string): The name of the closing event.</p>\n</li>\n<li><p><code>fromdate</code> (string): The start date of the closing event.</p>\n</li>\n<li><p><code>todate</code> (string): The end date of the closing event.</p>\n</li>\n</ul>\n</li>\n<li><p><code>access_description</code> (string): The description of access to the host.</p>\n</li>\n<li><p><code>access_url</code> (string): The URL for access to the host.</p>\n</li>\n</ul>\n<p>Example response:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n  {\n    \"id\": \"\",\n    \"deleted\": 0,\n    \"deactivated\": 0,\n    \"updated_at\": \"\",\n    \"name\": \"\",\n    \"address\": \"\",\n    \"zip\": \"\",\n    \"location\": \"\",\n    \"regionname\": \"\",\n    \"phone\": \"\",\n    \"latitude\": 0,\n    \"longitude\": 0,\n    \"timezone\": \"\",\n    \"image\": \"\",\n    \"image_orig\": \"\",\n    \"carvelobox\": 0,\n    \"openings\": [\n      {\n        \"id\": \"\",\n        \"updated_at\": \"\",\n        \"start\": \"\",\n        \"end\": \"\",\n        \"days\": 0,\n        \"daysum\": [0]\n      }\n    ],\n    \"closings\": [\n      {\n        \"id\": \"\",\n        \"updated_at\": \"\",\n        \"name\": \"\",\n        \"fromdate\": \"\",\n        \"todate\": \"\"\n      }\n    ],\n    \"access_description\": \"\",\n    \"access_url\": \"\"\n  }\n]\n\n</code></pre>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}},"urlObject":{"path":["v3","external","gethosts"],"host":["https://api.carvelo.ch"],"query":[{"disabled":true,"key":"onlyShmobup","value":"1"},{"disabled":true,"key":"noShmobup","value":"1"}],"variable":[]}},"response":[{"id":"663bd813-748e-4517-87ea-74e11fd9bb73","name":"gethosts","originalRequest":{"method":"GET","header":[],"url":"https://api.carvelo.ch/v3/external/gethosts"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 24 Oct 2024 07:12:34 GMT"},{"key":"Server","value":"Apache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"6"},{"key":"Access-Control-Expose-Headers","value":"X-Pagination-Per-Page, X-Pagination-Total-Count, X-Pagination-Current-Page, X-Pagination-Page-Count"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"https://www.carvelo.ch"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, X-Requested-With"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"68913e27-5e53-4bcb-df17-acb8eae80666\",\n        \"deleted\": 0,\n        \"deactivated\": 1,\n        \"updated_at\": \"2023-06-01 16:14:45\",\n        \"name\": \"TCS eMobility Lounge\",\n        \"address\": \"Poststrasse 1\",\n        \"zip\": \"3072\",\n        \"location\": \"Ostermundigen\",\n        \"regionname\": \"Ostermundigen\",\n        \"phone\": \"058 827 32 90\",\n        \"latitude\": 46.956180466027,\n        \"longitude\": 7.4826922926611,\n        \"timezone\": \"Europe/Zurich\",\n        \"image\": \"https://api.carvelo.ch/uploads/host/d108a9d9-e952-417a-8a8a-b685dffd9202_thumb.jpg\",\n        \"image_orig\": \"https://api.carvelo.ch/uploads/host/d108a9d9-e952-417a-8a8a-b685dffd9202.jpg\",\n        \"carvelobox\": 0,\n        \"openings\": [\n            {\n                \"id\": \"6ed708f4-1422-49a8-9359-7411f7a3c3c6\",\n                \"updated_at\": \"2022-01-03 15:40:40\",\n                \"start\": \"09:00:00\",\n                \"end\": \"12:30:00\",\n                \"days\": 31,\n                \"daysum\": [\n                    1,\n                    2,\n                    4,\n                    8,\n                    16\n                ]\n            },\n            {\n                \"id\": \"dec95f7c-76e8-498e-c474-1aea8a65c2a6\",\n                \"updated_at\": \"2022-07-05 09:54:23\",\n                \"start\": \"13:30:00\",\n                \"end\": \"17:30:00\",\n                \"days\": 31,\n                \"daysum\": [\n                    1,\n                    2,\n                    4,\n                    8,\n                    16\n                ]\n            }\n        ],\n        \"closings\": [\n            {\n                \"id\": \"71f4bc8c-b98c-4cc8-8996-d75bf4fb5a7a\",\n                \"updated_at\": \"2024-06-25 10:00:08\",\n                \"name\": \"Bundesfeiertag 1. August \",\n                \"fromdate\": \"2025-08-01 00:00:00\",\n                \"todate\": \"2025-08-01 23:59:59\"\n            }\n        ],\n        \"access_description\": \"\",\n        \"access_url\": \"\"\n    }\n]"}],"_postman_id":"3b28a347-3dfc-4434-8238-e6830a150082"},{"name":"getbikes","event":[{"listen":"test","script":{"id":"ba23ae4f-f6de-4726-ba5d-c5dfdcee2fcf","exec":["// Stores the first bike id in a collection variable\r","pm.collectionVariables.set(\"bike1Id\", pm.response.json()[0].id);"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"d82d406b-6c8a-48e2-9b44-71dc8eb33f45","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.carvelo.ch/v3/external/getbikes","description":"<p>The <code>GET</code> request to <code>/v3/external/getbikes</code> endpoint retrieves a list of bikes available. The response is a JSON array containing objects with the following properties:</p>\n<ul>\n<li><p><code>id</code> (string): The unique identifier of the bike.</p>\n</li>\n<li><p><code>identifier</code> (string): An identifier for the bike.</p>\n</li>\n<li><p><code>type</code> (string): The type of the bike.</p>\n</li>\n<li><p><code>bike</code> (object): An object containing detailed information about the bike, including:</p>\n<ul>\n<li><p><code>updated_at</code> (string): The timestamp of the last update to the bike information.</p>\n</li>\n<li><p><code>bikeid</code> (string): The unique identifier of the bike.</p>\n</li>\n<li><p><code>name</code> (string): The name of the bike.</p>\n</li>\n<li><p><code>make</code> (string): The make or manufacturer of the bike.</p>\n</li>\n<li><p><code>model</code> (string): The model of the bike.</p>\n</li>\n<li><p><code>wheels</code> (string): The number of wheels on the bike.</p>\n</li>\n<li><p><code>type</code> (string): The type of the bike.</p>\n</li>\n<li><p><code>isElectric</code> (number): Indicates if the bike is electric (0 for false, 1 for true).</p>\n</li>\n<li><p><code>isExternalBookable</code> (number): Indicates if the bike is externally bookable (0 for false, 1 for true).</p>\n</li>\n<li><p><code>childSeat</code> (number): Indicates if the bike has a child seat (0 for false, 1 for true).</p>\n</li>\n<li><p><code>link</code> (string): A link to more information about the bike.</p>\n</li>\n<li><p><code>image</code> (string): The URL of the image of the bike.</p>\n</li>\n<li><p><code>thumb</code> (string): The URL of the thumbnail image of the bike.</p>\n</li>\n</ul>\n</li>\n<li><p><code>host</code> (string): The host id of the bike.</p>\n</li>\n<li><p><code>availabilities</code> (array): An array containing objects representing the availabilities of the bike, with each object containing:</p>\n<ul>\n<li><p><code>begin</code> (string): The start timestamp of the availability.</p>\n</li>\n<li><p><code>end</code> (string): The end timestamp of the availability.</p>\n</li>\n</ul>\n</li>\n</ul>\n<p>Example response:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n  {\n    \"id\": \"\",\n    \"identifier\": \"\",\n    \"type\": \"\",\n    \"bike\": {\n      \"updated_at\": \"\",\n      \"bikeid\": \"\",\n      \"name\": \"\",\n      \"make\": \"\",\n      \"model\": \"\",\n      \"wheels\": \"\",\n      \"type\": \"\",\n      \"isElectric\": 0,\n      \"isExternalBookable\": 0,\n      \"childSeat\": 0,\n      \"link\": \"\",\n      \"image\": \"\",\n      \"thumb\": \"\"\n    },\n    \"host\": \"\",\n    \"availabilities\": [\n      {\n        \"begin\": \"\",\n        \"end\": \"\"\n      }\n    ]\n  }\n]\n\n</code></pre>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}},"urlObject":{"path":["v3","external","getbikes"],"host":["https://api.carvelo.ch"],"query":[{"disabled":true,"key":"onlyShmobup","value":"1"},{"disabled":true,"key":"noShmobup","value":"1"}],"variable":[]}},"response":[{"id":"86b83633-55d4-42c0-80d8-d1ecd1468e05","name":"getbikes","originalRequest":{"method":"GET","header":[],"url":"https://api.carvelo.ch/v3/external/getbikes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 24 Oct 2024 07:18:36 GMT"},{"key":"Server","value":"Apache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"6"},{"key":"Access-Control-Expose-Headers","value":"X-Pagination-Per-Page, X-Pagination-Total-Count, X-Pagination-Current-Page, X-Pagination-Page-Count"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"https://www.carvelo.ch"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, X-Requested-With"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"c600433b-2714-4d8f-f257-25eedd02ec22\",\n        \"identifier\": \"Niederholz-Express\",\n        \"type\": \"cargo\",\n        \"bike\": {\n            \"updated_at\": \"2024-09-09 15:31:44\",\n            \"bikeid\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n            \"name\": \"Riese & Müller Transporter 65, Modell 2023\",\n            \"make\": \"Riese & Müller\",\n            \"model\": \"Transporter 65\",\n            \"wheels\": \"two\",\n            \"type\": \"cargo\",\n            \"isElectric\": 1,\n            \"isExternalBookable\": 1,\n            \"childSeat\": 1,\n            \"link\": \"https://www.carvelo.ch/de/vehicles/transporter-65/\",\n            \"image\": \"https://api.carvelo.ch/uploads/bike/404e5a58-f70f-4c36-c111-d1f787305748.jpg\",\n            \"thumb\": \"https://api.carvelo.ch/uploads/bike/404e5a58-f70f-4c36-c111-d1f787305748_thumb.jpg\"\n        },\n        \"host\": \"68913e27-5e53-4bcb-df17-acb8eae80666\",\n        \"availabilities\": [\n            {\n                \"begin\": \"2024-10-24 04:00:00\",\n                \"end\": \"2024-10-28 15:30:00\"\n            },\n            {\n                \"begin\": \"2024-10-28 21:00:00\",\n                \"end\": \"2024-11-04 15:30:00\"\n            },\n            {\n                \"begin\": \"2024-11-04 21:00:00\",\n                \"end\": \"2024-11-04 15:30:00\"\n            },\n            {\n                \"begin\": \"2024-11-04 21:00:00\",\n                \"end\": \"2024-11-11 15:30:00\"\n            },\n            {\n                \"begin\": \"2024-11-11 21:00:00\",\n                \"end\": \"2024-11-11 15:30:00\"\n            },\n            {\n                \"begin\": \"2024-11-11 21:00:00\",\n                \"end\": \"2024-11-18 15:30:00\"\n            },\n            {\n                \"begin\": \"2024-11-18 21:00:00\",\n                \"end\": \"2024-11-18 15:30:00\"\n            },\n            {\n                \"begin\": \"2024-11-18 21:00:00\",\n                \"end\": \"2024-11-25 15:30:00\"\n            },\n            {\n                \"begin\": \"2024-11-25 21:00:00\",\n                \"end\": \"2024-11-25 15:30:00\"\n            },\n            {\n                \"begin\": \"2024-11-25 21:00:00\",\n                \"end\": \"2024-12-02 15:30:00\"\n            },\n            {\n                \"begin\": \"2024-12-02 21:00:00\",\n                \"end\": \"2024-12-02 15:30:00\"\n            },\n            {\n                \"begin\": \"2024-12-02 21:00:00\",\n                \"end\": \"2024-12-09 15:30:00\"\n            },\n            {\n                \"begin\": \"2024-12-09 21:00:00\",\n                \"end\": \"2024-12-09 15:30:00\"\n            },\n            {\n                \"begin\": \"2024-12-09 21:00:00\",\n                \"end\": \"2024-12-16 15:30:00\"\n            },\n            {\n                \"begin\": \"2024-12-16 21:00:00\",\n                \"end\": \"2024-12-16 15:30:00\"\n            },\n            {\n                \"begin\": \"2024-12-16 21:00:00\",\n                \"end\": \"2025-01-06 15:30:00\"\n            },\n            {\n                \"begin\": \"2025-01-06 21:00:00\",\n                \"end\": \"2025-01-06 15:30:00\"\n            },\n            {\n                \"begin\": \"2025-01-06 21:00:00\",\n                \"end\": \"2025-01-13 15:30:00\"\n            },\n            {\n                \"begin\": \"2025-01-13 21:00:00\",\n                \"end\": \"2025-01-13 15:30:00\"\n            },\n            {\n                \"begin\": \"2025-01-13 21:00:00\",\n                \"end\": \"2025-01-20 15:30:00\"\n            },\n            {\n                \"begin\": \"2025-01-20 21:00:00\",\n                \"end\": \"2025-01-20 15:30:00\"\n            },\n            {\n                \"begin\": \"2025-01-20 21:00:00\",\n                \"end\": \"2025-01-27 15:30:00\"\n            },\n            {\n                \"begin\": \"2025-01-27 21:00:00\",\n                \"end\": \"2025-01-27 15:30:00\"\n            },\n            {\n                \"begin\": \"2025-01-27 21:00:00\",\n                \"end\": \"2025-02-03 15:30:00\"\n            },\n            {\n                \"begin\": \"2025-02-03 21:00:00\",\n                \"end\": \"2025-02-03 15:30:00\"\n            },\n            {\n                \"begin\": \"2025-02-03 21:00:00\",\n                \"end\": \"2025-02-10 15:30:00\"\n            },\n            {\n                \"begin\": \"2025-02-10 21:00:00\",\n                \"end\": \"2025-02-10 15:30:00\"\n            },\n            {\n                \"begin\": \"2025-02-10 21:00:00\",\n                \"end\": \"2025-02-17 15:30:00\"\n            },\n            {\n                \"begin\": \"2025-02-17 21:00:00\",\n                \"end\": \"2025-02-17 15:30:00\"\n            },\n            {\n                \"begin\": \"2025-02-17 21:00:00\",\n                \"end\": \"2025-02-24 15:30:00\"\n            },\n            {\n                \"begin\": \"2025-02-24 21:00:00\",\n                \"end\": \"2025-02-24 15:30:00\"\n            },\n            {\n                \"begin\": \"2025-02-24 21:00:00\",\n                \"end\": \"2025-09-24 04:00:00\"\n            }\n        ]\n    }\n]"}],"_postman_id":"d82d406b-6c8a-48e2-9b44-71dc8eb33f45"},{"name":"getbiketypes","event":[{"listen":"test","script":{"id":"ba23ae4f-f6de-4726-ba5d-c5dfdcee2fcf","exec":[""],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"packages":{},"type":"text/javascript"}}],"id":"75fc614d-7245-46ac-ac35-c62f1956536c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.carvelo.ch/v3/external/bikefiltertypes","description":"<p>The <code>GET</code> request to <code>/v3/external/getbiketypes</code> endpoint retrieves the filter types for bikes that can be applied to the data obtained from the<code>getbikes</code> endpoint.</p>\n<h4 id=\"response\">Response</h4>\n<p>The response is a JSON object with the following schema:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"cargo\": \"\",\n  \"smargo\": \"\",\n  \"ebike\": \"\"\n}\n\n</code></pre>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}},"urlObject":{"path":["v3","external","bikefiltertypes"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[{"id":"00a13261-10d1-4e52-953a-3e40a95fe51c","name":"getbiketypes","originalRequest":{"method":"GET","header":[],"url":"https://api.carvelo.ch/v3/external/bikefiltertypes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 24 Oct 2024 07:21:11 GMT"},{"key":"Server","value":"Apache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"6"},{"key":"Access-Control-Expose-Headers","value":"X-Pagination-Per-Page, X-Pagination-Total-Count, X-Pagination-Current-Page, X-Pagination-Page-Count"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"cargo\": \"cargo\",\n    \"smargo\": \"smargo\",\n    \"ebike\": \"ebike\"\n}"}],"_postman_id":"75fc614d-7245-46ac-ac35-c62f1956536c"},{"name":"getbookingsdelta","id":"a00d51bb-7062-467b-9c97-195fe65753b2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.carvelo.ch/v3/external/getbookingsdelta","description":"<p>The <code>GET</code> request to <code>/v3/external/getbookingsdelta</code> endpoint retrieves the delta of booking changes for bikes with availabilities. It considers all bikes with availabilities, which have had a booking change during the last hour. The structure of the bike object is identical to the one in the getbikes call.</p>\n<p>The getbikes call for external users is limited to once an hour. So if you need to update the availabilities of our bikes more frequently, you should call getbookingsdelta to overwrite any changes.</p>\n<p>Example response:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"from\": \"\",\n    \"data\": [\n        {\n            \"id\": \"\",\n            \"identifier\": \"\",\n            \"type\": \"\",\n            \"bike\": {\n                \"updated_at\": \"\",\n                \"bikeid\": \"\",\n                \"name\": \"\",\n                \"make\": \"\",\n                \"model\": \"\",\n                \"wheels\": \"\",\n                \"type\": \"\",\n                \"isElectric\": 0,\n                \"isExternalBookable\": 0,\n                \"childSeat\": 0,\n                \"link\": \"\",\n                \"image\": \"\",\n                \"thumb\": \"\"\n            },\n            \"host\": \"\",\n            \"availabilities\": [\n                {\n                    \"begin\": \"\",\n                    \"end\": \"\"\n                }\n            ]\n        }\n    ]\n}\n\n</code></pre>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}},"urlObject":{"path":["v3","external","getbookingsdelta"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[{"id":"3455bbe3-6777-4bdf-b427-3ca7fdc2d1d3","name":"getbookingsdelta","originalRequest":{"method":"GET","header":[],"url":"https://api.carvelo.ch/v3/external/getbookingsdelta"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 24 Oct 2024 07:28:51 GMT"},{"key":"Server","value":"Apache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"6"},{"key":"Access-Control-Expose-Headers","value":"X-Pagination-Per-Page, X-Pagination-Total-Count, X-Pagination-Current-Page, X-Pagination-Page-Count"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"https://www.carvelo.ch"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, X-Requested-With"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"from\": \"2024-10-24 07:18:51+0000\",\n    \"data\": [\n        {\n            \"id\": \"ab6f677e-9b59-48b8-a107-55f60589c47c\",\n            \"identifier\": \"USTARIA\",\n            \"type\": \"cargo\",\n            \"bike\": {\n                \"updated_at\": \"2024-09-09 15:31:44\",\n                \"bikeid\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"name\": \"Riese & Müller Transporter 65, Modell 2023\",\n                \"make\": \"Riese & Müller\",\n                \"model\": \"Transporter 65\",\n                \"wheels\": \"two\",\n                \"type\": \"cargo\",\n                \"isElectric\": 1,\n                \"isExternalBookable\": 1,\n                \"childSeat\": 1,\n                \"link\": \"https://www.carvelo.ch/en/vehicles/transporter-65/\",\n                \"image\": \"https://api.carvelo.ch/uploads/bike/404e5a58-f70f-4c36-c111-d1f787305748.jpg\",\n                \"thumb\": \"https://api.carvelo.ch/uploads/bike/404e5a58-f70f-4c36-c111-d1f787305748_thumb.jpg\"\n            },\n            \"host\": \"68913e27-5e53-4bcb-df17-acb8eae80666\",\n            \"availabilities\": [\n                {\n                    \"begin\": \"2024-10-24 13:30:00\",\n                    \"end\": \"2024-10-26 07:30:00\"\n                },\n                {\n                    \"begin\": \"2024-10-26 11:00:00\",\n                    \"end\": \"2024-10-26 07:30:00\"\n                },\n                {\n                    \"begin\": \"2024-10-26 11:00:00\",\n                    \"end\": \"2025-09-24 09:00:00\"\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"a00d51bb-7062-467b-9c97-195fe65753b2"}],"id":"1cf1feb0-bda8-42f4-b056-cc8959fe5fec","description":"<p>Use the external section to retrieve general system information like</p>\n<ul>\n<li><p>gethosts for hosts location, address, opening and closing data. Bikes can only be picked up and returned at the same host, and during a hosts opening hours. But the rent can last overnight, even when a host is closed.<br />  The weekdays in the opening hours are encoded as a bitset useing 7 digits. The corresponding values are: Mon = 1, Tue = 2, Wed = 4, Thu = 8, Fri = 16, Sat = 32, Sun = 64.</p>\n</li>\n<li><p>getbikes for bike info and availablities.</p>\n</li>\n<li><p>getbiketypes for the type of bikes available for non-app users.</p>\n</li>\n<li><p>getbookingsdelta in addition to getbikes for more frequent calls. It only contains bikes with booking changes which happened in the previous hour.</p>\n</li>\n</ul>\n<h3 id=\"deeplinks\">Deeplinks</h3>\n<p>If you want to deeplink booking requests into our apps, use the following scheme:</p>\n<ul>\n<li><p><code>https://www.carvelo.ch/applinks/booking?instance=&amp;start=&amp;end=</code></p>\n<ul>\n<li><p>The params <code>start</code> and <code>end</code> are optional</p>\n</li>\n<li><p><code>instance</code>: The id of the bike instance you would like to pass on</p>\n</li>\n<li><p><code>start</code>: The start datetime of the booking, use the format <code>D M d Y H:i:s +O</code> urlencoded data is required</p>\n</li>\n<li><p><code>end</code>: The end datetime of the booking, use the format <code>D M d Y H:i:s +O</code>urlencoded data is required</p>\n</li>\n<li><p>Example: <a href=\"https://www.carvelo.ch/applinks/booking?instance=f39361f8-9557-45f3-d729-678ec6b9cfaa&amp;start=Thu+Nov+13+2024+10%3A30%3A00+%2B0100&amp;end=Thu+Nov+13+2024+11%3A30%3A00+%2B0100\">https://www.carvelo.ch/applinks/booking?instance=f39361f8-9557-45f3-d729-678ec6b9cfaa&amp;start=Thu+Nov+13+2024+10:30:00++0100&amp;end=Thu+Nov+13+2024+11:30:00++0100</a></p>\n</li>\n</ul>\n</li>\n</ul>\n","_postman_id":"1cf1feb0-bda8-42f4-b056-cc8959fe5fec","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}}},{"name":"Host","item":[{"name":"index","id":"ddc9ac8b-9220-4d4f-93ac-6ffa6868b9eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.carvelo.ch/v3/host","description":"<p>Deprecated. Use<code>/v3/external/gethosts</code> instead, where caching applies.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}},"urlObject":{"path":["v3","host"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[],"_postman_id":"ddc9ac8b-9220-4d4f-93ac-6ffa6868b9eb"},{"name":"view","id":"e6db8d6c-05b4-4762-8a76-4c4d527a9a5e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.carvelo.ch/v3/host/9515c94a-2622-4693-9f6a-fa021f25b05c","description":"<h3 id=\"retrieve-host-details\">Retrieve Host Details</h3>\n<p>This endpoint is used to retrieve details of a specific host identified by <code>host1Id</code>.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li><p>Method: GET</p>\n</li>\n<li><p>URL: <code>https://api.carvelo.ch/v3/host/9515c94a-2622-4693-9f6a-fa021f25b05c</code></p>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>The response will be a JSON object with the following schema:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"id\": \"\",\n  \"name\": \"\",\n  \"address\": \"\",\n  \"zip\": \"\",\n  \"location\": \"\",\n  \"phone\": \"\",\n  \"region\": \"\",\n  \"responsible\": \"\",\n  \"accessgroups\": [\n    {\n      \"id\": \"\",\n      \"name\": \"\"\n    }\n  ],\n  \"openings\": [\n    {\n      \"id\": \"\",\n      \"start\": \"\",\n      \"end\": \"\",\n      \"days\": 0,\n      \"daysum\": [0]\n    }\n  ],\n  \"latitude\": 0,\n  \"longitude\": 0,\n  \"latlng\": {\n    \"lat\": 0,\n    \"lng\": 0\n  },\n  \"timezone\": \"\",\n  \"image\": \"\",\n  \"image_orig\": \"\",\n  \"access_description_en\": \"\",\n  \"access_description_de\": \"\",\n  \"access_description_fr\": \"\",\n  \"access_description_it\": \"\"\n}\n\n</code></pre>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}},"urlObject":{"path":["v3","host","9515c94a-2622-4693-9f6a-fa021f25b05c"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[{"id":"adec769f-7278-446e-9082-294812faea3d","name":"view","originalRequest":{"method":"GET","header":[],"url":"https://api.carvelo.ch/v3/host/9515c94a-2622-4693-9f6a-fa021f25b05c"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 24 Oct 2024 08:04:01 GMT"},{"key":"Server","value":"Apache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"6"},{"key":"Access-Control-Expose-Headers","value":"X-Pagination-Per-Page, X-Pagination-Total-Count, X-Pagination-Current-Page, X-Pagination-Page-Count"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"https://www.carvelo.ch"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, X-Requested-With"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"9515c94a-2622-4693-9f6a-fa021f25b05c\",\n    \"name\": \"169 West & Weststrasse GmbH\",\n    \"address\": \"Weststrasse 169\",\n    \"zip\": \"8003\",\n    \"location\": \"Zürich\",\n    \"phone\": \"044 461 00 33\",\n    \"region\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n    \"responsible\": \"a99d78a7-1931-43ba-9df2-3393707f7e39\",\n    \"accessgroups\": [\n        {\n            \"id\": \"8fca1a73-4e6c-492b-fb50-a62e969e4a67\",\n            \"name\": \"Public\"\n        }\n    ],\n    \"openings\": [\n        {\n            \"id\": \"0941ca43-2e5e-4e78-eab7-e599cacfb234\",\n            \"start\": \"16:00:00\",\n            \"end\": \"22:00:00\",\n            \"days\": 28,\n            \"daysum\": [\n                4,\n                8,\n                16\n            ]\n        },\n        {\n            \"id\": \"24060e5c-2b40-4a69-c1e1-cf8898690daa\",\n            \"start\": \"10:00:00\",\n            \"end\": \"22:00:00\",\n            \"days\": 32,\n            \"daysum\": [\n                32\n            ]\n        },\n        {\n            \"id\": \"5cab1744-7c17-4061-cf40-8b09e0b644b6\",\n            \"start\": \"10:00:00\",\n            \"end\": \"22:00:00\",\n            \"days\": 64,\n            \"daysum\": [\n                64\n            ]\n        }\n    ],\n    \"latitude\": 47.373902312015,\n    \"longitude\": 8.5180803392621,\n    \"latlng\": {\n        \"lat\": 47.373902312015,\n        \"lng\": 8.5180803392621\n    },\n    \"timezone\": \"Europe/Zurich\",\n    \"image\": \"https://api.carvelo.ch/uploads/host/b8f12ec0-b5d9-4bfc-8221-4c53284a437d_thumb.jpg\",\n    \"image_orig\": \"https://api.carvelo.ch/uploads/host/b8f12ec0-b5d9-4bfc-8221-4c53284a437d.jpg\",\n    \"access_description_en\": \"\",\n    \"access_description_de\": \"\",\n    \"access_description_fr\": \"\",\n    \"access_description_it\": \"\"\n}"}],"_postman_id":"e6db8d6c-05b4-4762-8a76-4c4d527a9a5e"},{"name":"locations","id":"41a60766-669a-4227-94dc-fc2fcec5fb70","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.carvelo.ch/v3/host/searchlocations?q=","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}},"urlObject":{"path":["v3","host","searchlocations"],"host":["https://api.carvelo.ch"],"query":[{"description":{"content":"<p>Searchstring (Host name, City, Road)</p>\n","type":"text/plain"},"key":"q","value":""}],"variable":[]}},"response":[{"id":"74a82b18-8740-4de2-b66a-54a613162d0d","name":"locations","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.carvelo.ch/v3/host/searchlocations?q=Bern","host":["https://api.carvelo.ch"],"path":["v3","host","searchlocations"],"query":[{"key":"q","value":"Bern","description":"Searchstring (Host name, City, Road)"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 13 Nov 2024 15:39:54 GMT"},{"key":"Server","value":"Apache"},{"key":"Access-Control-Expose-Headers","value":"X-Pagination-Per-Page, X-Pagination-Total-Count, X-Pagination-Current-Page, X-Pagination-Page-Count"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"https://www.carvelo.ch"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, X-Requested-With"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"_type\": \"city\",\n        \"confidence\": 6,\n        \"latitude\": 46.9479744,\n        \"longitude\": 7.447791,\n        \"location\": \"Bern\"\n    },\n    {\n        \"_type\": \"city\",\n        \"confidence\": 7,\n        \"latitude\": 46.176298107984,\n        \"longitude\": 6.074983195536,\n        \"location\": \"Bernex\"\n    },\n    {\n        \"_type\": \"host\",\n        \"confidence\": 11,\n        \"latitude\": 46.947739,\n        \"longitude\": 7.439382,\n        \"location\": \"Berner Generationenhaus, Bahnhofplatz 2, Postfach, 3011 Bern\"\n    },\n    {\n        \"_type\": \"host\",\n        \"confidence\": 11,\n        \"latitude\": 46.959264,\n        \"longitude\": 7.446948,\n        \"location\": \"Pro Velo Bern, Birkenweg 61, 3013 Bern\"\n    },\n    {\n        \"_type\": \"host\",\n        \"confidence\": 11,\n        \"latitude\": 46.957045,\n        \"longitude\": 7.444755,\n        \"location\": \"Velokurierladen Bern, Lorrainestrasse 21, 3013 Bern\"\n    }\n]"}],"_postman_id":"41a60766-669a-4227-94dc-fc2fcec5fb70"}],"id":"4069c4ac-4183-48f1-a802-f219d47f072c","_postman_id":"4069c4ac-4183-48f1-a802-f219d47f072c","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}}},{"name":"Bike","item":[{"name":"index","event":[{"listen":"test","script":{"id":"0d752f59-da7b-4326-8fae-6fabd1e8298b","exec":["// Stores the first bike id in a collection variable\r","pm.collectionVariables.set(\"bike1Id\", pm.response.json()[0].id);\r","pm.collectionVariables.set(\"bike1Type\", pm.response.json()[0].bike);"],"type":"text/javascript","packages":{}}}],"id":"b880b630-9673-444e-b645-dee5c24507a7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.carvelo.ch/v3/instance","description":"<p>The use of the<code>/v3/instance</code> is deprecated. Use<code>/v3/external/getbikes</code> instead, where caching applies and availabilities are included.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}},"urlObject":{"path":["v3","instance"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[],"_postman_id":"b880b630-9673-444e-b645-dee5c24507a7"},{"name":"view","id":"e7b6e448-cc28-442e-ad11-a4719665410d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.carvelo.ch/v3/instance/00969302-180d-487a-c962-6ed44af5471a","description":"<h3 id=\"get-bike-instance-details\">Get Bike Instance Details</h3>\n<p>This endpoint retrieves the details of a specific bike instance identified by the <code>bike1Id</code>.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li><p>Method: GET</p>\n</li>\n<li><p>URL: <code>https://api.carvelo.ch/v3/instance/00969302-180d-487a-c962-6ed44af5471a</code></p>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>The response will include the following details about the bike instance:</p>\n<ul>\n<li><p><code>id</code> (string): The unique identifier of the bike instance.</p>\n</li>\n<li><p><code>deleted</code> (integer): Indicates if the bike instance has been deleted.</p>\n</li>\n<li><p><code>deactivated</code> (integer): Indicates if the bike instance has been deactivated.</p>\n</li>\n<li><p><code>backup</code> (integer): Indicates if the bike instance has a backup.</p>\n</li>\n<li><p><code>nextId</code> (string): The identifier of the next bike instance.</p>\n</li>\n<li><p><code>longterm</code> (integer): Indicates if the bike instance is for long term use.</p>\n</li>\n<li><p><code>outage</code> (integer): Indicates if the bike instance is in outage.</p>\n</li>\n<li><p><code>outage_blocked_till</code> (string): Timestamp indicating when the outage is blocked till.</p>\n</li>\n<li><p><code>creator</code> (string): The creator of the bike instance.</p>\n</li>\n<li><p><code>created_at</code> (string): Timestamp indicating when the bike instance was created.</p>\n</li>\n<li><p><code>updated_at</code> (string): Timestamp indicating when the bike instance was last updated.</p>\n</li>\n<li><p><code>identifier</code> (string): The identifier of the bike instance.</p>\n</li>\n<li><p><code>serialnumber</code> (string): The serial number of the bike instance.</p>\n</li>\n<li><p><code>keynumber</code> (string): The key number of the bike instance.</p>\n</li>\n<li><p><code>bookskey</code> (string): The books key of the bike instance.</p>\n</li>\n<li><p><code>padlock_id</code> (string): The padlock ID of the bike instance.</p>\n</li>\n<li><p><code>carvelobox</code> (string): The carvelobox of the bike instance.</p>\n</li>\n<li><p><code>rxtrackernr</code> (string): The tracker number of the bike instance.</p>\n</li>\n<li><p><code>latitude</code> (float): The latitude of the bike instance.</p>\n</li>\n<li><p><code>longitude</code> (float): The longitude of the bike instance.</p>\n</li>\n<li><p><code>pos_updated_at</code> (string): Timestamp indicating when the position was last updated.</p>\n</li>\n<li><p><code>battery</code> (integer): The battery level of the bike instance.</p>\n</li>\n<li><p><code>bat_updated_at</code> (string): Timestamp indicating when the battery was last updated.</p>\n</li>\n<li><p><code>totaldistance</code> (integer): The total distance covered by the bike instance.</p>\n</li>\n<li><p><code>totalusage</code> (integer): The total usage of the bike instance.</p>\n</li>\n<li><p><code>launchdate</code> (string): Timestamp indicating the launch date of the bike instance.</p>\n</li>\n<li><p><code>sponsor</code> (string): The sponsor of the bike instance.</p>\n</li>\n<li><p><code>servicepartner</code> (string): The service partner of the bike instance.</p>\n</li>\n<li><p><code>remarks</code> (string): Any remarks associated with the bike instance.</p>\n</li>\n<li><p><code>bike</code> (string): The type of bike associated with the instance.</p>\n</li>\n<li><p><code>host</code> (string): The host of the bike instance.</p>\n</li>\n<li><p><code>network</code> (string): The network associated with the bike instance.</p>\n</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}},"urlObject":{"path":["v3","instance","00969302-180d-487a-c962-6ed44af5471a"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[{"id":"fc897ce0-b2c1-4c5f-aaee-93b651816e19","name":"view","originalRequest":{"method":"GET","header":[],"url":"https://api.carvelo.ch/v3/instance/00969302-180d-487a-c962-6ed44af5471a"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 24 Oct 2024 07:46:24 GMT"},{"key":"Server","value":"Apache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"6"},{"key":"Access-Control-Expose-Headers","value":"X-Pagination-Per-Page, X-Pagination-Total-Count, X-Pagination-Current-Page, X-Pagination-Page-Count"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"https://www.carvelo.ch"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, X-Requested-With"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"00969302-180d-487a-c962-6ed44af5471a\",\n    \"deleted\": 0,\n    \"deactivated\": 0,\n    \"backup\": 0,\n    \"nextId\": null,\n    \"longterm\": 0,\n    \"outage\": 0,\n    \"outage_blocked_till\": null,\n    \"creator\": \"f7657e20-100a-4757-ba7a-09fa98741257\",\n    \"created_at\": \"2023-07-01 12:01:49\",\n    \"updated_at\": \"2024-10-24 04:11:36\",\n    \"identifier\": \"Niederholz-Express\",\n    \"serialnumber\": \"WRJ2TR1M3ND210746\",\n    \"keynumber\": \"X532321\",\n    \"bookskey\": \"647\",\n    \"padlock_id\": \"\",\n    \"carvelobox\": \"\",\n    \"rxtrackernr\": \"1222063464\",\n    \"latitude\": 47.569405,\n    \"longitude\": 7.6333983333333,\n    \"pos_updated_at\": \"2024-10-22 18:07:03\",\n    \"battery\": 30,\n    \"bat_updated_at\": \"2024-10-22 18:07:18\",\n    \"totaldistance\": 1796,\n    \"totalusage\": 11131,\n    \"launchdate\": \"2023-07-01 00:00:00\",\n    \"sponsor\": \"e33e78fe-83d1-4ef0-b729-e5f8595e0d20\",\n    \"servicepartner\": \"8e816cd2-97f1-4c3e-8c25-2fcbec1d821b\",\n    \"remarks\": \"neues Carvelo Ersatz für ID 334\",\n    \"bike\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n    \"host\": \"aee71808-3655-455e-97fb-bbe7bd717998\",\n    \"network\": \"9ee76663-a24c-4366-ff79-dea92db386c8\"\n}"}],"_postman_id":"e7b6e448-cc28-442e-ad11-a4719665410d"},{"name":"type","id":"4d0e84ce-a213-4713-bd12-ef4f3385eb11","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.carvelo.ch/v3/bike/98aac148-47b8-47df-a6e0-804a4da5f27e","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}},"urlObject":{"path":["v3","bike","98aac148-47b8-47df-a6e0-804a4da5f27e"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[{"id":"fd9cbb3f-d76f-4a74-a27f-6197421a0e0e","name":"type","originalRequest":{"method":"GET","header":[],"url":"https://api.carvelo.ch/v3/bike/98aac148-47b8-47df-a6e0-804a4da5f27e"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 24 Oct 2024 07:48:32 GMT"},{"key":"Server","value":"Apache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"6"},{"key":"Access-Control-Expose-Headers","value":"X-Pagination-Per-Page, X-Pagination-Total-Count, X-Pagination-Current-Page, X-Pagination-Page-Count"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"https://www.carvelo.ch"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, X-Requested-With"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n    \"link\": \"https://www.carvelo.ch/en/vehicles/transporter-65/\",\n    \"image\": \"https://api.carvelo.ch/uploads/bike/404e5a58-f70f-4c36-c111-d1f787305748.jpg\",\n    \"thumb\": \"https://api.carvelo.ch/uploads/bike/404e5a58-f70f-4c36-c111-d1f787305748_thumb.jpg\",\n    \"make\": \"Riese & Müller\",\n    \"model\": \"Transporter 65\",\n    \"type\": \"cargo\",\n    \"showInList\": 0,\n    \"isElectric\": 1,\n    \"maxSpeed\": 25,\n    \"maxPayload\": 100,\n    \"overallLength\": 244,\n    \"cargoAreaWidth\": 65,\n    \"cargoAreaLength\": 65,\n    \"childSeat\": 1,\n    \"childSeatNumber\": 2,\n    \"remarks\": \"\"\n}"}],"_postman_id":"4d0e84ce-a213-4713-bd12-ef4f3385eb11"},{"name":"bikefiltertypes","id":"5b4427ef-30dc-47c4-be55-bce0d8a823b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.carvelo.ch/v3/external/bikefiltertypes","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}},"urlObject":{"path":["v3","external","bikefiltertypes"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[{"id":"5d717bc7-336d-49b5-ac5c-14a39c747161","name":"type","originalRequest":{"method":"GET","header":[],"url":"https://api.carvelo.ch/v3/bike/98aac148-47b8-47df-a6e0-804a4da5f27e"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 24 Oct 2024 07:48:32 GMT"},{"key":"Server","value":"Apache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"6"},{"key":"Access-Control-Expose-Headers","value":"X-Pagination-Per-Page, X-Pagination-Total-Count, X-Pagination-Current-Page, X-Pagination-Page-Count"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"https://www.carvelo.ch"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, X-Requested-With"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n    \"link\": \"https://www.carvelo.ch/en/vehicles/transporter-65/\",\n    \"image\": \"https://api.carvelo.ch/uploads/bike/404e5a58-f70f-4c36-c111-d1f787305748.jpg\",\n    \"thumb\": \"https://api.carvelo.ch/uploads/bike/404e5a58-f70f-4c36-c111-d1f787305748_thumb.jpg\",\n    \"make\": \"Riese & Müller\",\n    \"model\": \"Transporter 65\",\n    \"type\": \"cargo\",\n    \"showInList\": 0,\n    \"isElectric\": 1,\n    \"maxSpeed\": 25,\n    \"maxPayload\": 100,\n    \"overallLength\": 244,\n    \"cargoAreaWidth\": 65,\n    \"cargoAreaLength\": 65,\n    \"childSeat\": 1,\n    \"childSeatNumber\": 2,\n    \"remarks\": \"\"\n}"}],"_postman_id":"5b4427ef-30dc-47c4-be55-bce0d8a823b1"}],"id":"d8e16d9f-8ee5-404b-aafd-5c740b4291cf","_postman_id":"d8e16d9f-8ee5-404b-aafd-5c740b4291cf","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}}},{"name":"Rent","item":[{"name":"index","event":[{"listen":"prerequest","script":{"id":"714d3102-13e0-44c1-8645-8d3f217b7fd1","exec":[""],"type":"text/javascript","packages":{}}},{"listen":"test","script":{"id":"335b9221-4aeb-4940-9651-ed97c2e3e2ff","exec":["// Stores the rent id in a collection variable\r","pm.collectionVariables.set(\"rentId\", pm.response.json()[0].id);"],"type":"text/javascript","packages":{}}}],"id":"5d432073-24b5-45e2-9a28-80603e24327d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept-Language","value":"de","type":"text"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.carvelo.ch/v3/rent?search[state]=reserved&page=1&per-page=5","description":"<p>Pagination applies to the rent listing. The pagination is done with the query-param “page”. ?page=1 is implicitly supposed. In the response header you find the total found bookings, pages and page sizes. You can adapt the page-size by setting the optional param “per-page”, standard is 5.</p>\n<p>An offered rent will be deleted after 3 mins. A reserved rent is a reservation (future booking including the actually running one). A realised rent is billed (past booking). An unrealised rent is a deleted rent. The blocked rent state is used in the case of an outage of the bike instance. It means, that the rent still exists but can’t be changed by the user</p>\n<p>In the BookingObject, you also get</p>\n<ul>\n<li><p>Bool hasBox</p>\n</li>\n<li><p>Bool hasLockCode</p>\n</li>\n<li><p>String lockCode</p>\n</li>\n</ul>\n<p>If there is a lockCode, then show that code to the user. If hasLockCode but code is null, show message that the code is received 5 minutes before rent.</p>\n<p>If hasBox is true, but hasLockCode is false, then the user can use the call openbox starting 5 mins before the rent begins. Carefull, this call opens a locked box in realtime and should only be used, when the user confirms he is on spot.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}},"urlObject":{"path":["v3","rent"],"host":["https://api.carvelo.ch"],"query":[{"description":{"content":"<p>Rent states are 'offered', 'reserved', 'realised', 'unrealised', 'blocked'. So you can filter for the rrent states.</p>\n","type":"text/plain"},"key":"search[state]","value":"reserved"},{"key":"page","value":"1"},{"key":"per-page","value":"5"}],"variable":[]}},"response":[],"_postman_id":"5d432073-24b5-45e2-9a28-80603e24327d"},{"name":"getbookings","event":[{"listen":"prerequest","script":{"id":"714d3102-13e0-44c1-8645-8d3f217b7fd1","exec":[""],"type":"text/javascript","packages":{}}}],"id":"21435a6d-6ee2-4987-b807-465436786812","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept-Language","value":"de","type":"text"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.carvelo.ch/v3/rent/getbookings","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}},"urlObject":{"path":["v3","rent","getbookings"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[],"_postman_id":"21435a6d-6ee2-4987-b807-465436786812"},{"name":"getbooking","event":[{"listen":"prerequest","script":{"id":"714d3102-13e0-44c1-8645-8d3f217b7fd1","exec":[""],"type":"text/javascript","packages":{}}}],"id":"4467e45b-a7f8-4e73-a0fa-de89331da748","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept-Language","value":"de","type":"text"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.carvelo.ch/v3/rent/6a43cdea-a871-42d0-b9db-43158a73eb44","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}},"urlObject":{"path":["v3","rent","6a43cdea-a871-42d0-b9db-43158a73eb44"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[],"_postman_id":"4467e45b-a7f8-4e73-a0fa-de89331da748"},{"name":"offerrent","event":[{"listen":"prerequest","script":{"id":"714d3102-13e0-44c1-8645-8d3f217b7fd1","exec":["// set begin and end to morning dates next year\r","const moment = require(\"moment\");\r","var nowDate = new Date();\r","var dfBegin = \"ddd MMM DD YYYY 14:30:00 ZZ\";\r","var dfEnd = \"ddd MMM DD YYYY 15:00:00 ZZ\";\r","\r","nextYear = nowDate.setFullYear(nowDate.getFullYear()+1);\r","pm.collectionVariables.set(\"rentBegin\", moment(nextYear).format(dfBegin));\r","pm.collectionVariables.set(\"rentEnd\", moment(nextYear).format(dfEnd));"],"type":"text/javascript","packages":{}}},{"listen":"test","script":{"id":"8d9e91c1-8702-4b55-a875-18d2e3e246dd","exec":["// Stores the offer id in a collection variable\r","pm.collectionVariables.set(\"offerId\", pm.response.json().id);"],"type":"text/javascript","packages":{}}}],"id":"fee627a9-f2d6-453b-8706-3468e0791856","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept-Language","value":"de","type":"text"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"starttime","value":"","type":"text","description":"<p>The start time of the rent formatted as \"ddd MMM DD YYYY HH:mm:ss ZZ\".</p>\n"},{"key":"endtime","value":"","type":"text","description":"<p>The end time of the rent formatted as \"ddd MMM DD YYYY HH:mm:ss ZZ\".</p>\n"},{"key":"insuranceselected","value":"0","description":"<p>Binary value, set 1 for offer including insurance.</p>\n","type":"text","disabled":true},{"key":"voucherId","value":"","description":"<p>If a voucher applies, submit the voucher id</p>\n","type":"text","disabled":true}]},"url":"https://api.carvelo.ch/v3/rent/offerrent/00969302-180d-487a-c962-6ed44af5471a","description":"<p>Before you can offer a bike rent you should retrieve the system info. Therefore you best call external/gethosts to get the details about the host locations, their opening hours and closing times. You can book a bike during a period the host isn't open, but you can only retrieve and return the bike during the opening hours of a host.</p>\n<p>Second you might call external/getbikes to get the bike details. Once you know what bike you want to book, remember the bike id and set it in offerrent. https://api.carvelo.ch/v3/rent/offerrent/{bikeId}</p>\n<p>In the resulting offer you might check the price offered. The rent offer id retrieved is required in the following calls, either you adapt the params and update the offer with updateoffer/{offerId}, or then you register the offer with registeroffer/{offerId}.</p>\n<p>There is a prereservation on you offer. An offer is valid within 3 minutes. The validity is extended, every time you update the offer. If you don't register an offer or an updated offer after 3 minutes, it is automatically removed and you have to start the offerent process again. If you don't need an offer, because the user closes the offer window, you should send a deleterent.</p>\n<p>There is a special use case on how to encode the rent date, if you book beyond the summer time. E.g. if you are actually in CEST and want to make a reservation in CET. The date format expected is \"ddd MMM DD YYYY HH:mm:ss ZZ\". Now, you should encode the date on the moment you book, not on the moment the bookings starts or ends. That means in this case, that ZZ is in CEST +0100.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}},"urlObject":{"path":["v3","rent","offerrent","00969302-180d-487a-c962-6ed44af5471a"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[{"id":"96797dd8-85c5-41f4-ba68-92633d764f6f","name":"offerrent","originalRequest":{"method":"POST","header":[{"key":"Accept-Language","value":"de","type":"text"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"starttime","value":"","type":"text"},{"key":"endtime","value":"","type":"text"},{"key":"insuranceselected","value":"0","description":"Binary value, set 1 for offer including insurance.","type":"text"},{"key":"voucherId","value":"","description":"If a voucher applies, submit the voucher id","type":"text","disabled":true}]},"url":"https://api.carvelo.ch/v3/rent/offerrent/00969302-180d-487a-c962-6ed44af5471a"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 18 Oct 2024 09:35:04 GMT"},{"key":"Server","value":"Apache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"6"},{"key":"Access-Control-Expose-Headers","value":"X-Pagination-Per-Page, X-Pagination-Total-Count, X-Pagination-Current-Page, X-Pagination-Page-Count"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"https://www.carvelo.ch"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, X-Requested-With"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"5a4c3eb0-e188-45e1-88ee-5520a03ed33b\",\n    \"deleted\": null,\n    \"deactivated\": null,\n    \"creator\": \"*****************************************\",\n    \"hasClientFeedback\": null,\n    \"hasHostFeedback\": null,\n    \"frontendBooking\": null,\n    \"user\": \"*****************************************\",\n    \"userfullname\": \"*****************************************\",\n    \"userphone\": \"*****************************************\",\n    \"instance\": \"f39361f8-9557-45f3-d729-678ec6b9cfaa\",\n    \"instanceidentifier\": \"Glou Glou Wagon\",\n    \"haslockcode\": false,\n    \"hasbox\": false,\n    \"boxdoor\": null,\n    \"lockcode\": null,\n    \"bike\": {\n        \"id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n        \"link\": \"https://www.carvelo.ch/en/vehicles/packster-60-2020/\",\n        \"image\": \"https://api.carvelo.ch/uploads/bike/91ed4ce1-b128-44f9-b0b9-98b1dcc89d45.jpg\",\n        \"thumb\": \"https://api.carvelo.ch/uploads/bike/91ed4ce1-b128-44f9-b0b9-98b1dcc89d45_thumb.jpg\",\n        \"make\": \"Riese & Müller\",\n        \"model\": \"Packster 60 2020\",\n        \"type\": \"cargo\",\n        \"showInList\": 0,\n        \"isElectric\": 1,\n        \"maxSpeed\": 25,\n        \"maxPayload\": 100,\n        \"overallLength\": 250,\n        \"cargoAreaWidth\": 60,\n        \"cargoAreaLength\": 64.5,\n        \"childSeat\": 1,\n        \"childSeatNumber\": 2,\n        \"remarks\": \"\"\n    },\n    \"hostid\": \"9515c94a-2622-4693-9f6a-fa021f25b05c\",\n    \"hostname\": \"169 West & Weststrasse GmbH\",\n    \"begin\": \"2025-10-18 10:30:00\",\n    \"end\": \"2025-10-18 12:00:00\",\n    \"state\": \"offered\",\n    \"fullPrice\": 11.35,\n    \"fullPriceWithoutInsurance\": 10.25,\n    \"discounts\": [\n        {\n            \"id\": \"6349624f-4552-4305-c5e3-1817a4325e19\",\n            \"name\": \"Annual subscription for TCS members\",\n            \"info\": \"TCS\",\n            \"type\": \"discount\",\n            \"formula\": \"p*0.5\",\n            \"validfrom\": \"*\",\n            \"validtill\": \"2037-09-13 14:24:30+0000\"\n        }\n    ],\n    \"discountValue\": 5.15,\n    \"discountPrice\": 5.1,\n    \"vouchers\": [],\n    \"voucherValue\": 0,\n    \"voucherPrice\": 5.1,\n    \"totalDiff\": 4.05,\n    \"insured\": 1,\n    \"insuranceValue\": 1.1,\n    \"rentalPrice\": 6.2,\n    \"insuredRentalPrice\": 6.2,\n    \"discountsList\": \"Annual subscription for TCS members\",\n    \"deleteable\": true,\n    \"deletefee\": 0,\n    \"changeable\": true,\n    \"created_at\": \"*****************************************\",\n    \"voucherExcess\": 0,\n    \"remaingMonthlyFreehours\": 0,\n    \"ownFreehoursConsumed\": null\n}"}],"_postman_id":"fee627a9-f2d6-453b-8706-3468e0791856"},{"name":"updateoffer","event":[{"listen":"prerequest","script":{"id":"714d3102-13e0-44c1-8645-8d3f217b7fd1","exec":["// change rent end\r","const moment = require(\"moment\");\r","var nowDate = new Date();\r","var dfBegin = \"ddd MMM DD YYYY 10:30:00 ZZ\";\r","var dfEnd = \"ddd MMM DD YYYY 11:30:00 ZZ\";\r","nextYear = nowDate.setFullYear(nowDate.getFullYear()+1);\r","pm.collectionVariables.set(\"rentBegin\", moment(nextYear).format(dfBegin));\r","pm.collectionVariables.set(\"rentEnd\", moment(nextYear).format(dfEnd));"],"type":"text/javascript","packages":{}}},{"listen":"test","script":{"id":"b878e408-4feb-4c68-87c6-09941937fc97","exec":["// Stores the offer id in a collection variable\r","pm.collectionVariables.set(\"offerId\", pm.response.json().id);"],"type":"text/javascript","packages":{}}}],"id":"3cb8d312-b0d2-4f5a-87e1-ffe8ef7a3c0e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept-Language","value":"de","type":"text"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"starttime","value":"","type":"text"},{"key":"endtime","value":"","type":"text"},{"key":"insuranceselected","value":"0","description":"<p>Binary value, set 1 for offer including insurance.</p>\n","type":"text"},{"key":"voucherId","value":"","description":"<p>If a voucher applies, submit the voucher id</p>\n","type":"text","disabled":true}]},"url":"https://api.carvelo.ch/v3/rent/updateoffer/6a43cdea-a871-42d0-b9db-43158a73eb44","description":"<p>Use this call, if you want to change an existing offer or rent. If you change an offer, the offerId remains the same as created in offerrent.</p>\n<p>If you update an existing rent, the offerId is newly created in this step, and you need to confirm the update in registeroffer, with the newsly created offerId.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}},"urlObject":{"path":["v3","rent","updateoffer","6a43cdea-a871-42d0-b9db-43158a73eb44"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[],"_postman_id":"3cb8d312-b0d2-4f5a-87e1-ffe8ef7a3c0e"},{"name":"registeroffer","event":[{"listen":"prerequest","script":{"id":"714d3102-13e0-44c1-8645-8d3f217b7fd1","exec":[""],"type":"text/javascript","packages":{}}},{"listen":"test","script":{"id":"a45ee81c-c510-47b9-961d-5b92444d85cb","exec":["// Stores the rent id in a collection variable\r","pm.collectionVariables.set(\"rentId\", pm.response.json().id);"],"type":"text/javascript","packages":{}}}],"id":"f02b0dec-e6b6-42c9-a1bb-d95bedeb6721","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept-Language","value":"de","type":"text"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.carvelo.ch/v3/rent/registeroffer/6a43cdea-a871-42d0-b9db-43158a73eb44","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}},"urlObject":{"path":["v3","rent","registeroffer","6a43cdea-a871-42d0-b9db-43158a73eb44"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[],"_postman_id":"f02b0dec-e6b6-42c9-a1bb-d95bedeb6721"},{"name":"deleterent","event":[{"listen":"prerequest","script":{"id":"714d3102-13e0-44c1-8645-8d3f217b7fd1","exec":[""],"type":"text/javascript","packages":{}}}],"id":"54077f3b-4b52-40de-835c-05fbb626107c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept-Language","value":"de","type":"text"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.carvelo.ch/v3/rent/6a43cdea-a871-42d0-b9db-43158a73eb44","description":"<p>If you delete an offer, no futher processes take place.</p>\n<p>If you delete a booked rent, the user is informed by email and cancel fees might apply. The rules are as following:</p>\n<ul>\n<li><p>If you delete a booking within 5 mins. after its registration, the cancelation is free.</p>\n</li>\n<li><p>If you cancel a rent earlier than 24 hours before it starts, the cancelation is free.</p>\n</li>\n<li><p>if you cancel a rent within 24 hours of the start of the rent, a cancel fee of CHF 5.- is applied.</p>\n</li>\n<li><p>An already started rent can't be canceled.</p>\n</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}},"urlObject":{"path":["v3","rent","6a43cdea-a871-42d0-b9db-43158a73eb44"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[],"_postman_id":"54077f3b-4b52-40de-835c-05fbb626107c"},{"name":"openbox","event":[{"listen":"prerequest","script":{"id":"714d3102-13e0-44c1-8645-8d3f217b7fd1","exec":[""],"type":"text/javascript","packages":{}}}],"id":"4aa1cd8f-9be8-4cc4-b71c-2e41d9a7ffe6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept-Language","value":"de","type":"text"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.carvelo.ch/v3/rent/openbox/6a43cdea-a871-42d0-b9db-43158a73eb44","description":"<p>Carefull, this call opens a locked box in realtime and should only be used, when the user confirms he is on spot.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}},"urlObject":{"path":["v3","rent","openbox","6a43cdea-a871-42d0-b9db-43158a73eb44"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[],"_postman_id":"4aa1cd8f-9be8-4cc4-b71c-2e41d9a7ffe6"},{"name":"vouchervalidation","event":[{"listen":"prerequest","script":{"id":"714d3102-13e0-44c1-8645-8d3f217b7fd1","exec":[""],"type":"text/javascript","packages":{}}}],"id":"b4e3a675-1f07-4e62-abf8-d2502c753bb6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept-Language","value":"de","type":"text"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.carvelo.ch/v3/rent/vouchervalidation?bikeInstanceId&voucherCode&rentId","description":"<p>Carefull, this call opens a locked box in realtime and should only be used, when the user confirms he is on spot.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}},"urlObject":{"path":["v3","rent","vouchervalidation"],"host":["https://api.carvelo.ch"],"query":[{"key":"bikeInstanceId","value":null},{"key":"voucherCode","value":null},{"key":"rentId","value":null}],"variable":[]}},"response":[],"_postman_id":"b4e3a675-1f07-4e62-abf8-d2502c753bb6"},{"name":"toggleinsurance","id":"e650a71b-ab86-43cd-afae-9f1442a4337a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.carvelo.ch/v3/rent/switch-insurance/6a43cdea-a871-42d0-b9db-43158a73eb44/{{voucherId}}","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}},"urlObject":{"path":["v3","rent","switch-insurance","6a43cdea-a871-42d0-b9db-43158a73eb44","{{voucherId}}"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[],"_postman_id":"e650a71b-ab86-43cd-afae-9f1442a4337a"},{"name":"resendBill","id":"107ea6d3-603d-4715-a536-232c02a4f29c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"email","value":"","description":"<p>Optional mail-address to send the rent bill to (if other than user correspondance mail)</p>\n","type":"text"},{"key":"firstname","value":"","description":"<p>Optional param</p>\n","type":"text"},{"key":"lastname","value":"","description":"<p>Optional param</p>\n","type":"text"}]},"url":"https://api.carvelo.ch/v3/rent/resendbill/6a43cdea-a871-42d0-b9db-43158a73eb44","description":"<p>Resends a bill for a specific rent. Bills are sent automatically, when the payment is done. This call sends a bill no matter what the payment status is.</p>\n<p>No bills are sent to business accounts and externally booking accounts.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}},"urlObject":{"path":["v3","rent","resendbill","6a43cdea-a871-42d0-b9db-43158a73eb44"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[],"_postman_id":"107ea6d3-603d-4715-a536-232c02a4f29c"}],"id":"272b24d1-bff8-4a56-a29a-841215f80d32","description":"<p>Booking and renting cargobikes are the main use of the carvelo API.</p>\n<p>To display the current and past bookings, call getbookings.</p>\n<p>To offer, adjust and register the offer, update and delete a rent, use the other calls in this section.</p>\n","_postman_id":"272b24d1-bff8-4a56-a29a-841215f80d32","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}}},{"name":"Feedback","item":[{"name":"feedback","id":"0d04fb98-f956-4c17-9dc8-e2212599c5c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.carvelo.ch/v3/feedback/6a43cdea-a871-42d0-b9db-43158a73eb44","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}},"urlObject":{"path":["v3","feedback","6a43cdea-a871-42d0-b9db-43158a73eb44"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[],"_postman_id":"0d04fb98-f956-4c17-9dc8-e2212599c5c5"},{"name":"addfeedback","event":[{"listen":"test","script":{"id":"939980f6-7cb4-4727-bc94-cee672a8ebb6","exec":["// Stores the feedback id in a collection variable\r","pm.collectionVariables.set(\"feedbackId\", pm.response.json().id);"],"type":"text/javascript","packages":{}}}],"id":"85fadc1c-0cce-4440-823c-c7502bf04efd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"message","value":"","type":"text"},{"key":"tooLate","value":"","type":"text","disabled":true},{"key":"howLate","value":"","type":"text","disabled":true},{"key":"rating","value":"","type":"text","disabled":true},{"key":"imageFile","type":"file","value":null,"disabled":true}]},"url":"https://api.carvelo.ch/v3/rent/feedback/client/6a43cdea-a871-42d0-b9db-43158a73eb44","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}},"urlObject":{"path":["v3","rent","feedback","client","6a43cdea-a871-42d0-b9db-43158a73eb44"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[],"_postman_id":"85fadc1c-0cce-4440-823c-c7502bf04efd"},{"name":"addimage","id":"9fa88fd1-f1b3-4a65-a7de-e984f1541288","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"imageFile","type":"file","value":null}]},"url":"https://api.carvelo.ch/v3/feedback/image-upload/","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}},"urlObject":{"path":["v3","feedback","image-upload",""],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[],"_postman_id":"9fa88fd1-f1b3-4a65-a7de-e984f1541288"}],"id":"04d3de12-e2e8-4177-bd15-61172442e3ed","description":"<p>User feedbacks to rents.</p>\n","_postman_id":"04d3de12-e2e8-4177-bd15-61172442e3ed","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]},"isInherited":true,"source":{"_postman_id":"05149e73-46b3-48b7-bde1-dae786b154cb","id":"05149e73-46b3-48b7-bde1-dae786b154cb","name":"Carvelo API","type":"collection"}}},{"name":"GBFS","item":[{"name":"v1","item":[{"name":"overview","id":"91abea11-7646-4ff7-9bb0-ede0822c402a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.carvelo.ch/v1/gbfs/gbfs.json","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{Auth Key}}"},{"key":"password","value":"{{Auth Pwd}}"}]},"isInherited":true,"source":{"_postman_id":"b826b5ce-c9b3-4eeb-9338-b7699f0b4880","id":"b826b5ce-c9b3-4eeb-9338-b7699f0b4880","name":"GBFS","type":"folder"}},"urlObject":{"path":["v1","gbfs","gbfs.json"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[{"id":"b2bb5fa3-f1de-4b7c-8758-6962dabdb926","name":"gbfs.json","originalRequest":{"method":"GET","header":[],"url":"https://api.carvelo.ch/v1/gbfs/gbfs.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 29 Aug 2024 13:39:13 GMT"},{"key":"Server","value":"Apache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"6"},{"key":"Access-Control-Expose-Headers","value":"X-Pagination-Per-Page, X-Pagination-Total-Count, X-Pagination-Current-Page, X-Pagination-Page-Count"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"https://www.carvelo.ch"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, X-Requested-With"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"last_updated\": 1724937419,\n    \"ttl\": 60,\n    \"version\": \"1.0\",\n    \"data\": {\n        \"en\": {\n            \"feeds\": [\n                {\n                    \"name\": \"system_information\",\n                    \"url\": \"https://api.carvelo2go.ch/external/gbfs/system_information.json\"\n                },\n                {\n                    \"name\": \"system_regions\",\n                    \"url\": \"https://api.carvelo2go.ch/external/gbfs/system_regions.json\"\n                },\n                {\n                    \"name\": \"station_information\",\n                    \"url\": \"https://api.carvelo2go.ch/external/gbfs/station_information.json\"\n                },\n                {\n                    \"name\": \"station_status\",\n                    \"url\": \"https://api.carvelo2go.ch/external/gbfs/station_status.json\"\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"91abea11-7646-4ff7-9bb0-ede0822c402a"}],"id":"f9dcb803-d4e1-4928-b006-525f9111fc8d","description":"<p>deprectated</p>\n","_postman_id":"f9dcb803-d4e1-4928-b006-525f9111fc8d","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{Auth Key}}"},{"key":"password","value":"{{Auth Pwd}}"}]},"isInherited":true,"source":{"_postman_id":"b826b5ce-c9b3-4eeb-9338-b7699f0b4880","id":"b826b5ce-c9b3-4eeb-9338-b7699f0b4880","name":"GBFS","type":"folder"}}},{"name":"v2","item":[{"name":"overview","id":"5248e7d5-7ce3-462f-aa00-e70ae89ddb30","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.carvelo.ch/v2/gbfs/gbfs.json","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{Auth Key}}"},{"key":"password","value":"{{Auth Pwd}}"}]},"isInherited":true,"source":{"_postman_id":"b826b5ce-c9b3-4eeb-9338-b7699f0b4880","id":"b826b5ce-c9b3-4eeb-9338-b7699f0b4880","name":"GBFS","type":"folder"}},"urlObject":{"path":["v2","gbfs","gbfs.json"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[{"id":"70cf78b1-2fda-47c9-96b3-ebada8c0afb9","name":"gbfs.json","originalRequest":{"method":"GET","header":[],"url":"https://api.carvelo.ch/v2/gbfs/gbfs.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 29 Aug 2024 13:42:08 GMT"},{"key":"Server","value":"Apache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"6"},{"key":"Access-Control-Expose-Headers","value":"X-Pagination-Per-Page, X-Pagination-Total-Count, X-Pagination-Current-Page, X-Pagination-Page-Count"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"https://www.carvelo.ch"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, X-Requested-With"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"last_updated\": 1724937419,\n    \"ttl\": 60,\n    \"version\": \"2.3\",\n    \"data\": {\n        \"en\": {\n            \"feeds\": [\n                {\n                    \"name\": \"gbfs_versions\",\n                    \"url\": \"https://api.carvelo2go.ch/v2/gbfs/gbfs_versions.json\"\n                },\n                {\n                    \"name\": \"system_information\",\n                    \"url\": \"https://api.carvelo2go.ch/v2/gbfs/system_information.json\"\n                },\n                {\n                    \"name\": \"vehicle_types\",\n                    \"url\": \"https://api.carvelo2go.ch/v2/gbfs/vehicle_types.json\"\n                },\n                {\n                    \"name\": \"system_pricing_plans\",\n                    \"url\": \"https://api.carvelo2go.ch/v2/gbfs/system_pricing_plans.json\"\n                },\n                {\n                    \"name\": \"system_regions\",\n                    \"url\": \"https://api.carvelo2go.ch/v2/gbfs/system_regions.json\"\n                },\n                {\n                    \"name\": \"station_information\",\n                    \"url\": \"https://api.carvelo2go.ch/v2/gbfs/station_information.json\"\n                },\n                {\n                    \"name\": \"station_status\",\n                    \"url\": \"https://api.carvelo2go.ch/v2/gbfs/station_status.json\"\n                },\n                {\n                    \"name\": \"free_bike_status\",\n                    \"url\": \"https://api.carvelo2go.ch/v2/gbfs/free_bike_status.json\"\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"5248e7d5-7ce3-462f-aa00-e70ae89ddb30"},{"name":"system information","id":"19734268-1518-4e9d-a8bf-da62634637b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.carvelo.ch/v2/gbfs/system_information.json","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{Auth Key}}"},{"key":"password","value":"{{Auth Pwd}}"}]},"isInherited":true,"source":{"_postman_id":"b826b5ce-c9b3-4eeb-9338-b7699f0b4880","id":"b826b5ce-c9b3-4eeb-9338-b7699f0b4880","name":"GBFS","type":"folder"}},"urlObject":{"path":["v2","gbfs","system_information.json"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[{"id":"ac2a2d56-6f53-49f9-98e4-1c21c066e722","name":"system_information.json","originalRequest":{"method":"GET","header":[],"url":"https://api.carvelo.ch/v2/gbfs/system_information.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 29 Aug 2024 13:44:08 GMT"},{"key":"Server","value":"Apache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"6"},{"key":"Access-Control-Expose-Headers","value":"X-Pagination-Per-Page, X-Pagination-Total-Count, X-Pagination-Current-Page, X-Pagination-Page-Count"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"https://www.carvelo.ch"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, X-Requested-With"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"last_updated\": 1724939049,\n    \"ttl\": 60,\n    \"version\": \"2.3\",\n    \"data\": {\n        \"system_id\": \"carvelo\",\n        \"language\": \"en\",\n        \"name\": \"carvelo eCargo-Bike Sharing\",\n        \"short_name\": \"carvelo\",\n        \"operator\": \"Mobilitätsakademie AG des TCS\",\n        \"url\": \"https://www.carvelo.ch\",\n        \"start_date\": \"2015-09-25\",\n        \"phone_number\": \"058 827 34 14\",\n        \"email\": \"info@carvelo.ch\",\n        \"timezone\": \"Europe/Zurich\",\n        \"rental_apps\": {\n            \"android\": {\n                \"store_uri\": \"https://play.google.com/store/apps/details?id=ch.carvelo2go.app\",\n                \"discovery_uri\": \"ch.carvelo2go.app://\"\n            },\n            \"ios\": {\n                \"store_uri\": \"https://itunes.apple.com/ch/app/carvelo2go/id1272672674?mt=8\",\n                \"discovery_uri\": \"ch.carvelo2go.ios://\"\n            }\n        }\n    }\n}"}],"_postman_id":"19734268-1518-4e9d-a8bf-da62634637b3"},{"name":"vehicle types","id":"db77e17a-1bb4-475c-b3dd-ce50651d771b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.carvelo.ch/v2/gbfs/vehicle_types.json","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{Auth Key}}"},{"key":"password","value":"{{Auth Pwd}}"}]},"isInherited":true,"source":{"_postman_id":"b826b5ce-c9b3-4eeb-9338-b7699f0b4880","id":"b826b5ce-c9b3-4eeb-9338-b7699f0b4880","name":"GBFS","type":"folder"}},"urlObject":{"path":["v2","gbfs","vehicle_types.json"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[{"id":"d534e4bd-ebe3-4ba0-a607-30f54a91050d","name":"vehicle_types.json","originalRequest":{"method":"GET","header":[],"url":"https://api.carvelo.ch/v2/gbfs/vehicle_types.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 29 Aug 2024 13:53:03 GMT"},{"key":"Server","value":"Apache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"6"},{"key":"Access-Control-Expose-Headers","value":"X-Pagination-Per-Page, X-Pagination-Total-Count, X-Pagination-Current-Page, X-Pagination-Page-Count"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"https://www.carvelo.ch"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, X-Requested-With"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"last_updated\": 1724939584,\n    \"ttl\": 60,\n    \"version\": \"2.3\",\n    \"data\": {\n        \"vehicle_types\": [\n            {\n                \"vehicle_type_id\": \"eed6c8c3-9c2a-4ea2-cca8-e326821f9229\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"cargo_load_capacity\": 100,\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"Babboe Big-E\",\n                \"wheel_count\": 3,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/d1e261fc-ec15-48f0-a13d-d030a6725c8d_thumb.jpg\",\n                \"make\": \"Babboe\",\n                \"model\": \"Big-E\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"3b9db0a6-f096-470a-d924-412a8eb00c4d\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"Bakfiets E-Bigbox\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/312d9170-e82c-4f94-b948-f145dbb7f8c0_thumb.jpg\",\n                \"make\": \"Bakfiets\",\n                \"model\": \"E-Bigbox\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"b7e9d7d8-3ca2-4d13-d8eb-3700d675603c\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"cargo_load_capacity\": 50,\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"Benno Boost E \",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/c8bae8d7-393e-4f8f-93cd-9f6f76da8c38_thumb.jpg\",\n                \"make\": \"Benno\",\n                \"model\": \"Boost E\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"1db014be-2e0a-4bf9-a86e-3ceecff4f846\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"cargo_load_capacity\": 50,\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"Benno Boost E (mit Kindersitz oder Taschen)\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/cc40864e-9abb-4880-9008-a9c269289c8a_thumb.png\",\n                \"make\": \"Benno\",\n                \"model\": \"Boost E, mit Kindersitz oder Taschen\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"fa8c1485-0a0f-45a6-c484-9f619c88c88e\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"propulsion_type\": \"human\",\n                \"name\": \"Bullitt (ohne E-Motor)\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/adab1c37-7cb1-4220-ae66-7f7400aa27cd_thumb.jpg\",\n                \"make\": \"Larry vs. Harry\",\n                \"model\": \"Bullitt\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"c2bfb15f-7933-4d91-a8c0-de3f28eeb85d\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"Bullitt Therwil\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/10455917-34f1-4465-9457-ca878711860c_thumb.jpg\",\n                \"make\": \"Larry vs. Harry\",\n                \"model\": \"eBullitt\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"be5a769d-9614-4414-96fb-5e6e6420978f\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"cargo_load_capacity\": 100,\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"Butchers & Bicyles MK1-E\",\n                \"wheel_count\": 3,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/3a7871fa-1ba1-494e-d468-7af385a7e17c_thumb.jpg\",\n                \"make\": \"Butchers & Bicycles\",\n                \"model\": \"MK1-E\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"d2ac4247-bea3-4868-f62b-32865cc7061e\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"cargo_load_capacity\": 60,\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"C-3PO\",\n                \"wheel_count\": 3,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/2a88191d-4d07-4e6e-e73c-adff17741606_thumb.jpg\",\n                \"make\": \"\",\n                \"model\": \"Chike e-kids\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"b852b7a7-170e-4730-8732-d8291c29cc6e\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"Christiania P-Box-E\",\n                \"wheel_count\": 3,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/cc284e42-16b8-4446-e6e2-a929e437792f_thumb.jpg\",\n                \"make\": \"Christiania\",\n                \"model\": \"P-Box-E\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"fc2da109-7aab-4d28-8b9d-153bc7c535ff\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"Douze G4e BOX\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/c209a8ec-4e94-43a0-d946-8aeb8366d8d4_thumb.jpg\",\n                \"make\": \"Douze\",\n                \"model\": \"G4e BOX\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"f756ea72-540f-483b-897f-5dc27dc0ba82\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"cargo_load_capacity\": 70,\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"e-Muli\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/7dfd80c6-3fc6-4ad4-b791-654b24efffa4_thumb.jpg\",\n                \"make\": \"Muli\",\n                \"model\": \"Motor\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"ff1f128c-2cf8-4fbe-d101-e3b778b06292\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"eBullitt\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/8dd279c8-e46a-40d9-9187-8262d6285222_thumb.jpg\",\n                \"make\": \"eBullitt\",\n                \"model\": \"Clockwork \",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"ad95e4ff-bfc4-4636-85e4-241602cb1bd7\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"eBullitt DEFI VELO\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/14213aa2-16ee-4c9c-cab4-fab1941b7813_thumb.jpg\",\n                \"make\": \"eBullitt\",\n                \"model\": \"DEFI VELO\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"a3c200ac-5aa6-4dd7-c8ba-0d8b570291b8\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"eBullitt FREITAG Geroldstrasse\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/dc4728f5-4a16-43c9-a064-f681d6c2f993_thumb.jpg\",\n                \"make\": \"Larry vs. Harry\",\n                \"model\": \"eBullitt\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"b6fda5ab-0e44-4cf9-c5fa-729706b21c98\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"eBullitt FREITAG Grüngasse\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/30719119-aea0-4b7c-f5bb-e5b9efc4e342_thumb.jpg\",\n                \"make\": \"Larry vs. Harry\",\n                \"model\": \"eBullitt\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"73a010ad-0131-4c1f-bf9f-d7d2daac38b0\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"eBullitt Ibex\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/639ed44f-9014-452e-b2b5-2590a719c84e_thumb.jpg\",\n                \"make\": \"Ibex\",\n                \"model\": \"eBullitt\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"abfb807c-7def-425b-8a4a-0bec4f72616c\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"eBullitt Pro Velo Bern\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/2ffbca2f-8019-4e9c-a495-3a0c0ce9b342_thumb.jpg\",\n                \"make\": \"Ibex\",\n                \"model\": \"eBullitt\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"ccbaefcd-2c87-45d3-cb7f-0ebc557277a0\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"propulsion_type\": \"human\",\n                \"name\": \"Johnny Loco Cargo Cruiser\",\n                \"wheel_count\": 3,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/588ac3fa-34ba-4c46-eee4-f78c0fbcc7f0_thumb.jpg\",\n                \"make\": \"Johnny Loco\",\n                \"model\": \"Cargo Cruiser\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"79d23acb-04b8-45ea-a938-0cd2e56a9f6a\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"Kettler Cargoline FS 800\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/5d9e3308-8a11-445c-92ad-42c02e96c06d_thumb.jpg\",\n                \"make\": \"Kettler\",\n                \"model\": \"Cargoline FS 800\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"0e74f40b-3d2d-4a4f-95ab-be60103bd532\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"propulsion_type\": \"human\",\n                \"name\": \"Omnium Cargo\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/bdb4215c-043e-4488-cd2f-2638fad4cba3_thumb.jpg\",\n                \"make\": \"Omnium\",\n                \"model\": \"Cargo\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"7dd1ca4b-3131-40d1-fcec-7c97e6d10d01\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"Outdoor-Game-Bike\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/2e3574b9-7720-44da-d3e2-1279e726ec16_thumb.jpg\",\n                \"make\": \"Riese & Müller\",\n                \"model\": \"Packster 60 mit Outdoor-Spiel-Koffer\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"65950d8f-2a63-4138-a1e0-0c7c20c9039c\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"cargo_load_capacity\": 60,\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"P40 mit Turtle\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/efc3d70f-81ed-4b96-a3d7-5c1fe7c26db7_thumb.jpg\",\n                \"make\": \"Riese & Müller\",\n                \"model\": \"Packster 40 + B-Turtle Anhänger\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"276ba050-226a-4eda-bda0-1908e6b2e732\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"P70 mit Turtle\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/050bf9bc-e9b1-42b4-d93e-be0f90b2f358_thumb.jpg\",\n                \"make\": \"Riese & Müller\",\n                \"model\": \"Packster 70 + B-Turtle Anhänger\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"3fc754f2-c735-4966-d7b8-f637aeb5cec8\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"Packster 60 2018 Oberfeld\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/41074fdd-7642-4d03-b496-4e850a5214c9_thumb.jpg\",\n                \"make\": \"Riese und Müller\",\n                \"model\": \"Packster 60 2018\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"4e9334cc-9ad4-4a79-a267-38442f04897d\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"Packster 60 mit Kindervelo-Anhänger\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/cd34d11a-84e9-4b0e-d456-592f24f296be_thumb.jpg\",\n                \"make\": \"Riese & Müller\",\n                \"model\": \"Packster 60 mit Kindervelo-Anhänger\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"4bb67351-c666-4c27-af75-ae61dffeabbf\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"Packster 80 Weiherhof\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/5cb0c208-d8b9-4f1d-d513-779a62ed1655_thumb.jpg\",\n                \"make\": \"Riese & Müller\",\n                \"model\": \"Packster 80\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"757e57b8-1dc6-4ccc-9052-e5d6bd130f85\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"Riese & Müller Load 60 Vario\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/08828a39-393c-4a40-be52-022daa1e9fcb_thumb.jpg\",\n                \"make\": \"Riese & Müller\",\n                \"model\": \"Load 60 Vario\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"abd7bfa8-b746-4c87-c82e-feec4d9852b2\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"Riese & Müller LOAD 75 vario\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/7b7618c1-d246-47f9-ee29-3f7f4cb3aeae_thumb.jpg\",\n                \"make\": \"Riese & Müller\",\n                \"model\": \" LOAD 75 vario\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"8aa8ae11-7743-4672-ef0a-f6a5cfb412eb\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"cargo_load_capacity\": 190,\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"Riese & Müller Multitinker vario\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/020f7e1a-4ca7-4ff1-8d6a-5c18eab1da10_thumb.jpg\",\n                \"make\": \"Riese & Müller\",\n                \"model\": \"Multitinker vario\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"7b1a1d90-c69f-4140-ed32-26a1af44e889\",\n                \"form_factor\": \"bicycle\",\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"Riese & Müller Nevo\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/3c5a9eb6-1fe1-426f-b3e9-98b0e41c73f1_thumb.jpg\",\n                \"make\": \"Riese & Müller\",\n                \"model\": \"Nevo\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"9a5c55b2-71bd-44de-9c92-4a10cad1fea3\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"cargo_load_capacity\": 60,\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"Riese & Müller Packster 40\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/8a67efff-0dc4-4abc-b2d6-e12d23720dbe_thumb.jpg\",\n                \"make\": \"Riese & Müller Packster 40\",\n                \"model\": \"MIT Kindersitz\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"2a20b4ac-8a5d-42e0-b94a-a1a72b72a326\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"Riese & Müller Packster 40 - NO CHILD SEAT\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/e727c68a-577e-4289-d0bb-badd83460cb4_thumb.jpg\",\n                \"make\": \"Riese & Müller\",\n                \"model\": \"with Box, NO CHILD SEAT\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"a251b0ef-2f65-4732-cea1-ab7def135e0e\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"Riese & Müller Packster 60 Touring HS\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/41074fdd-7642-4d03-b496-4e850a5214c9_thumb.jpg\",\n                \"make\": \"Riese & Müller\",\n                \"model\": \"Touring HS (45 km/h)\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"d36ea486-19c4-4ba7-e01a-84fba632220f\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"cargo_load_capacity\": 100,\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"Riese & Müller Packster 60, Modell 2018\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/41074fdd-7642-4d03-b496-4e850a5214c9_thumb.jpg\",\n                \"make\": \"Riese & Müller\",\n                \"model\": \"Packster 60 2018\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"cargo_load_capacity\": 100,\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"Riese & Müller Packster 60, Modell 2020\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/91ed4ce1-b128-44f9-b0b9-98b1dcc89d45_thumb.jpg\",\n                \"make\": \"Riese & Müller\",\n                \"model\": \"Packster 60 2020\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"8f51b123-3168-4036-ab5a-7cdb83daa0bd\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"Riese & Müller Packster 60, Modell 2020 0\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/91ed4ce1-b128-44f9-b0b9-98b1dcc89d45_thumb.jpg\",\n                \"make\": \"Riese & Müller\",\n                \"model\": \"Packster 60 2020\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"8e2dbacd-485e-485b-cc85-6dd08bd1ac59\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"Riese & Müller Packster 60, Modell 2020 Spez.\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/91ed4ce1-b128-44f9-b0b9-98b1dcc89d45_thumb.jpg\",\n                \"make\": \"Riese & Müller\",\n                \"model\": \"Packster 60 2020\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"7402e01d-f4f5-46a1-a0ef-03063d3cb4c4\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"cargo_load_capacity\": 100,\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"Riese & Müller Packster 60, OHNE Kindersitze\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/9d854494-1e11-4503-c3d9-2c27b3c6af26_thumb.jpg\",\n                \"make\": \"Riese & Müller\",\n                \"model\": \"Packster 60 2020 OHNE Kindersitze\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"40198dbc-125e-4254-80ce-c93feceb3813\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"cargo_load_capacity\": 200,\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"Riese & Müller Packster 70, Modell 2024\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/f4b46926-600d-4da6-d89d-e121688308f8_thumb.jpg\",\n                \"make\": \"Riese & Müller\",\n                \"model\": \"Packster 70\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"716d9b9e-b835-4737-efe4-c18589b80440\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"cargo_load_capacity\": 140,\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"Riese & Müller Packster 80\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/f5174d65-b35c-409f-ac39-72c32f1187ea_thumb.jpg\",\n                \"make\": \"Riese & Müller\",\n                \"model\": \"Packster 80\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"327901d2-9127-41e1-af81-85c488154d6b\",\n                \"form_factor\": \"bicycle\",\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"Riese & Müller Tinker\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/8310486d-8972-4e03-b12a-fe2230ab833e_thumb.jpg\",\n                \"make\": \"Riese & Müller\",\n                \"model\": \"Tinker\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"cargo_load_capacity\": 150,\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"Riese & Müller Transporter 65, Modell 2023\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/404e5a58-f70f-4c36-c111-d1f787305748_thumb.jpg\",\n                \"make\": \"Riese & Müller\",\n                \"model\": \"Transporter 65\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"8e4b6626-26b1-48c0-cc51-f83000decb88\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"cargo_load_capacity\": 150,\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"Riese & Müller Transporter 85, Modell 2023\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/1e703ea6-573b-4514-c24e-00094817a77e_thumb.jpg\",\n                \"make\": \"Riese & Müller\",\n                \"model\": \"Transporter 85 Utility Box\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"d6ea8cca-0ad9-44cf-d730-df285b7918b9\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"cargo_load_capacity\": 80,\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"Riese&Müller Load Hybrid Nuvinci\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/2a83f066-bd17-4b10-8a8a-0c932ab9c6ef_thumb.jpg\",\n                \"make\": \"Riese & Müller\",\n                \"model\": \"Load Hybrid Nuvinci\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"cdf3305e-aa73-4211-b912-b0de7afe0839\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"Riese&Müller Load Nuvinci\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/d19cc0a5-505e-49e8-c971-dd12f2b9e577_thumb.jpg\",\n                \"make\": \"Riese & Müller\",\n                \"model\": \"Load Nuvinci\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"a0293f35-40ee-4758-8412-0a3d3f50a0e4\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"Riese&Müller Load Sport\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/7f1163b4-625f-44d7-b3ce-dd1b9fd65dfe_thumb.jpg\",\n                \"make\": \"Riese & Müller\",\n                \"model\": \"Sport\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"c8bcd8c8-ebcc-476d-8e42-01d86514d88e\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"cargo_load_capacity\": 200,\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"Riese&Müller Load touring HS\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/871f9324-2acd-4efa-fa1c-73d05374fbbd_thumb.jpg\",\n                \"make\": \"Riese & Müller\",\n                \"model\": \"Load touring HS (45 km/h)\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"941be276-0601-40aa-d834-9259d8af185f\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"Riese&Müller Packster 60\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/41074fdd-7642-4d03-b496-4e850a5214c9_thumb.jpg\",\n                \"make\": \"Riese & Müller\",\n                \"model\": \"Packster 60\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"a1d35d3b-1c93-44df-9b49-b326996bbd02\",\n                \"form_factor\": \"bicycle\",\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"SigiMotion blau\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/d7e81e88-f4b8-41ae-890a-4f7abf1b9578_thumb.png\",\n                \"make\": \"Price\",\n                \"model\": \"e-Xpress Rahmengrösse L\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"949bfe5f-6651-4e6c-ff9f-7f706dccaa61\",\n                \"form_factor\": \"bicycle\",\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"SigiMotion weiss\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/d0aeeb3a-4179-4ad0-cce3-791d98fc605c_thumb.png\",\n                \"make\": \"Price\",\n                \"model\": \"e-Xpress Rahmengrösse M\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"651f1ba2-2e3c-4f97-8ed9-988327c16db0\",\n                \"form_factor\": \"car\",\n                \"cargo_load_capacity\": 1100,\n                \"propulsion_type\": \"electric\",\n                \"max_range_meters\": 100000,\n                \"name\": \"Smargo\",\n                \"wheel_count\": 4,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/bc2fd18e-766b-4418-e9a5-66fc3cec19c6_thumb.png\",\n                \"make\": \"Smargo\",\n                \"model\": \"Goupil G4\",\n                \"default_pricing_plan_id\": \"b23fccfc-22f8-49d6-a681-a735cad6f046\"\n            },\n            {\n                \"vehicle_type_id\": \"e0f8a72e-4b63-4b35-c141-171593f0c06a\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"SUP-Bike\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/541e0db1-49d1-4898-cc50-e420a0f0bf5e_thumb.jpg\",\n                \"make\": \"Riese & Müller\",\n                \"model\": \"Packster 60 mit Stand Up Paddle\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"4ffca237-0c60-4cec-c54e-28b50c56aefe\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"cargo_load_capacity\": 150,\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"Transporter 65, Siedlung Wolfbühl\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/404e5a58-f70f-4c36-c111-d1f787305748_thumb.jpg\",\n                \"make\": \"Riese und Müller\",\n                \"model\": \"Transporter 65\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"dbbff2b0-4ddd-4aef-eb71-b00c01d4763f\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"cargo_load_capacity\": 80,\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"Urban Arrow\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/5ce8e184-28e4-43c3-b1e1-6e819d3d9f16_thumb.jpg\",\n                \"make\": \"Urban Arrow\",\n                \"model\": \"Family\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"34cb33d7-9dc0-4c06-a914-aae04441661d\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"cargo_load_capacity\": 125,\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"Urban Arrow - \\tFamily Performance Line Plus\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/0bba5dde-5255-4280-a7c4-79e90f9cd716_thumb.png\",\n                \"make\": \"Urban Arrow\",\n                \"model\": \"Family Performance Line Plus\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"30455af0-cfeb-457e-e74c-ba2c2582cf83\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"Urban Arrow Cargo XL ONDECK\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/f0524667-0665-409b-a432-6aa4dc72ee69_thumb.png\",\n                \"make\": \"Urban Arrow\",\n                \"model\": \"Cargo XL ONDECK\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"5ced8ca7-ac01-494b-aa91-8e66bad1ed42\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"cargo_load_capacity\": 80,\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"Urban Arrow ohne Kindersitze\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/5ce8e184-28e4-43c3-b1e1-6e819d3d9f16_thumb.jpg\",\n                \"make\": \"Urban Arrow\",\n                \"model\": \"Family\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"46da82c9-187a-44be-cc94-d2ae1f08ebad\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"Urban Arrow VCS SG\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/28448d99-70b9-4c76-bc97-199cbaa0c5f7_thumb.jpg\",\n                \"make\": \"Urban Arrow\",\n                \"model\": \"Family\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"996eb2aa-7e08-40c7-aaa1-abeb1a0d9334\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"propulsion_type\": \"electric_assist\",\n                \"max_range_meters\": 100000,\n                \"name\": \"Yuba El Mundo\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/f30f94df-5828-4b5d-d04b-60adca470e27_thumb.jpg\",\n                \"make\": \"Yuba\",\n                \"model\": \"El Mundo\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            },\n            {\n                \"vehicle_type_id\": \"e5d6d48a-d7df-4100-a719-fabe5fcaf2fb\",\n                \"form_factor\": \"cargo_bicycle\",\n                \"propulsion_type\": \"human\",\n                \"name\": \"Zelt-Anhänger ohne Cargo-Bike\",\n                \"wheel_count\": 2,\n                \"default_reserve_time\": 30,\n                \"return_constraint\": \"roundtrip_station\",\n                \"vehicle_image\": \"https://api.carvelo.ch/uploads/bike/fac20603-e32d-4efd-ffd4-42e917912eca_thumb.jpg\",\n                \"make\": \"Zelt-Anhänger ohne Cargo-Bike\",\n                \"model\": \"Turtle\",\n                \"default_pricing_plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\"\n            }\n        ]\n    }\n}"}],"_postman_id":"db77e17a-1bb4-475c-b3dd-ce50651d771b"},{"name":"system pricing plans","id":"ddeac3a3-2f46-40cc-a939-27d5faa88d9d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.carvelo.ch/v2/gbfs/system_pricing_plans.json","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{Auth Key}}"},{"key":"password","value":"{{Auth Pwd}}"}]},"isInherited":true,"source":{"_postman_id":"b826b5ce-c9b3-4eeb-9338-b7699f0b4880","id":"b826b5ce-c9b3-4eeb-9338-b7699f0b4880","name":"GBFS","type":"folder"}},"urlObject":{"path":["v2","gbfs","system_pricing_plans.json"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[{"id":"0ec4f4a7-434c-406b-a6cc-3bc4932b3761","name":"system_pricing_plans.json","originalRequest":{"method":"GET","header":[],"url":"https://api.carvelo.ch/v2/gbfs/system_pricing_plans.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 29 Aug 2024 13:48:09 GMT"},{"key":"Server","value":"Apache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"6"},{"key":"Access-Control-Expose-Headers","value":"X-Pagination-Per-Page, X-Pagination-Total-Count, X-Pagination-Current-Page, X-Pagination-Page-Count"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"https://www.carvelo.ch"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, X-Requested-With"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"last_updated\": 1724939290,\n    \"ttl\": 60,\n    \"version\": \"2.3\",\n    \"data\": {\n        \"plans\": [\n            {\n                \"plan_id\": \"efee4075-81aa-4707-de2e-e0b087e66c49\",\n                \"name\": \"Simple Daytime Rate\",\n                \"currency\": \"CHF\",\n                \"price\": 5,\n                \"is_taxable\": false,\n                \"description\": \"5 unlock fee, 3.50 per day time hour (from 8 till 22), 0.00 per night time hour (from 22 till 8)\",\n                \"per_min_pricing\": [\n                    {\n                        \"start\": 0,\n                        \"rate\": 3.5,\n                        \"interval\": 60\n                    }\n                ]\n            },\n            {\n                \"plan_id\": \"b23fccfc-22f8-49d6-a681-a735cad6f046\",\n                \"name\": \"Smargo Daytime Rate\",\n                \"currency\": \"CHF\",\n                \"price\": 5,\n                \"is_taxable\": false,\n                \"description\": \"5 unlock fee, 5.00 per day time hour (from 8 till 22), 0.00 per night time hour (from 22 till 8)\",\n                \"per_min_pricing\": [\n                    {\n                        \"start\": 0,\n                        \"rate\": 5,\n                        \"interval\": 60\n                    }\n                ]\n            }\n        ]\n    }\n}"}],"_postman_id":"ddeac3a3-2f46-40cc-a939-27d5faa88d9d"},{"name":"system regions","id":"34f6e8eb-3a31-4e83-ab95-518bb1749643","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.carvelo.ch/v2/gbfs/system_regions.json","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{Auth Key}}"},{"key":"password","value":"{{Auth Pwd}}"}]},"isInherited":true,"source":{"_postman_id":"b826b5ce-c9b3-4eeb-9338-b7699f0b4880","id":"b826b5ce-c9b3-4eeb-9338-b7699f0b4880","name":"GBFS","type":"folder"}},"urlObject":{"path":["v2","gbfs","system_regions.json"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[{"id":"313a9b30-dabe-417e-a661-5a91b64924ba","name":"system_regions.json","originalRequest":{"method":"GET","header":[],"url":"https://api.carvelo.ch/v2/gbfs/system_regions.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 29 Aug 2024 13:52:30 GMT"},{"key":"Server","value":"Apache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"6"},{"key":"Access-Control-Expose-Headers","value":"X-Pagination-Per-Page, X-Pagination-Total-Count, X-Pagination-Current-Page, X-Pagination-Page-Count"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"https://www.carvelo.ch"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, X-Requested-With"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"last_updated\": 1724939550,\n    \"ttl\": 60,\n    \"version\": \"2.3\",\n    \"data\": {\n        \"regions\": [\n            {\n                \"region_id\": \"956d196e-765b-4bfa-e01f-0db4c2a4876d\",\n                \"name\": \"Aarau\"\n            },\n            {\n                \"region_id\": \"e459cb86-3f4a-40d4-ecd0-ca9822f57d69\",\n                \"name\": \"Aesch BL\"\n            },\n            {\n                \"region_id\": \"0efd2e5e-3767-4ce9-fcb3-8e4db2dbcda1\",\n                \"name\": \"Aigle\"\n            },\n            {\n                \"region_id\": \"a7edadef-8d99-42a2-8f2d-c067f78f0f2d\",\n                \"name\": \"Arbon\"\n            },\n            {\n                \"region_id\": \"9fc9a06f-9f8b-4b07-8055-53a58503e749\",\n                \"name\": \"Arosa\"\n            },\n            {\n                \"region_id\": \"908707bf-9235-4fa6-848b-ca7d4c0b1878\",\n                \"name\": \"Baden\"\n            },\n            {\n                \"region_id\": \"a174c4dd-bcc6-47bf-e7a7-51efb4594ff1\",\n                \"name\": \"Basel\"\n            },\n            {\n                \"region_id\": \"6efa6dad-6fd4-4d43-9cf3-c1bdf6be014a\",\n                \"name\": \"Bellinzona\"\n            },\n            {\n                \"region_id\": \"b33b7cef-c74d-4789-9a31-8586dcf47e11\",\n                \"name\": \"Bern\"\n            },\n            {\n                \"region_id\": \"a8323c7d-5851-4ecf-a892-b062a80b8ef2\",\n                \"name\": \"Bernex\"\n            },\n            {\n                \"region_id\": \"9e101bd8-7f9a-4cfe-9708-4922daf8266a\",\n                \"name\": \"Biel/Bienne\"\n            },\n            {\n                \"region_id\": \"14004651-0df5-484f-d977-3067f1b5b5ed\",\n                \"name\": \"Brugg\"\n            },\n            {\n                \"region_id\": \"05fd2ce7-c806-4e1b-ba41-546c0a3ba759\",\n                \"name\": \"Buchs SG\"\n            },\n            {\n                \"region_id\": \"478b1931-b70f-47d7-beb2-3401ad4e30ed\",\n                \"name\": \"Bulle\"\n            },\n            {\n                \"region_id\": \"04647e72-6e03-4974-8892-f0f113c9ff8e\",\n                \"name\": \"Burgdorf\"\n            },\n            {\n                \"region_id\": \"01ab913f-bc77-46cc-ce94-394c2ea0529f\",\n                \"name\": \"Bussigny\"\n            },\n            {\n                \"region_id\": \"318fb682-7ede-4e6f-bfab-14ce7be322aa\",\n                \"name\": \"Carouge\"\n            },\n            {\n                \"region_id\": \"765db560-e523-4cac-f8aa-5503904efe57\",\n                \"name\": \"Chavannes-près-Renens\"\n            },\n            {\n                \"region_id\": \"0b56dd12-c9c4-48a4-dd6f-b56891bc2fe4\",\n                \"name\": \"Cheseaux-sur-Lausanne\"\n            },\n            {\n                \"region_id\": \"d7402011-9381-47cd-e34d-3c31560720e7\",\n                \"name\": \"Collex-Bossy\"\n            },\n            {\n                \"region_id\": \"1ee3f54a-247a-4e01-c127-437a44d0eee1\",\n                \"name\": \"Davos\"\n            },\n            {\n                \"region_id\": \"f87afc5e-6c73-4b56-ef63-b7c718171384\",\n                \"name\": \"Deitingen\"\n            },\n            {\n                \"region_id\": \"78d940f9-80b6-476e-cab4-205e814ac0b8\",\n                \"name\": \"Dietikon\"\n            },\n            {\n                \"region_id\": \"d673b1de-7152-4c2f-90ff-9eee2a641c55\",\n                \"name\": \"Domat/Ems\"\n            },\n            {\n                \"region_id\": \"4944205f-60e3-408b-e3fb-dd888e1d764b\",\n                \"name\": \"Dübendorf\"\n            },\n            {\n                \"region_id\": \"ec8f5371-406b-4210-c145-dd666622d86b\",\n                \"name\": \"Echallens\"\n            },\n            {\n                \"region_id\": \"51b1fe9d-e97e-4c7e-d4fb-de97fa7b82dc\",\n                \"name\": \"Ecublens\"\n            },\n            {\n                \"region_id\": \"e1ea2e66-2a1c-4ace-dffb-592b59087b9f\",\n                \"name\": \"Emmen\"\n            },\n            {\n                \"region_id\": \"428ff9b2-53cf-4283-f4f1-cc8dadb04f99\",\n                \"name\": \"Flaach\"\n            },\n            {\n                \"region_id\": \"1d1fad80-27d0-42e8-f1f9-422bc41482d6\",\n                \"name\": \"Frauenfeld\"\n            },\n            {\n                \"region_id\": \"11295123-0163-4622-88a4-29c2b7f6d7e7\",\n                \"name\": \"Fribourg\"\n            },\n            {\n                \"region_id\": \"d7b06335-d6ca-4e2c-eb8c-15b323a09f8a\",\n                \"name\": \"Gampelen\"\n            },\n            {\n                \"region_id\": \"870e340b-1953-428e-d2dc-1c24eaf56b4a\",\n                \"name\": \"Genève\"\n            },\n            {\n                \"region_id\": \"6a87b3ca-1c8c-471c-c89d-28878ae539b0\",\n                \"name\": \"Grenchen\"\n            },\n            {\n                \"region_id\": \"be78dc60-f7ab-44e2-8786-9c8e2b31a6e8\",\n                \"name\": \"Grüt\"\n            },\n            {\n                \"region_id\": \"fb643131-c82e-480d-9d5f-b0c1d19ecddc\",\n                \"name\": \"Horgen\"\n            },\n            {\n                \"region_id\": \"a8143bb0-6a16-49a2-bb30-dc43e7566a0a\",\n                \"name\": \"Horw\"\n            },\n            {\n                \"region_id\": \"81fc6929-35b9-4f17-bb7d-17836f94f59c\",\n                \"name\": \"Interlaken\"\n            },\n            {\n                \"region_id\": \"460db108-a3d6-4bce-a207-90385d2dcda7\",\n                \"name\": \"Kloten\"\n            },\n            {\n                \"region_id\": \"8c024719-4721-4f9f-9553-fda1f121a141\",\n                \"name\": \"Köniz\"\n            },\n            {\n                \"region_id\": \"ae568469-c50a-4932-88bf-8c1eb0218243\",\n                \"name\": \"La Chaux-de-Fonds\"\n            },\n            {\n                \"region_id\": \"9c330383-39e5-42a0-e2ae-50ecfe6c1522\",\n                \"name\": \"La Tour-de-Peilz\"\n            },\n            {\n                \"region_id\": \"7cf93ba2-27ef-4339-c550-41fe4608568e\",\n                \"name\": \"Lancy\"\n            },\n            {\n                \"region_id\": \"35643a71-324e-485c-e9ec-339197df7c4d\",\n                \"name\": \"Langenthal\"\n            },\n            {\n                \"region_id\": \"6dca8350-0c11-40b5-de3a-6628bf2469da\",\n                \"name\": \"Lausanne\"\n            },\n            {\n                \"region_id\": \"24d72b7a-f55d-4698-f9d4-7ede1ebf7d3d\",\n                \"name\": \"Le Locle\"\n            },\n            {\n                \"region_id\": \"c62109e5-b814-4ff9-e352-9e918fd2fdac\",\n                \"name\": \"Le Mont-sur-Lausanne\"\n            },\n            {\n                \"region_id\": \"e8174fc5-4cdb-4172-80ab-f010b9fb9754\",\n                \"name\": \"Lenzburg\"\n            },\n            {\n                \"region_id\": \"6dfbb03a-0bdc-4f1c-a3e9-0516555e6f45\",\n                \"name\": \"Liestal\"\n            },\n            {\n                \"region_id\": \"0d23fdc5-1fcd-4e7a-ff28-22dce815e731\",\n                \"name\": \"Locarno\"\n            },\n            {\n                \"region_id\": \"20f207fe-a9a0-4f19-8db2-ca23a76f1ab6\",\n                \"name\": \"Lugano\"\n            },\n            {\n                \"region_id\": \"404c3386-19d5-4931-b999-4f90fa9c9184\",\n                \"name\": \"Luzern\"\n            },\n            {\n                \"region_id\": \"53ff9390-dd58-44e9-d144-aaa3dbfb69da\",\n                \"name\": \"Lyss\"\n            },\n            {\n                \"region_id\": \"1221777d-5589-4410-eedd-39c8285ec4f8\",\n                \"name\": \"Mendrisio\"\n            },\n            {\n                \"region_id\": \"3b10eb9f-e87d-41b1-bee0-3f079d2bf6f5\",\n                \"name\": \"Meyrin\"\n            },\n            {\n                \"region_id\": \"1d2a31ac-7f9c-437a-b924-4b984c483f27\",\n                \"name\": \"Morges\"\n            },\n            {\n                \"region_id\": \"73a224e8-2e9d-401c-db6f-06bcb3c45417\",\n                \"name\": \"Münsingen\"\n            },\n            {\n                \"region_id\": \"036e2d6d-a56f-4334-a693-4a395cb615c3\",\n                \"name\": \"Murten\"\n            },\n            {\n                \"region_id\": \"f5260efc-88d5-4af3-88a9-cb2eb541cbcb\",\n                \"name\": \"Muttenz\"\n            },\n            {\n                \"region_id\": \"45e68dfe-7a45-4fbf-ad44-6b3faa28169c\",\n                \"name\": \"Nänikon\"\n            },\n            {\n                \"region_id\": \"9f027749-1360-49fb-dabc-a176a7ed7ef7\",\n                \"name\": \"Neuchâtel\"\n            },\n            {\n                \"region_id\": \"8d74766e-0c37-449a-9d11-0bbcc8a4cf37\",\n                \"name\": \"Nidau\"\n            },\n            {\n                \"region_id\": \"d3d5b0b4-34d2-43b4-f7fd-eb969b6f8239\",\n                \"name\": \"Nyon\"\n            },\n            {\n                \"region_id\": \"cf10cd2a-4f22-4c01-d82b-404f7537918b\",\n                \"name\": \"Olten\"\n            },\n            {\n                \"region_id\": \"39de7a8d-c969-4eda-fb28-9a62e113b75e\",\n                \"name\": \"Onex\"\n            },\n            {\n                \"region_id\": \"7b47f785-1afa-4332-a7c2-5e0bc978ba98\",\n                \"name\": \"Opfikon\"\n            },\n            {\n                \"region_id\": \"a7d7d672-2521-4509-964c-e157007d9bdc\",\n                \"name\": \"Ostermundigen\"\n            },\n            {\n                \"region_id\": \"74425c6d-df70-4ac9-9800-1877412d3cb6\",\n                \"name\": \"Prilly\"\n            },\n            {\n                \"region_id\": \"5f3b9b52-5c65-4817-cfaa-9480f63f4bf9\",\n                \"name\": \"Pully\"\n            },\n            {\n                \"region_id\": \"262298b5-3221-4091-8cf1-268eb3ca6059\",\n                \"name\": \"Rapperswil-Jona\"\n            },\n            {\n                \"region_id\": \"222c61a7-cdba-415f-a663-16e870c00ddc\",\n                \"name\": \"Regensdorf\"\n            },\n            {\n                \"region_id\": \"ff8117b1-f1eb-4dab-b060-1ba4a7183012\",\n                \"name\": \"Renens\"\n            },\n            {\n                \"region_id\": \"43f1f773-3d68-4d65-8a35-2a81923d3b13\",\n                \"name\": \"Riehen\"\n            },\n            {\n                \"region_id\": \"cda66726-d9e7-406e-fe70-96bc7c146743\",\n                \"name\": \"Romanshorn\"\n            },\n            {\n                \"region_id\": \"43932368-6bd0-4ab2-d8e2-9166f516ac74\",\n                \"name\": \"Rüti ZH\"\n            },\n            {\n                \"region_id\": \"ef29584e-8764-4ed8-c23e-ef487c007551\",\n                \"name\": \"Saas-Fee\"\n            },\n            {\n                \"region_id\": \"3aa22e7b-c6ed-49d6-acb2-d94d82b16a15\",\n                \"name\": \"Saint-Sulpice\"\n            },\n            {\n                \"region_id\": \"38923d71-5382-4af5-aea3-62cbe9c1013f\",\n                \"name\": \"Salavaux\"\n            },\n            {\n                \"region_id\": \"98dca2fc-4104-442c-e5b7-22edf006f6c2\",\n                \"name\": \"Schaffhausen\"\n            },\n            {\n                \"region_id\": \"1d9223c1-1a37-49fa-cdf0-461ff3c2dadd\",\n                \"name\": \"Schwyz\"\n            },\n            {\n                \"region_id\": \"f47807f1-1dda-46e4-c7be-d66d33fd4b66\",\n                \"name\": \"Sempach\"\n            },\n            {\n                \"region_id\": \"f1761752-4bda-43a6-be3e-8d120c8c291a\",\n                \"name\": \"Sion\"\n            },\n            {\n                \"region_id\": \"bfafc160-5f9c-457c-cfa4-31cab72ef14f\",\n                \"name\": \"Solothurn\"\n            },\n            {\n                \"region_id\": \"4886ff58-4bba-4109-a876-cdad14cd089a\",\n                \"name\": \"St. Gallen\"\n            },\n            {\n                \"region_id\": \"16ddca50-e7a5-4b08-8cb0-f12f0fbd35ec\",\n                \"name\": \"Stans\"\n            },\n            {\n                \"region_id\": \"bacd102d-33dc-4263-e7b0-32ea3ee8d19f\",\n                \"name\": \"Steinhausen\"\n            },\n            {\n                \"region_id\": \"efd5cc8f-5db1-402d-e667-20fdf5b2903a\",\n                \"name\": \"Tägerwilen\"\n            },\n            {\n                \"region_id\": \"7f5084e6-4e52-40df-dbe4-bc0c90f01b88\",\n                \"name\": \"Thun\"\n            },\n            {\n                \"region_id\": \"24c8721b-ced8-4869-92bf-cc52012b0f8f\",\n                \"name\": \"Troinex\"\n            },\n            {\n                \"region_id\": \"936ccc56-80e6-441f-959b-da5747118c61\",\n                \"name\": \"Uster\"\n            },\n            {\n                \"region_id\": \"d61af4ab-13b7-4c41-f744-c3208ca17e96\",\n                \"name\": \"Vernier\"\n            },\n            {\n                \"region_id\": \"a46ade5a-f1ec-4de9-b765-5c06c558b7f4\",\n                \"name\": \"Vevey\"\n            },\n            {\n                \"region_id\": \"686d9c7f-168d-45be-ae1a-25e74b87087d\",\n                \"name\": \"Wallisellen\"\n            },\n            {\n                \"region_id\": \"653b56e9-5765-4d38-abad-acf6a7bb7e00\",\n                \"name\": \"Wattwil\"\n            },\n            {\n                \"region_id\": \"6716253e-4a51-42d0-8508-7b8576603f41\",\n                \"name\": \"Weinfelden\"\n            },\n            {\n                \"region_id\": \"6ff88921-9bb8-4416-858d-951e4d02e8e3\",\n                \"name\": \"Wil\"\n            },\n            {\n                \"region_id\": \"2c94a5e6-e822-4605-f0f5-64b174f979b6\",\n                \"name\": \"Winterthur\"\n            },\n            {\n                \"region_id\": \"538720ed-83ce-4313-adf1-67f4c05d484b\",\n                \"name\": \"Worb\"\n            },\n            {\n                \"region_id\": \"40afeadd-d2d8-47c7-f342-9079af18f26f\",\n                \"name\": \"Yverdon-les-Bains\"\n            },\n            {\n                \"region_id\": \"5db47b97-d990-4315-8670-790d41b21322\",\n                \"name\": \"Yvonand\"\n            },\n            {\n                \"region_id\": \"9af06326-3691-466f-e9bf-5a80eff15fb4\",\n                \"name\": \"Zollikofen\"\n            },\n            {\n                \"region_id\": \"d2bf4bdd-0dcb-4340-c0da-41885432b053\",\n                \"name\": \"Zuchwil\"\n            },\n            {\n                \"region_id\": \"12a72002-4ae3-423e-cefc-34acfdf670c3\",\n                \"name\": \"Zug\"\n            },\n            {\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"name\": \"Zürich\"\n            }\n        ]\n    }\n}"}],"_postman_id":"34f6e8eb-3a31-4e83-ab95-518bb1749643"},{"name":"station information","id":"38976c5b-d854-4572-9945-776f51f7e1df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.carvelo.ch/v2/gbfs/station_information.json","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{Auth Key}}"},{"key":"password","value":"{{Auth Pwd}}"}]},"isInherited":true,"source":{"_postman_id":"b826b5ce-c9b3-4eeb-9338-b7699f0b4880","id":"b826b5ce-c9b3-4eeb-9338-b7699f0b4880","name":"GBFS","type":"folder"}},"urlObject":{"path":["v2","gbfs","station_information.json"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[{"id":"8bd772e9-225c-4847-adae-c7946f390d22","name":"station_information.json","originalRequest":{"method":"GET","header":[],"url":"https://api.carvelo.ch/v2/gbfs/station_information.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 29 Aug 2024 13:52:06 GMT"},{"key":"Server","value":"Apache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"6"},{"key":"Access-Control-Expose-Headers","value":"X-Pagination-Per-Page, X-Pagination-Total-Count, X-Pagination-Current-Page, X-Pagination-Page-Count"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"https://www.carvelo.ch"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, X-Requested-With"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"last_updated\": 1724939526,\n    \"ttl\": 60,\n    \"version\": \"2.3\",\n    \"data\": {\n        \"stations\": [\n            {\n                \"station_id\": \"9515c94a-2622-4693-9f6a-fa021f25b05c\",\n                \"name\": \"169 West & Weststrasse GmbH\",\n                \"lat\": 47.373902312015,\n                \"lon\": 8.5180803392621,\n                \"address\": \"Weststrasse 169\",\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"post_code\": \"8003\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9515c94a-2622-4693-9f6a-fa021f25b05c&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9515c94a-2622-4693-9f6a-fa021f25b05c&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9515c94a-2622-4693-9f6a-fa021f25b05c&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"9de45fe3-649f-4f28-8457-a8a821db7047\",\n                \"name\": \"25hours Hotel Zürich West\",\n                \"lat\": 47.390969736553,\n                \"lon\": 8.5095165426297,\n                \"address\": \"Pfingstweidstrasse 102\",\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"post_code\": \"8005\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9de45fe3-649f-4f28-8457-a8a821db7047&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9de45fe3-649f-4f28-8457-a8a821db7047&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9de45fe3-649f-4f28-8457-a8a821db7047&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"105b803e-24ba-4724-87d7-d63b421e2ddc\",\n                \"name\": \"8304 | Altes Feuerwehrgebäude\",\n                \"lat\": 47.416275163423,\n                \"lon\": 8.5916531088843,\n                \"address\": \"Zentralstrasse 4\",\n                \"region_id\": \"686d9c7f-168d-45be-ae1a-25e74b87087d\",\n                \"post_code\": \"8304\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=105b803e-24ba-4724-87d7-d63b421e2ddc&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=105b803e-24ba-4724-87d7-d63b421e2ddc&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=105b803e-24ba-4724-87d7-d63b421e2ddc&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"d5e6b008-bddf-4994-cae1-916e843a297d\",\n                \"name\": \"89grad GmbH Carvelobox\",\n                \"lat\": 46.940377171489,\n                \"lon\": 7.4330150483569,\n                \"address\": \"Eigerstrasse 12\",\n                \"region_id\": \"b33b7cef-c74d-4789-9a31-8586dcf47e11\",\n                \"post_code\": \"3007\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d5e6b008-bddf-4994-cae1-916e843a297d&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d5e6b008-bddf-4994-cae1-916e843a297d&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d5e6b008-bddf-4994-cae1-916e843a297d&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"9f238bd6-07fe-492e-d242-5c2a92bcc60e\",\n                \"name\": \"aarau info\",\n                \"lat\": 47.3933257359,\n                \"lon\": 8.0443713641014,\n                \"address\": \"Metzgergasse 2\",\n                \"region_id\": \"956d196e-765b-4bfa-e01f-0db4c2a4876d\",\n                \"post_code\": \"5000\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9f238bd6-07fe-492e-d242-5c2a92bcc60e&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9f238bd6-07fe-492e-d242-5c2a92bcc60e&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9f238bd6-07fe-492e-d242-5c2a92bcc60e&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"f148aa4c-2ae4-43d6-8483-debf32e0cc84\",\n                \"name\": \"Accademia di Architettura\",\n                \"lat\": 45.867370800587,\n                \"lon\": 8.9848146681914,\n                \"address\": \"Villa Argentina Largo Bernasconi 2\",\n                \"region_id\": \"1221777d-5589-4410-eedd-39c8285ec4f8\",\n                \"post_code\": \"6850\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f148aa4c-2ae4-43d6-8483-debf32e0cc84&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f148aa4c-2ae4-43d6-8483-debf32e0cc84&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f148aa4c-2ae4-43d6-8483-debf32e0cc84&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"aee71808-3655-455e-97fb-bbe7bd717998\",\n                \"name\": \"Activfitness Riehen Niederholz\",\n                \"lat\": 47.569731,\n                \"lon\": 7.633337,\n                \"address\": \"Gotenstrasse 84\",\n                \"region_id\": \"43f1f773-3d68-4d65-8a35-2a81923d3b13\",\n                \"post_code\": \"4125\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=aee71808-3655-455e-97fb-bbe7bd717998&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=aee71808-3655-455e-97fb-bbe7bd717998&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=aee71808-3655-455e-97fb-bbe7bd717998&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"1f20dbbd-a186-4ae4-ae0b-0236e4770a0f\",\n                \"name\": \"Agentur UMSICHT\",\n                \"lat\": 47.0488505,\n                \"lon\": 8.3003656,\n                \"address\": \"Klosterstrasse 21 a\",\n                \"region_id\": \"404c3386-19d5-4931-b999-4f90fa9c9184\",\n                \"post_code\": \"6003\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1f20dbbd-a186-4ae4-ae0b-0236e4770a0f&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1f20dbbd-a186-4ae4-ae0b-0236e4770a0f&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1f20dbbd-a186-4ae4-ae0b-0236e4770a0f&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"a2bac60a-3dc8-4bd5-cb34-1f94fbc5548a\",\n                \"name\": \"AGROLA TopShop\",\n                \"lat\": 47.253457352831,\n                \"lon\": 8.8438542701216,\n                \"address\": \"Rapperswilerstrasse 78\",\n                \"region_id\": \"43932368-6bd0-4ab2-d8e2-9166f516ac74\",\n                \"post_code\": \"8630\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a2bac60a-3dc8-4bd5-cb34-1f94fbc5548a&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a2bac60a-3dc8-4bd5-cb34-1f94fbc5548a&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a2bac60a-3dc8-4bd5-cb34-1f94fbc5548a&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"8b99f70f-4bb3-48b0-f323-654792e3685c\",\n                \"name\": \"Albergo Losone\",\n                \"lat\": 46.169113522567,\n                \"lon\": 8.7688421445812,\n                \"address\": \"via dei Pioppi 14\",\n                \"region_id\": \"c8631103-df6f-49b5-9ed1-6f11aea201f5\",\n                \"post_code\": \"6616\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8b99f70f-4bb3-48b0-f323-654792e3685c&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8b99f70f-4bb3-48b0-f323-654792e3685c&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8b99f70f-4bb3-48b0-f323-654792e3685c&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"031e5eaa-f836-426b-ce3d-aafa7607517e\",\n                \"name\": \"American Bakery\",\n                \"lat\": 46.169587,\n                \"lon\": 8.792249,\n                \"address\": \"Via Sant'Antonio 12\",\n                \"region_id\": \"0d23fdc5-1fcd-4e7a-ff28-22dce815e731\",\n                \"post_code\": \"6600\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=031e5eaa-f836-426b-ce3d-aafa7607517e&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=031e5eaa-f836-426b-ce3d-aafa7607517e&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=031e5eaa-f836-426b-ce3d-aafa7607517e&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"b32ca1fa-8d7c-42e0-8dfc-11235c4a326a\",\n                \"name\": \"Amt für Umweltschutz\",\n                \"lat\": 46.963489,\n                \"lon\": 7.461865,\n                \"address\": \"Morgartenstrasse 2a\",\n                \"region_id\": \"b33b7cef-c74d-4789-9a31-8586dcf47e11\",\n                \"post_code\": \"3014\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b32ca1fa-8d7c-42e0-8dfc-11235c4a326a&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b32ca1fa-8d7c-42e0-8dfc-11235c4a326a&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b32ca1fa-8d7c-42e0-8dfc-11235c4a326a&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"23b4cc9a-756c-49ea-9ade-b30171e7491b\",\n                \"name\": \"Analogbar / Vinyl / Kaffe\",\n                \"lat\": 47.426397840135,\n                \"lon\": 9.3748969159782,\n                \"address\": \"Engelgasse 8\",\n                \"region_id\": \"4886ff58-4bba-4109-a876-cdad14cd089a\",\n                \"post_code\": \"9000\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=23b4cc9a-756c-49ea-9ade-b30171e7491b&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=23b4cc9a-756c-49ea-9ade-b30171e7491b&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=23b4cc9a-756c-49ea-9ade-b30171e7491b&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"9a8bfea2-71b6-4dfe-fbce-b68566ea3a05\",\n                \"name\": \"Apfelgold\",\n                \"lat\": 46.958036,\n                \"lon\": 7.436923,\n                \"address\": \"Bonstettenstrasse 2\",\n                \"region_id\": \"b33b7cef-c74d-4789-9a31-8586dcf47e11\",\n                \"post_code\": \"3012\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9a8bfea2-71b6-4dfe-fbce-b68566ea3a05&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9a8bfea2-71b6-4dfe-fbce-b68566ea3a05&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9a8bfea2-71b6-4dfe-fbce-b68566ea3a05&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"cac4ea23-b695-47ac-8010-c063c1b45393\",\n                \"name\": \"Apotheke zum Meierhof\",\n                \"lat\": 47.401733192269,\n                \"lon\": 8.4996451588861,\n                \"address\": \"Limmattalstrasse 177\",\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"post_code\": \"8049\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=cac4ea23-b695-47ac-8010-c063c1b45393&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=cac4ea23-b695-47ac-8010-c063c1b45393&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=cac4ea23-b695-47ac-8010-c063c1b45393&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"e25779fb-7a4e-4072-c5fd-afa26a303c72\",\n                \"name\": \"Arthénia Boutique\",\n                \"lat\": 46.52381,\n                \"lon\": 6.629851,\n                \"address\": \"Rue Pré-du-Marché 13\",\n                \"region_id\": \"6dca8350-0c11-40b5-de3a-6628bf2469da\",\n                \"post_code\": \"1004\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e25779fb-7a4e-4072-c5fd-afa26a303c72&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e25779fb-7a4e-4072-c5fd-afa26a303c72&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e25779fb-7a4e-4072-c5fd-afa26a303c72&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"a823daba-7b5b-4064-ed79-758e01702f00\",\n                \"name\": \"Atelier bikesLab\",\n                \"lat\": 46.774711881221,\n                \"lon\": 6.6492865370509,\n                \"address\": \"Avenue des Bains 9\",\n                \"region_id\": \"40afeadd-d2d8-47c7-f342-9079af18f26f\",\n                \"post_code\": \"1400\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a823daba-7b5b-4064-ed79-758e01702f00&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a823daba-7b5b-4064-ed79-758e01702f00&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a823daba-7b5b-4064-ed79-758e01702f00&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"e2cf5d2c-3b58-4ff6-f29d-ff5ed92cdc1f\",\n                \"name\": \"Ates Market\",\n                \"lat\": 46.534853,\n                \"lon\": 6.590109,\n                \"address\": \"Avenue du 24-janvier 1a\",\n                \"region_id\": \"ff8117b1-f1eb-4dab-b060-1ba4a7183012\",\n                \"post_code\": \"1020\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e2cf5d2c-3b58-4ff6-f29d-ff5ed92cdc1f&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e2cf5d2c-3b58-4ff6-f29d-ff5ed92cdc1f&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e2cf5d2c-3b58-4ff6-f29d-ff5ed92cdc1f&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"981b26a7-ceeb-4d31-e62d-febce2d721bd\",\n                \"name\": \"Atomic Café\",\n                \"lat\": 47.133870270039,\n                \"lon\": 7.2422576663238,\n                \"address\": \"Bahnhofplatz 5\",\n                \"region_id\": \"9e101bd8-7f9a-4cfe-9708-4922daf8266a\",\n                \"post_code\": \"2502\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=981b26a7-ceeb-4d31-e62d-febce2d721bd&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=981b26a7-ceeb-4d31-e62d-febce2d721bd&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=981b26a7-ceeb-4d31-e62d-febce2d721bd&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"6234aae3-4d9d-4461-b71e-2d5efd087a67\",\n                \"name\": \"Atout Vrac * Epicerie sans emballages / Unverpacktes Einkaufen\",\n                \"lat\": 46.805485891669,\n                \"lon\": 7.1619760994513,\n                \"address\": \"Grand-Rue 10\",\n                \"region_id\": \"11295123-0163-4622-88a4-29c2b7f6d7e7\",\n                \"post_code\": \"1700\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6234aae3-4d9d-4461-b71e-2d5efd087a67&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6234aae3-4d9d-4461-b71e-2d5efd087a67&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6234aae3-4d9d-4461-b71e-2d5efd087a67&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"de300947-26dc-4ebc-b776-7876a52dae25\",\n                \"name\": \"Aux Délices de la Grand-Cour\",\n                \"lat\": 46.160416381078,\n                \"lon\": 6.1487905411196,\n                \"address\": \"Chem. de la Grand-Cour 6\",\n                \"region_id\": \"24c8721b-ced8-4869-92bf-cc52012b0f8f\",\n                \"post_code\": \"1256\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=de300947-26dc-4ebc-b776-7876a52dae25&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=de300947-26dc-4ebc-b776-7876a52dae25&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=de300947-26dc-4ebc-b776-7876a52dae25&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"bad61a41-ac99-4599-9547-db31f318fe1b\",\n                \"name\": \"Bachibouzouk\",\n                \"lat\": 46.460808,\n                \"lon\": 6.838842,\n                \"address\": \"Rue des Jardins 12\",\n                \"region_id\": \"a46ade5a-f1ec-4de9-b765-5c06c558b7f4\",\n                \"post_code\": \"1800\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=bad61a41-ac99-4599-9547-db31f318fe1b&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=bad61a41-ac99-4599-9547-db31f318fe1b&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=bad61a41-ac99-4599-9547-db31f318fe1b&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"500e34c7-116a-49b5-fdbe-6778de034d06\",\n                \"name\": \"Bächli Bergsport AG\",\n                \"lat\": 47.392280276316,\n                \"lon\": 8.0583906000017,\n                \"address\": \"Industriestrasse 1\",\n                \"region_id\": \"956d196e-765b-4bfa-e01f-0db4c2a4876d\",\n                \"post_code\": \"5000\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=500e34c7-116a-49b5-fdbe-6778de034d06&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=500e34c7-116a-49b5-fdbe-6778de034d06&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=500e34c7-116a-49b5-fdbe-6778de034d06&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"52899aa8-9a99-4b77-8a03-8b43b7401cd0\",\n                \"name\": \"Bäckerei Hug (Kriens-Mattenhof)\",\n                \"lat\": 47.027287,\n                \"lon\": 8.301406,\n                \"address\": \"Am Mattenhof 6\",\n                \"region_id\": \"404c3386-19d5-4931-b999-4f90fa9c9184\",\n                \"post_code\": \"6010\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=52899aa8-9a99-4b77-8a03-8b43b7401cd0&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=52899aa8-9a99-4b77-8a03-8b43b7401cd0&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=52899aa8-9a99-4b77-8a03-8b43b7401cd0&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"52c39c1d-e886-43f7-dbe2-40efe7648c9e\",\n                \"name\": \"Bäckerei KULT Elsässerstrasse\",\n                \"lat\": 47.568648,\n                \"lon\": 7.579603,\n                \"address\": \"Elsässerstrasse 43\",\n                \"region_id\": \"a174c4dd-bcc6-47bf-e7a7-51efb4594ff1\",\n                \"post_code\": \"4056\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=52c39c1d-e886-43f7-dbe2-40efe7648c9e&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=52c39c1d-e886-43f7-dbe2-40efe7648c9e&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=52c39c1d-e886-43f7-dbe2-40efe7648c9e&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"43a33698-13f7-418f-bc51-08de03dac894\",\n                \"name\": \"Bäckerei KULT Riehentorstrasse\",\n                \"lat\": 47.559234,\n                \"lon\": 7.595997,\n                \"address\": \"Riehentorstrasse 18\",\n                \"region_id\": \"a174c4dd-bcc6-47bf-e7a7-51efb4594ff1\",\n                \"post_code\": \"4058\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=43a33698-13f7-418f-bc51-08de03dac894&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=43a33698-13f7-418f-bc51-08de03dac894&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=43a33698-13f7-418f-bc51-08de03dac894&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"aa8bd583-1bfb-4ab6-de45-744f98111f47\",\n                \"name\": \"Bäckerei-Konditorei Vuaillat AG\",\n                \"lat\": 47.346082,\n                \"lon\": 8.69705,\n                \"address\": \"Seestrasse 102\",\n                \"region_id\": \"936ccc56-80e6-441f-959b-da5747118c61\",\n                \"post_code\": \"8610\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=aa8bd583-1bfb-4ab6-de45-744f98111f47&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=aa8bd583-1bfb-4ab6-de45-744f98111f47&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=aa8bd583-1bfb-4ab6-de45-744f98111f47&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"ef85ec2d-4648-4fe4-bd5b-6edbee9b7ae6\",\n                \"name\": \"Banana City Winerthur\",\n                \"lat\": 47.504416236367,\n                \"lon\": 8.7248067192055,\n                \"address\": \"Schaffhauserstrasse 8\",\n                \"region_id\": \"2c94a5e6-e822-4605-f0f5-64b174f979b6\",\n                \"post_code\": \"8400\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ef85ec2d-4648-4fe4-bd5b-6edbee9b7ae6&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ef85ec2d-4648-4fe4-bd5b-6edbee9b7ae6&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ef85ec2d-4648-4fe4-bd5b-6edbee9b7ae6&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"d963f025-a8cc-49e6-d948-d118c69fabfe\",\n                \"name\": \"Barabas Hotel Luzern\",\n                \"lat\": 47.05302,\n                \"lon\": 8.3042,\n                \"address\": \"Löwengraben 18\",\n                \"region_id\": \"404c3386-19d5-4931-b999-4f90fa9c9184\",\n                \"post_code\": \"6004\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d963f025-a8cc-49e6-d948-d118c69fabfe&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d963f025-a8cc-49e6-d948-d118c69fabfe&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d963f025-a8cc-49e6-d948-d118c69fabfe&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"ca0d8b01-1acc-45be-b54f-917b685c466f\",\n                \"name\": \"Barbière\",\n                \"lat\": 46.958708,\n                \"lon\": 7.454235,\n                \"address\": \"Breitenrainplatz 40\",\n                \"region_id\": \"b33b7cef-c74d-4789-9a31-8586dcf47e11\",\n                \"post_code\": \"3014\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ca0d8b01-1acc-45be-b54f-917b685c466f&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ca0d8b01-1acc-45be-b54f-917b685c466f&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ca0d8b01-1acc-45be-b54f-917b685c466f&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"22f1ef80-108f-4d92-a4dc-57b6b6f62bb0\",\n                \"name\": \"Base Nyon\",\n                \"lat\": 46.384388,\n                \"lon\": 6.23698,\n                \"address\": \"Rue Jules Gachet 2\",\n                \"region_id\": \"d3d5b0b4-34d2-43b4-f7fd-eb969b6f8239\",\n                \"post_code\": \"1260\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=22f1ef80-108f-4d92-a4dc-57b6b6f62bb0&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=22f1ef80-108f-4d92-a4dc-57b6b6f62bb0&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=22f1ef80-108f-4d92-a4dc-57b6b6f62bb0&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"73b94390-42f9-4596-e43b-17a9676c8eb1\",\n                \"name\": \"Basel Backpack\",\n                \"lat\": 47.541713,\n                \"lon\": 7.593238,\n                \"address\": \"Dornacherstrasse 192\",\n                \"region_id\": \"a174c4dd-bcc6-47bf-e7a7-51efb4594ff1\",\n                \"post_code\": \"4053\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=73b94390-42f9-4596-e43b-17a9676c8eb1&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=73b94390-42f9-4596-e43b-17a9676c8eb1&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=73b94390-42f9-4596-e43b-17a9676c8eb1&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"403c6dac-37ad-42b2-e2b5-eecd3f3d8b3e\",\n                \"name\": \"Becanto Coffee & Brunch\",\n                \"lat\": 46.958860140981,\n                \"lon\": 7.4572866564322,\n                \"address\": \"Rütlistrasse 2\",\n                \"region_id\": \"b33b7cef-c74d-4789-9a31-8586dcf47e11\",\n                \"post_code\": \"3018\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=403c6dac-37ad-42b2-e2b5-eecd3f3d8b3e&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=403c6dac-37ad-42b2-e2b5-eecd3f3d8b3e&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=403c6dac-37ad-42b2-e2b5-eecd3f3d8b3e&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"5b1081d6-6bc0-4bf0-eb0e-0eaea01e064f\",\n                \"name\": \"Berg und Tal\",\n                \"lat\": 47.387825060139,\n                \"lon\": 8.5263480959755,\n                \"address\": \"Limmatstrasse 231\",\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"post_code\": \"8005\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=5b1081d6-6bc0-4bf0-eb0e-0eaea01e064f&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=5b1081d6-6bc0-4bf0-eb0e-0eaea01e064f&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=5b1081d6-6bc0-4bf0-eb0e-0eaea01e064f&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"1c741450-02ed-412e-ce4d-bfd470da7281\",\n                \"name\": \"Berner Generationenhaus\",\n                \"lat\": 46.947739,\n                \"lon\": 7.439382,\n                \"address\": \"Bahnhofplatz 2, Postfach\",\n                \"region_id\": \"b33b7cef-c74d-4789-9a31-8586dcf47e11\",\n                \"post_code\": \"3011\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1c741450-02ed-412e-ce4d-bfd470da7281&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1c741450-02ed-412e-ce4d-bfd470da7281&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1c741450-02ed-412e-ce4d-bfd470da7281&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"ef26b3fa-8fc4-44ab-9021-790b2f3447e7\",\n                \"name\": \"Bibliothek Agnesenschütte\",\n                \"lat\": 47.698021546079,\n                \"lon\": 8.6368822472406,\n                \"address\": \"Schwesterngasse 1\",\n                \"region_id\": \"98dca2fc-4104-442c-e5b7-22edf006f6c2\",\n                \"post_code\": \"8200\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ef26b3fa-8fc4-44ab-9021-790b2f3447e7&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ef26b3fa-8fc4-44ab-9021-790b2f3447e7&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ef26b3fa-8fc4-44ab-9021-790b2f3447e7&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"8b01a0c3-c47e-4e0e-cc68-027f2cb001ff\",\n                \"name\": \"Bibliothek Buchs SG\",\n                \"lat\": 47.16608,\n                \"lon\": 9.47023,\n                \"address\": \"Kirchgasse 2\",\n                \"region_id\": \"05fd2ce7-c806-4e1b-ba41-546c0a3ba759\",\n                \"post_code\": \"9470\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8b01a0c3-c47e-4e0e-cc68-027f2cb001ff&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8b01a0c3-c47e-4e0e-cc68-027f2cb001ff&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8b01a0c3-c47e-4e0e-cc68-027f2cb001ff&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"600a2400-89dd-47fd-ec65-1718fa831c23\",\n                \"name\": \"Bibliothek Köniz\",\n                \"lat\": 46.922629,\n                \"lon\": 7.415944,\n                \"address\": \" Stapfenstrasse 13\",\n                \"region_id\": \"8c024719-4721-4f9f-9553-fda1f121a141\",\n                \"post_code\": \"3098\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=600a2400-89dd-47fd-ec65-1718fa831c23&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=600a2400-89dd-47fd-ec65-1718fa831c23&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=600a2400-89dd-47fd-ec65-1718fa831c23&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"b05eaf10-b1c1-4ac5-c26f-8083faf33c4d\",\n                \"name\": \"Bibliothek Zug\",\n                \"lat\": 47.164561,\n                \"lon\": 8.515106,\n                \"address\": \"Sankt-Oswalds-Gasse 21\",\n                \"region_id\": \"12a72002-4ae3-423e-cefc-34acfdf670c3\",\n                \"post_code\": \"6300\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b05eaf10-b1c1-4ac5-c26f-8083faf33c4d&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b05eaf10-b1c1-4ac5-c26f-8083faf33c4d&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b05eaf10-b1c1-4ac5-c26f-8083faf33c4d&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"f9b5d573-6d64-470d-e80d-bc5612555a8f\",\n                \"name\": \"Bike World Vernier\",\n                \"lat\": 46.217409016041,\n                \"lon\": 6.103390558244,\n                \"address\": \"Chem. de l'Etang 57\",\n                \"region_id\": \"d61af4ab-13b7-4c41-f744-c3208ca17e96\",\n                \"post_code\": \"1219\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f9b5d573-6d64-470d-e80d-bc5612555a8f&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f9b5d573-6d64-470d-e80d-bc5612555a8f&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f9b5d573-6d64-470d-e80d-bc5612555a8f&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"27d33783-6f1b-4781-d740-fd27c5ca7c83\",\n                \"name\": \"BikePort\",\n                \"lat\": 46.19593,\n                \"lon\": 9.029977,\n                \"address\": \"Viale stazione 36b\",\n                \"region_id\": \"6efa6dad-6fd4-4d43-9cf3-c1bdf6be014a\",\n                \"post_code\": \"6500\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=27d33783-6f1b-4781-d740-fd27c5ca7c83&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=27d33783-6f1b-4781-d740-fd27c5ca7c83&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=27d33783-6f1b-4781-d740-fd27c5ca7c83&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"670018f0-0cc7-4d31-8235-79cdcd344d40\",\n                \"name\": \"BIKES2FOLD & BIKES2LOAD - Atelier\",\n                \"lat\": 46.210860037911,\n                \"lon\": 6.1376498801411,\n                \"address\": \"Rue Julia-Chamorel 9 (atelier)\",\n                \"region_id\": \"870e340b-1953-428e-d2dc-1c24eaf56b4a\",\n                \"post_code\": \"1201\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=670018f0-0cc7-4d31-8235-79cdcd344d40&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=670018f0-0cc7-4d31-8235-79cdcd344d40&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=670018f0-0cc7-4d31-8235-79cdcd344d40&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"14f2639f-bb29-4d9e-a9dd-07f0e89fad0c\",\n                \"name\": \"Bio26\",\n                \"lat\": 46.809297473988,\n                \"lon\": 7.1488146968993,\n                \"address\": \"Route du Jura 10\",\n                \"region_id\": \"11295123-0163-4622-88a4-29c2b7f6d7e7\",\n                \"post_code\": \"1700\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=14f2639f-bb29-4d9e-a9dd-07f0e89fad0c&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=14f2639f-bb29-4d9e-a9dd-07f0e89fad0c&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=14f2639f-bb29-4d9e-a9dd-07f0e89fad0c&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"7a1be946-2636-4409-9d42-385463505bc9\",\n                \"name\": \"bioladen Altstetten\",\n                \"lat\": 47.389458,\n                \"lon\": 8.486505,\n                \"address\": \"Altstetterstrasse 128\",\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"post_code\": \"8048\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7a1be946-2636-4409-9d42-385463505bc9&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7a1be946-2636-4409-9d42-385463505bc9&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7a1be946-2636-4409-9d42-385463505bc9&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"a841dcc1-d37f-4e16-a616-c569422e6ee9\",\n                \"name\": \"Bioladen Feigenbaum\",\n                \"lat\": 47.552922,\n                \"lon\": 7.570653,\n                \"address\": \"Wielandplatz 8\",\n                \"region_id\": \"a174c4dd-bcc6-47bf-e7a7-51efb4594ff1\",\n                \"post_code\": \"4054\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a841dcc1-d37f-4e16-a616-c569422e6ee9&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a841dcc1-d37f-4e16-a616-c569422e6ee9&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a841dcc1-d37f-4e16-a616-c569422e6ee9&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"edb06700-c3a8-475f-ee9c-554833c17eb7\",\n                \"name\": \"Bluefactory Culture Carvelobox\",\n                \"lat\": 46.797427432686,\n                \"lon\": 7.1471818640458,\n                \"address\": \"Pass. du Cardinal 1\",\n                \"region_id\": \"11295123-0163-4622-88a4-29c2b7f6d7e7\",\n                \"post_code\": \"1700\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=edb06700-c3a8-475f-ee9c-554833c17eb7&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=edb06700-c3a8-475f-ee9c-554833c17eb7&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=edb06700-c3a8-475f-ee9c-554833c17eb7&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"60ab1802-f301-4a20-fb5b-cc94d4d2eacc\",\n                \"name\": \"Blumen Schenk\",\n                \"lat\": 47.216693,\n                \"lon\": 7.7905,\n                \"address\": \"Waldhofstrasse 7\",\n                \"region_id\": \"35643a71-324e-485c-e9ec-339197df7c4d\",\n                \"post_code\": \"4900\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=60ab1802-f301-4a20-fb5b-cc94d4d2eacc&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=60ab1802-f301-4a20-fb5b-cc94d4d2eacc&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=60ab1802-f301-4a20-fb5b-cc94d4d2eacc&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"67a13624-12b3-4070-de9e-07d21f7a9187\",\n                \"name\": \"Blumenkeller Murten\",\n                \"lat\": 46.928211,\n                \"lon\": 7.1165808411051,\n                \"address\": \"Hauptgasse 15\",\n                \"region_id\": \"036e2d6d-a56f-4334-a693-4a395cb615c3\",\n                \"post_code\": \"3280\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=67a13624-12b3-4070-de9e-07d21f7a9187&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=67a13624-12b3-4070-de9e-07d21f7a9187&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=67a13624-12b3-4070-de9e-07d21f7a9187&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"8422c5de-973e-4aff-9b41-0d2165c66248\",\n                \"name\": \"Boulangerie L'Ecureuil\",\n                \"lat\": 46.803487,\n                \"lon\": 7.167881,\n                \"address\": \"Place du Petit-Saint-Jean 21\",\n                \"region_id\": \"11295123-0163-4622-88a4-29c2b7f6d7e7\",\n                \"post_code\": \"1700\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8422c5de-973e-4aff-9b41-0d2165c66248&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8422c5de-973e-4aff-9b41-0d2165c66248&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8422c5de-973e-4aff-9b41-0d2165c66248&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"88146cb0-8e53-4e0a-c45b-1bebf3a9320c\",\n                \"name\": \"Boulangerie Saudan\",\n                \"lat\": 46.800029893812,\n                \"lon\": 7.1374568015228,\n                \"address\": \"Route de Villars 38\",\n                \"region_id\": \"11295123-0163-4622-88a4-29c2b7f6d7e7\",\n                \"post_code\": \"1700\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=88146cb0-8e53-4e0a-c45b-1bebf3a9320c&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=88146cb0-8e53-4e0a-c45b-1bebf3a9320c&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=88146cb0-8e53-4e0a-c45b-1bebf3a9320c&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"98c0dadf-cbe8-486e-f679-2a909a4cda0f\",\n                \"name\": \"BoulderBad Muubeeri Bern\",\n                \"lat\": 46.94668,\n                \"lon\": 7.43624,\n                \"address\": \"\",\n                \"region_id\": \"b33b7cef-c74d-4789-9a31-8586dcf47e11\",\n                \"post_code\": \"3011\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=98c0dadf-cbe8-486e-f679-2a909a4cda0f&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=98c0dadf-cbe8-486e-f679-2a909a4cda0f&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=98c0dadf-cbe8-486e-f679-2a909a4cda0f&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"c85c26bc-1039-4698-a6cf-20ba49f25d43\",\n                \"name\": \"Bourbaki\",\n                \"lat\": 47.056894,\n                \"lon\": 8.311329,\n                \"address\": \"Löwenplatz 11\",\n                \"region_id\": \"404c3386-19d5-4931-b999-4f90fa9c9184\",\n                \"post_code\": \"6004\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c85c26bc-1039-4698-a6cf-20ba49f25d43&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c85c26bc-1039-4698-a6cf-20ba49f25d43&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c85c26bc-1039-4698-a6cf-20ba49f25d43&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"09c85d07-298a-4618-8049-ce77a2eadfba\",\n                \"name\": \"Breita Bike\",\n                \"lat\": 47.377461418225,\n                \"lon\": 9.5392035830991,\n                \"address\": \"Marktgasse 27\",\n                \"region_id\": \"21222078-8c31-486d-b306-a8da60982d44\",\n                \"post_code\": \"9450\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=09c85d07-298a-4618-8049-ce77a2eadfba&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=09c85d07-298a-4618-8049-ce77a2eadfba&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=09c85d07-298a-4618-8049-ce77a2eadfba&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"f80bbc39-6071-4756-c596-2c124d54ebfd\",\n                \"name\": \"BrockiShop Bern\",\n                \"lat\": 46.944507868839,\n                \"lon\": 7.4235994766832,\n                \"address\": \"Schwarztorstrasse 115A\",\n                \"region_id\": \"b33b7cef-c74d-4789-9a31-8586dcf47e11\",\n                \"post_code\": \"3007\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f80bbc39-6071-4756-c596-2c124d54ebfd&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f80bbc39-6071-4756-c596-2c124d54ebfd&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f80bbc39-6071-4756-c596-2c124d54ebfd&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"3b44f691-d805-4804-8014-5a5db1ac0875\",\n                \"name\": \"Bros Beans & Beats\",\n                \"lat\": 47.372793,\n                \"lon\": 8.525275,\n                \"address\": \"Gartenhofstrasse 24\",\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"post_code\": \"8004\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3b44f691-d805-4804-8014-5a5db1ac0875&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3b44f691-d805-4804-8014-5a5db1ac0875&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3b44f691-d805-4804-8014-5a5db1ac0875&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"3b4ef726-df80-4a2f-cf81-4db8ac65a00e\",\n                \"name\": \"Bücher Lüthy\",\n                \"lat\": 47.192691,\n                \"lon\": 7.396655,\n                \"address\": \"Bettlachstrasse 8\",\n                \"region_id\": \"6a87b3ca-1c8c-471c-c89d-28878ae539b0\",\n                \"post_code\": \"2540\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3b4ef726-df80-4a2f-cf81-4db8ac65a00e&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3b4ef726-df80-4a2f-cf81-4db8ac65a00e&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3b4ef726-df80-4a2f-cf81-4db8ac65a00e&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"75e5e9f7-bafa-42f8-804c-347b78e63753\",\n                \"name\": \"Buchhandlung Haupt\",\n                \"lat\": 46.951077,\n                \"lon\": 7.436197,\n                \"address\": \"Falkenplatz 14\",\n                \"region_id\": \"b33b7cef-c74d-4789-9a31-8586dcf47e11\",\n                \"post_code\": \"3012\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=75e5e9f7-bafa-42f8-804c-347b78e63753&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=75e5e9f7-bafa-42f8-804c-347b78e63753&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=75e5e9f7-bafa-42f8-804c-347b78e63753&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"fa052bae-4eb5-42f3-fde6-80130d3223f2\",\n                \"name\": \"Buchmann Beck Binz\",\n                \"lat\": 47.362444,\n                \"lon\": 8.518835,\n                \"address\": \"Uetlibergstrasse 65\",\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"post_code\": \"8045\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fa052bae-4eb5-42f3-fde6-80130d3223f2&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fa052bae-4eb5-42f3-fde6-80130d3223f2&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fa052bae-4eb5-42f3-fde6-80130d3223f2&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"5f3d8a96-d7e7-44bb-d2dd-5cecd126a347\",\n                \"name\": \"Café & Leckerlimanufaktur Spalentor\",\n                \"lat\": 47.55773878992,\n                \"lon\": 7.5806769588951,\n                \"address\": \"Missionsstrasse 1\",\n                \"region_id\": \"a174c4dd-bcc6-47bf-e7a7-51efb4594ff1\",\n                \"post_code\": \"4055\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=5f3d8a96-d7e7-44bb-d2dd-5cecd126a347&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=5f3d8a96-d7e7-44bb-d2dd-5cecd126a347&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=5f3d8a96-d7e7-44bb-d2dd-5cecd126a347&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"712cfb73-6684-4b46-cb1d-a80749634349\",\n                \"name\": \"Café Abderhalden\",\n                \"lat\": 47.30287,\n                \"lon\": 9.086738,\n                \"address\": \"Poststrasse 22\",\n                \"region_id\": \"653b56e9-5765-4d38-abad-acf6a7bb7e00\",\n                \"post_code\": \"9630\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=712cfb73-6684-4b46-cb1d-a80749634349&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=712cfb73-6684-4b46-cb1d-a80749634349&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=712cfb73-6684-4b46-cb1d-a80749634349&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"d62233f1-c8f3-4540-d69a-d73f60eb791e\",\n                \"name\": \"Café Bar Grande\",\n                \"lat\": 47.37541,\n                \"lon\": 8.543648,\n                \"address\": \"Limmatquai 118\",\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"post_code\": \"8001\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d62233f1-c8f3-4540-d69a-d73f60eb791e&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d62233f1-c8f3-4540-d69a-d73f60eb791e&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d62233f1-c8f3-4540-d69a-d73f60eb791e&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"13107577-87b9-4d69-cabd-48ad693a4eb4\",\n                \"name\": \"Café Bar Nordbrücke\",\n                \"lat\": 47.393338,\n                \"lon\": 8.529448,\n                \"address\": \"Dammstrasse 58\",\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"post_code\": \"8037\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=13107577-87b9-4d69-cabd-48ad693a4eb4&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=13107577-87b9-4d69-cabd-48ad693a4eb4&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=13107577-87b9-4d69-cabd-48ad693a4eb4&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"f4266936-a9a4-4cba-af4a-4bf6c7bb4a80\",\n                \"name\": \"Café Birdie\",\n                \"lat\": 46.199985,\n                \"lon\": 6.137734,\n                \"address\": \"Rue des Bains 40\",\n                \"region_id\": \"870e340b-1953-428e-d2dc-1c24eaf56b4a\",\n                \"post_code\": \"1205\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f4266936-a9a4-4cba-af4a-4bf6c7bb4a80&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f4266936-a9a4-4cba-af4a-4bf6c7bb4a80&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f4266936-a9a4-4cba-af4a-4bf6c7bb4a80&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"517b6f69-c2e8-4fcb-f362-8afe71bad3fa\",\n                \"name\": \"Café des Bouchers\",\n                \"lat\": 46.525982,\n                \"lon\": 6.60313,\n                \"address\": \"Avenue du Chablais 21\",\n                \"region_id\": \"6dca8350-0c11-40b5-de3a-6628bf2469da\",\n                \"post_code\": \"1008\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=517b6f69-c2e8-4fcb-f362-8afe71bad3fa&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=517b6f69-c2e8-4fcb-f362-8afe71bad3fa&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=517b6f69-c2e8-4fcb-f362-8afe71bad3fa&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"c26f86aa-4267-4057-a5df-c40493ff1ea7\",\n                \"name\": \"Café du Coin\",\n                \"lat\": 47.103226,\n                \"lon\": 6.830022,\n                \"address\": \"Rue du marché 3\",\n                \"region_id\": \"ae568469-c50a-4932-88bf-8c1eb0218243\",\n                \"post_code\": \"2300\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c26f86aa-4267-4057-a5df-c40493ff1ea7&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c26f86aa-4267-4057-a5df-c40493ff1ea7&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c26f86aa-4267-4057-a5df-c40493ff1ea7&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"8ad07fb6-f16f-4476-c5d6-730a7d2ff6cc\",\n                \"name\": \"Café Europa\",\n                \"lat\": 47.378123942359,\n                \"lon\": 8.5328332833848,\n                \"address\": \"Lagerstrasse 22\",\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"post_code\": \"8004\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8ad07fb6-f16f-4476-c5d6-730a7d2ff6cc&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8ad07fb6-f16f-4476-c5d6-730a7d2ff6cc&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8ad07fb6-f16f-4476-c5d6-730a7d2ff6cc&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"9797c7c0-6f61-490b-dc04-9c837ce024b8\",\n                \"name\": \"Café Ex Machina\",\n                \"lat\": 46.381486,\n                \"lon\": 6.239442,\n                \"address\": \"Rue du Vieux-Marché 11\",\n                \"region_id\": \"d3d5b0b4-34d2-43b4-f7fd-eb969b6f8239\",\n                \"post_code\": \"1260\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9797c7c0-6f61-490b-dc04-9c837ce024b8&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9797c7c0-6f61-490b-dc04-9c837ce024b8&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9797c7c0-6f61-490b-dc04-9c837ce024b8&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"a8124640-5852-4b57-b031-7a46e0ab7ef7\",\n                \"name\": \"Café Frühling\",\n                \"lat\": 47.568266,\n                \"lon\": 7.590259,\n                \"address\": \"Klybeckstrasse 69\",\n                \"region_id\": \"a174c4dd-bcc6-47bf-e7a7-51efb4594ff1\",\n                \"post_code\": \"4057\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a8124640-5852-4b57-b031-7a46e0ab7ef7&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a8124640-5852-4b57-b031-7a46e0ab7ef7&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a8124640-5852-4b57-b031-7a46e0ab7ef7&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"0e0eb1a0-001d-4af1-d939-5ebfcea032af\",\n                \"name\": \"Café Hubertus\",\n                \"lat\": 47.377675,\n                \"lon\": 8.499055,\n                \"address\": \"Letzigraben 101\",\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"post_code\": \"8003\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=0e0eb1a0-001d-4af1-d939-5ebfcea032af&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=0e0eb1a0-001d-4af1-d939-5ebfcea032af&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=0e0eb1a0-001d-4af1-d939-5ebfcea032af&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"1893daa8-b6ec-491e-e060-1d8b5d603109\",\n                \"name\": \"Café Primeur\",\n                \"lat\": 46.78135,\n                \"lon\": 6.6364,\n                \"address\": \"Rue de Neuchâtel 14\",\n                \"region_id\": \"40afeadd-d2d8-47c7-f342-9079af18f26f\",\n                \"post_code\": \"CH-1400\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1893daa8-b6ec-491e-e060-1d8b5d603109&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1893daa8-b6ec-491e-e060-1d8b5d603109&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1893daa8-b6ec-491e-e060-1d8b5d603109&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"763f5527-3907-4609-9d80-8d7ed31d3eb5\",\n                \"name\": \"Café Saint Pierre\",\n                \"lat\": 46.519403,\n                \"lon\": 6.637083,\n                \"address\": \"Place Benjamin-Constant 1\",\n                \"region_id\": \"6dca8350-0c11-40b5-de3a-6628bf2469da\",\n                \"post_code\": \"1003\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=763f5527-3907-4609-9d80-8d7ed31d3eb5&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=763f5527-3907-4609-9d80-8d7ed31d3eb5&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=763f5527-3907-4609-9d80-8d7ed31d3eb5&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"7ac00e73-7685-4586-c89e-44b7d3e1aa85\",\n                \"name\": \"Caffè Bar Sattler\",\n                \"lat\": 46.954688,\n                \"lon\": 7.433766,\n                \"address\": \"Mittelstrasse 15a\",\n                \"region_id\": \"b33b7cef-c74d-4789-9a31-8586dcf47e11\",\n                \"post_code\": \"3012\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7ac00e73-7685-4586-c89e-44b7d3e1aa85&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7ac00e73-7685-4586-c89e-44b7d3e1aa85&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7ac00e73-7685-4586-c89e-44b7d3e1aa85&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"0858de34-448f-43ee-f6ec-3727dc3db2d1\",\n                \"name\": \"Caffè Eccetera\",\n                \"lat\": 47.561392,\n                \"lon\": 7.578889,\n                \"address\": \"Mittlere Strasse 26\",\n                \"region_id\": \"a174c4dd-bcc6-47bf-e7a7-51efb4594ff1\",\n                \"post_code\": \"4056\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=0858de34-448f-43ee-f6ec-3727dc3db2d1&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=0858de34-448f-43ee-f6ec-3727dc3db2d1&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=0858de34-448f-43ee-f6ec-3727dc3db2d1&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"2aa7d212-f7da-4712-df85-c486ce1d1e64\",\n                \"name\": \"Casa Mozzarella\",\n                \"lat\": 46.192859,\n                \"lon\": 6.14346,\n                \"address\": \"Rue Dizerens 1\",\n                \"region_id\": \"870e340b-1953-428e-d2dc-1c24eaf56b4a\",\n                \"post_code\": \"1205\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2aa7d212-f7da-4712-df85-c486ce1d1e64&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2aa7d212-f7da-4712-df85-c486ce1d1e64&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2aa7d212-f7da-4712-df85-c486ce1d1e64&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"a3e2c5ab-3990-4f8b-b438-c513946fdb39\",\n                \"name\": \"CASACOSI restaurant & bar\",\n                \"lat\": 47.418663,\n                \"lon\": 8.561407,\n                \"address\": \"Wright-Strasse 74a\",\n                \"region_id\": \"7b47f785-1afa-4332-a7c2-5e0bc978ba98\",\n                \"post_code\": \"8152\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a3e2c5ab-3990-4f8b-b438-c513946fdb39&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a3e2c5ab-3990-4f8b-b438-c513946fdb39&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a3e2c5ab-3990-4f8b-b438-c513946fdb39&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"398f5f13-fe83-4b3f-d2f1-e6396c0372ed\",\n                \"name\": \"Centre Mondial du Cyclisme UCI, Café-Restaurant Le Velodrome\",\n                \"lat\": 46.318489,\n                \"lon\": 6.933857,\n                \"address\": \"Chemin de la Mêlée 12\",\n                \"region_id\": \"0efd2e5e-3767-4ce9-fcb3-8e4db2dbcda1\",\n                \"post_code\": \"1860\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=398f5f13-fe83-4b3f-d2f1-e6396c0372ed&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=398f5f13-fe83-4b3f-d2f1-e6396c0372ed&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=398f5f13-fe83-4b3f-d2f1-e6396c0372ed&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"69fe598a-6058-4b2e-e6b9-8817bad0ec9b\",\n                \"name\": \"Centre sportif du Mottier Carvelobox\",\n                \"lat\": 46.556743503127,\n                \"lon\": 6.6349657169924,\n                \"address\": \"Route de Lausanne 9\",\n                \"region_id\": \"c62109e5-b814-4ff9-e352-9e918fd2fdac\",\n                \"post_code\": \"1052\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=69fe598a-6058-4b2e-e6b9-8817bad0ec9b&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=69fe598a-6058-4b2e-e6b9-8817bad0ec9b&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=69fe598a-6058-4b2e-e6b9-8817bad0ec9b&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"9b5ff999-7edc-4794-8d4e-d4c37981bd40\",\n                \"name\": \"Chäs Alberta\",\n                \"lat\": 47.490086512417,\n                \"lon\": 8.7112334410907,\n                \"address\": \"Tössfeldstrasse 67b\",\n                \"region_id\": \"2c94a5e6-e822-4605-f0f5-64b174f979b6\",\n                \"post_code\": \"8406\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9b5ff999-7edc-4794-8d4e-d4c37981bd40&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9b5ff999-7edc-4794-8d4e-d4c37981bd40&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9b5ff999-7edc-4794-8d4e-d4c37981bd40&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"15dfe347-f272-4af0-a375-3f97625eb297\",\n                \"name\": \"Chez Rüfi\",\n                \"lat\": 47.137944,\n                \"lon\": 7.246314,\n                \"address\": \"Jean-Sessler-Strasse 5\",\n                \"region_id\": \"9e101bd8-7f9a-4cfe-9708-4922daf8266a\",\n                \"post_code\": \"2502\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=15dfe347-f272-4af0-a375-3f97625eb297&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=15dfe347-f272-4af0-a375-3f97625eb297&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=15dfe347-f272-4af0-a375-3f97625eb297&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"d1815b12-dcaa-49ab-93fd-6994817312c5\",\n                \"name\": \"ChezVelo\",\n                \"lat\": 47.567725348676,\n                \"lon\": 7.5768770329205,\n                \"address\": \"Vogesenstrasse 86\",\n                \"region_id\": \"a174c4dd-bcc6-47bf-e7a7-51efb4594ff1\",\n                \"post_code\": \"4056\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d1815b12-dcaa-49ab-93fd-6994817312c5&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d1815b12-dcaa-49ab-93fd-6994817312c5&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d1815b12-dcaa-49ab-93fd-6994817312c5&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"2bdd77a2-6a53-4d83-825c-2b405b25d849\",\n                \"name\": \"Chlyformat\",\n                \"lat\": 47.344613,\n                \"lon\": 7.901965,\n                \"address\": \"Im Kleinholz 3\",\n                \"region_id\": \"cf10cd2a-4f22-4c01-d82b-404f7537918b\",\n                \"post_code\": \"4600\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2bdd77a2-6a53-4d83-825c-2b405b25d849&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2bdd77a2-6a53-4d83-825c-2b405b25d849&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2bdd77a2-6a53-4d83-825c-2b405b25d849&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"b2befbfd-804d-445e-f634-4dcc9b7790de\",\n                \"name\": \"CO13 Werkstätten\",\n                \"lat\": 47.560469,\n                \"lon\": 7.571308,\n                \"address\": \"Hegenheimerstrasse 59\",\n                \"region_id\": \"a174c4dd-bcc6-47bf-e7a7-51efb4594ff1\",\n                \"post_code\": \"4055\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b2befbfd-804d-445e-f634-4dcc9b7790de&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b2befbfd-804d-445e-f634-4dcc9b7790de&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b2befbfd-804d-445e-f634-4dcc9b7790de&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"fdd4bc8c-69c9-49b2-8b7b-28e8feae191b\",\n                \"name\": \"CO13 Werkstätten Carvelobox\",\n                \"lat\": 47.56055,\n                \"lon\": 7.571313,\n                \"address\": \"Hegenheimerstrasse 59\",\n                \"region_id\": \"a174c4dd-bcc6-47bf-e7a7-51efb4594ff1\",\n                \"post_code\": \"4055\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fdd4bc8c-69c9-49b2-8b7b-28e8feae191b&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fdd4bc8c-69c9-49b2-8b7b-28e8feae191b&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fdd4bc8c-69c9-49b2-8b7b-28e8feae191b&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"cd7bb762-991c-411c-a294-81a7b7b8e6d9\",\n                \"name\": \"Collectors Thun\",\n                \"lat\": 46.763428652569,\n                \"lon\": 7.6117774209712,\n                \"address\": \"c/o Stiftung SILEA, Uttigenstrasse 51\",\n                \"region_id\": \"7f5084e6-4e52-40df-dbe4-bc0c90f01b88\",\n                \"post_code\": \"3600\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=cd7bb762-991c-411c-a294-81a7b7b8e6d9&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=cd7bb762-991c-411c-a294-81a7b7b8e6d9&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=cd7bb762-991c-411c-a294-81a7b7b8e6d9&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"7809d97c-40a0-4fc7-c891-725f336425a6\",\n                \"name\": \"Confiserie Berger Worb\",\n                \"lat\": 46.928343041479,\n                \"lon\": 7.5615940329638,\n                \"address\": \"Hauptstrasse 20\",\n                \"region_id\": \"538720ed-83ce-4313-adf1-67f4c05d484b\",\n                \"post_code\": \"3076\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7809d97c-40a0-4fc7-c891-725f336425a6&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7809d97c-40a0-4fc7-c891-725f336425a6&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7809d97c-40a0-4fc7-c891-725f336425a6&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"9deb07b3-2708-4389-a73f-e94f2cced642\",\n                \"name\": \"Confiserie Brändli\",\n                \"lat\": 47.58525,\n                \"lon\": 7.651464,\n                \"address\": \"Webergässchen\",\n                \"region_id\": \"43f1f773-3d68-4d65-8a35-2a81923d3b13\",\n                \"post_code\": \"4125\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9deb07b3-2708-4389-a73f-e94f2cced642&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9deb07b3-2708-4389-a73f-e94f2cced642&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9deb07b3-2708-4389-a73f-e94f2cced642&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"794409bc-ceba-42a6-98ea-d514804e1e36\",\n                \"name\": \"Confiserie Speck\",\n                \"lat\": 47.172474,\n                \"lon\": 8.514878,\n                \"address\": \"Alpenstrasse 12\",\n                \"region_id\": \"12a72002-4ae3-423e-cefc-34acfdf670c3\",\n                \"post_code\": \"6300\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=794409bc-ceba-42a6-98ea-d514804e1e36&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=794409bc-ceba-42a6-98ea-d514804e1e36&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=794409bc-ceba-42a6-98ea-d514804e1e36&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"d9aed8d3-2f44-4fb5-f446-2bd1afb50d8d\",\n                \"name\": \"Confiserie Suard\",\n                \"lat\": 46.80359,\n                \"lon\": 7.151729,\n                \"address\": \"Arcade de la Gare 5\",\n                \"region_id\": \"11295123-0163-4622-88a4-29c2b7f6d7e7\",\n                \"post_code\": \"1700\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d9aed8d3-2f44-4fb5-f446-2bd1afb50d8d&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d9aed8d3-2f44-4fb5-f446-2bd1afb50d8d&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d9aed8d3-2f44-4fb5-f446-2bd1afb50d8d&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"ee290b92-ca87-476c-91fa-8c78829e7b68\",\n                \"name\": \"Coop Münsingen\",\n                \"lat\": 46.875136,\n                \"lon\": 7.563332,\n                \"address\": \"Dorfplatz 6\",\n                \"region_id\": \"73a224e8-2e9d-401c-db6f-06bcb3c45417\",\n                \"post_code\": \"3110\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ee290b92-ca87-476c-91fa-8c78829e7b68&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ee290b92-ca87-476c-91fa-8c78829e7b68&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ee290b92-ca87-476c-91fa-8c78829e7b68&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"c1ba97c6-494c-4fdf-abaa-7450862a6820\",\n                \"name\": \"Corde Coffee Coutance\",\n                \"lat\": 46.206608111151,\n                \"lon\": 6.1421530042645,\n                \"address\": \"Rue Claudine-Levet 7 (centre)\",\n                \"region_id\": \"870e340b-1953-428e-d2dc-1c24eaf56b4a\",\n                \"post_code\": \"1201\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c1ba97c6-494c-4fdf-abaa-7450862a6820&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c1ba97c6-494c-4fdf-abaa-7450862a6820&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c1ba97c6-494c-4fdf-abaa-7450862a6820&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"443def35-bdd0-4303-b941-a671b6d51178\",\n                \"name\": \"Corde Coffee Eaux-Vives\",\n                \"lat\": 46.202991903407,\n                \"lon\": 6.160065668697,\n                \"address\": \"Rue du 31 Décembre 32\",\n                \"region_id\": \"870e340b-1953-428e-d2dc-1c24eaf56b4a\",\n                \"post_code\": \"1207\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=443def35-bdd0-4303-b941-a671b6d51178&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=443def35-bdd0-4303-b941-a671b6d51178&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=443def35-bdd0-4303-b941-a671b6d51178&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"27c72c0f-9b48-4578-c336-5fedb4c3a7c0\",\n                \"name\": \"Cottage Café\",\n                \"lat\": 46.208716,\n                \"lon\": 6.148521,\n                \"address\": \"Rue Adhémar-Fabri 7\",\n                \"region_id\": \"870e340b-1953-428e-d2dc-1c24eaf56b4a\",\n                \"post_code\": \"1201\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=27c72c0f-9b48-4578-c336-5fedb4c3a7c0&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=27c72c0f-9b48-4578-c336-5fedb4c3a7c0&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=27c72c0f-9b48-4578-c336-5fedb4c3a7c0&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"b5a91d79-8013-4207-fda8-ab8fd2f9c0fc\",\n                \"name\": \"Cyclo Café\",\n                \"lat\": 46.794922,\n                \"lon\": 7.15685,\n                \"address\": \"Boulevard de Pérolles 91\",\n                \"region_id\": \"11295123-0163-4622-88a4-29c2b7f6d7e7\",\n                \"post_code\": \"1700\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b5a91d79-8013-4207-fda8-ab8fd2f9c0fc&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b5a91d79-8013-4207-fda8-ab8fd2f9c0fc&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b5a91d79-8013-4207-fda8-ab8fd2f9c0fc&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"795bdbdf-473e-418f-e1e5-325b3320cbc2\",\n                \"name\": \"DEFI VELO Carvelobox\",\n                \"lat\": 46.94645,\n                \"lon\": 7.436741,\n                \"address\": \"Maulbeerstrasse 10\",\n                \"region_id\": \"b33b7cef-c74d-4789-9a31-8586dcf47e11\",\n                \"post_code\": \"3011\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=795bdbdf-473e-418f-e1e5-325b3320cbc2&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=795bdbdf-473e-418f-e1e5-325b3320cbc2&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=795bdbdf-473e-418f-e1e5-325b3320cbc2&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"961f7bf3-c30b-43a2-ba06-86fcd36d507f\",\n                \"name\": \"die Frischlinge\",\n                \"lat\": 47.359244562611,\n                \"lon\": 8.527058669355,\n                \"address\": \"Waffenplatzstrasse 49\",\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"post_code\": \"8002\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=961f7bf3-c30b-43a2-ba06-86fcd36d507f&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=961f7bf3-c30b-43a2-ba06-86fcd36d507f&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=961f7bf3-c30b-43a2-ba06-86fcd36d507f&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"3e68870a-c1c0-4382-dc67-396d002b31fa\",\n                \"name\": \"DoubleDutch GmbH Schröckel-Areal\",\n                \"lat\": 47.49777675389,\n                \"lon\": 8.7411328787452,\n                \"address\": \"Hermannstrasse 11\",\n                \"region_id\": \"2c94a5e6-e822-4605-f0f5-64b174f979b6\",\n                \"post_code\": \"8400\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3e68870a-c1c0-4382-dc67-396d002b31fa&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3e68870a-c1c0-4382-dc67-396d002b31fa&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3e68870a-c1c0-4382-dc67-396d002b31fa&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"7b6106e6-2ede-402f-97f0-5f5200e8eb84\",\n                \"name\": \"DracheNäscht\",\n                \"lat\": 46.94863919554,\n                \"lon\": 7.4493467133109,\n                \"address\": \"Rathausgasse 52\",\n                \"region_id\": \"b33b7cef-c74d-4789-9a31-8586dcf47e11\",\n                \"post_code\": \"3011\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7b6106e6-2ede-402f-97f0-5f5200e8eb84&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7b6106e6-2ede-402f-97f0-5f5200e8eb84&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7b6106e6-2ede-402f-97f0-5f5200e8eb84&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"7031f761-30fa-4284-945e-6aae2651c337\",\n                \"name\": \"Drogerie Haag\",\n                \"lat\": 47.203827277832,\n                \"lon\": 7.5576633411405,\n                \"address\": \"Schulhausstrasse 2\",\n                \"region_id\": \"d2bf4bdd-0dcb-4340-c0da-41885432b053\",\n                \"post_code\": \"4528\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7031f761-30fa-4284-945e-6aae2651c337&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7031f761-30fa-4284-945e-6aae2651c337&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7031f761-30fa-4284-945e-6aae2651c337&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"1306694a-1c3a-4ef6-83fd-5c909a932de0\",\n                \"name\": \"Dropa Drogerie Solothurn\",\n                \"lat\": 47.204586,\n                \"lon\": 7.538845,\n                \"address\": \"Dornacherhof 11\",\n                \"region_id\": \"bfafc160-5f9c-457c-cfa4-31cab72ef14f\",\n                \"post_code\": \"4500\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1306694a-1c3a-4ef6-83fd-5c909a932de0&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1306694a-1c3a-4ef6-83fd-5c909a932de0&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1306694a-1c3a-4ef6-83fd-5c909a932de0&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"a89495e3-6b95-4f20-f519-3e5f93016fc4\",\n                \"name\": \"e-motion Bern\",\n                \"lat\": 46.92987,\n                \"lon\": 7.44699,\n                \"address\": \"Dorfstrasse 22\",\n                \"region_id\": \"8c024719-4721-4f9f-9553-fda1f121a141\",\n                \"post_code\": \"3084\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a89495e3-6b95-4f20-f519-3e5f93016fc4&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a89495e3-6b95-4f20-f519-3e5f93016fc4&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a89495e3-6b95-4f20-f519-3e5f93016fc4&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"9c911bcb-d649-4d8d-b06c-1c767cbbe741\",\n                \"name\": \"e-motion e-Bike Welt Dietikon\",\n                \"lat\": 47.418561815249,\n                \"lon\": 8.3983149133743,\n                \"address\": \"Hagackerstrasse 9a\",\n                \"region_id\": \"78d940f9-80b6-476e-cab4-205e814ac0b8\",\n                \"post_code\": \"8953\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9c911bcb-d649-4d8d-b06c-1c767cbbe741&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9c911bcb-d649-4d8d-b06c-1c767cbbe741&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9c911bcb-d649-4d8d-b06c-1c767cbbe741&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"2b2ada80-e70e-4937-aa07-b6c0f3e3fbf5\",\n                \"name\": \"Eden - BioPunktBasel\",\n                \"lat\": 47.568080767495,\n                \"lon\": 7.5787429476233,\n                \"address\": \"Mülhauserstrasse 78\",\n                \"region_id\": \"a174c4dd-bcc6-47bf-e7a7-51efb4594ff1\",\n                \"post_code\": \"4056\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2b2ada80-e70e-4937-aa07-b6c0f3e3fbf5&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2b2ada80-e70e-4937-aa07-b6c0f3e3fbf5&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2b2ada80-e70e-4937-aa07-b6c0f3e3fbf5&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"a9940532-37d9-4de0-f1d5-bbda7756abd4\",\n                \"name\": \"Einkaufszentrum Telli Carvelobox\",\n                \"lat\": 47.398852988703,\n                \"lon\": 8.0584530533983,\n                \"address\": \"Tellistrasse 13\",\n                \"region_id\": \"956d196e-765b-4bfa-e01f-0db4c2a4876d\",\n                \"post_code\": \"5004 \",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a9940532-37d9-4de0-f1d5-bbda7756abd4&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a9940532-37d9-4de0-f1d5-bbda7756abd4&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a9940532-37d9-4de0-f1d5-bbda7756abd4&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"316f245a-3308-481c-8f04-8d7da1f518cc\",\n                \"name\": \"Einkaufszentrum Zürich-Affoltern (DROPA Drogerie Apotheke)\",\n                \"lat\": 47.420770925272,\n                \"lon\": 8.5077829577339,\n                \"address\": \"In Böden 174 (bei DROPA Drogerie Apotheke)\",\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"post_code\": \"8046\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=316f245a-3308-481c-8f04-8d7da1f518cc&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=316f245a-3308-481c-8f04-8d7da1f518cc&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=316f245a-3308-481c-8f04-8d7da1f518cc&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"943ce659-3ddf-415d-b9e2-95227b6fe0ba\",\n                \"name\": \"einzigartig Frauenfeld\",\n                \"lat\": 47.558213714934,\n                \"lon\": 8.8997624223259,\n                \"address\": \"Zürcherstrasse 209\",\n                \"region_id\": \"1d1fad80-27d0-42e8-f1f9-422bc41482d6\",\n                \"post_code\": \"8500\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=943ce659-3ddf-415d-b9e2-95227b6fe0ba&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=943ce659-3ddf-415d-b9e2-95227b6fe0ba&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=943ce659-3ddf-415d-b9e2-95227b6fe0ba&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"d65d3779-a418-4fdb-ff9b-3540960cb4f5\",\n                \"name\": \"EMS Les Lys\",\n                \"lat\": 46.533085,\n                \"lon\": 6.606335,\n                \"address\": \"Rue des Métiers 3\",\n                \"region_id\": \"74425c6d-df70-4ac9-9800-1877412d3cb6\",\n                \"post_code\": \"1008\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d65d3779-a418-4fdb-ff9b-3540960cb4f5&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d65d3779-a418-4fdb-ff9b-3540960cb4f5&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d65d3779-a418-4fdb-ff9b-3540960cb4f5&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"1578c87c-63ac-4107-914a-59f6d99c54c3\",\n                \"name\": \"Epicerie 79A\",\n                \"lat\": 47.14728,\n                \"lon\": 7.252045,\n                \"address\": \"Schützengasse 79A\",\n                \"region_id\": \"9e101bd8-7f9a-4cfe-9708-4922daf8266a\",\n                \"post_code\": \"2502\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1578c87c-63ac-4107-914a-59f6d99c54c3&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1578c87c-63ac-4107-914a-59f6d99c54c3&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1578c87c-63ac-4107-914a-59f6d99c54c3&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"dbbae631-160a-4729-d179-110bf012a9bd\",\n                \"name\": \"EPONYM bureau d'architectes\",\n                \"lat\": 46.517788692631,\n                \"lon\": 6.6208397539707,\n                \"address\": \"Chemin des Fleurettes 28\",\n                \"region_id\": \"6dca8350-0c11-40b5-de3a-6628bf2469da\",\n                \"post_code\": \"1007\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=dbbae631-160a-4729-d179-110bf012a9bd&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=dbbae631-160a-4729-d179-110bf012a9bd&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=dbbae631-160a-4729-d179-110bf012a9bd&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"e1450218-ecf3-4dd8-bd9c-ff455d78b96d\",\n                \"name\": \"eZee Onex\",\n                \"lat\": 46.185453320076,\n                \"lon\": 6.1005987698114,\n                \"address\": \"Av. Bois-de-la-Chapelle 106\",\n                \"region_id\": \"39de7a8d-c969-4eda-fb28-9a62e113b75e\",\n                \"post_code\": \"1213\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e1450218-ecf3-4dd8-bd9c-ff455d78b96d&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e1450218-ecf3-4dd8-bd9c-ff455d78b96d&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e1450218-ecf3-4dd8-bd9c-ff455d78b96d&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"f5738791-1941-404f-a1ca-a82a63a6eaab\",\n                \"name\": \"Fächerei | Lokstadt\",\n                \"lat\": 47.495678825926,\n                \"lon\": 8.7152765044759,\n                \"address\": \"Emil-Krebs-Gasse 10\",\n                \"region_id\": \"2c94a5e6-e822-4605-f0f5-64b174f979b6\",\n                \"post_code\": \"8400\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f5738791-1941-404f-a1ca-a82a63a6eaab&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f5738791-1941-404f-a1ca-a82a63a6eaab&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f5738791-1941-404f-a1ca-a82a63a6eaab&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"1218054a-7b4b-40fd-c398-780130a1a12a\",\n                \"name\": \"Farmacia Quattrini\",\n                \"lat\": 45.87009,\n                \"lon\": 8.988609,\n                \"address\": \"Piazza del Ponte 1\",\n                \"region_id\": \"1221777d-5589-4410-eedd-39c8285ec4f8\",\n                \"post_code\": \"6850\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1218054a-7b4b-40fd-c398-780130a1a12a&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1218054a-7b4b-40fd-c398-780130a1a12a&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1218054a-7b4b-40fd-c398-780130a1a12a&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"08f6c5f7-a5d7-4a45-9814-d210296e9c15\",\n                \"name\": \"Fateba\",\n                \"lat\": 47.497065,\n                \"lon\": 8.727119,\n                \"address\": \" Turmhaldenstrasse 6\",\n                \"region_id\": \"2c94a5e6-e822-4605-f0f5-64b174f979b6\",\n                \"post_code\": \"8400\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=08f6c5f7-a5d7-4a45-9814-d210296e9c15&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=08f6c5f7-a5d7-4a45-9814-d210296e9c15&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=08f6c5f7-a5d7-4a45-9814-d210296e9c15&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"1ca43100-6508-494f-e967-56cb23cb5da9\",\n                \"name\": \"Feins Bio Dübendorf\",\n                \"lat\": 47.40062,\n                \"lon\": 8.6223,\n                \"address\": \"Bahnhofstrasse 61\",\n                \"region_id\": \"4944205f-60e3-408b-e3fb-dd888e1d764b\",\n                \"post_code\": \"8600\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1ca43100-6508-494f-e967-56cb23cb5da9&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1ca43100-6508-494f-e967-56cb23cb5da9&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1ca43100-6508-494f-e967-56cb23cb5da9&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"562dc09b-3ee0-4370-aeca-d92e42d4f8f7\",\n                \"name\": \"Felber Beck\",\n                \"lat\": 47.212217,\n                \"lon\": 7.78746,\n                \"address\": \" Wiesenstrasse 5\",\n                \"region_id\": \"35643a71-324e-485c-e9ec-339197df7c4d\",\n                \"post_code\": \"4900\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=562dc09b-3ee0-4370-aeca-d92e42d4f8f7&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=562dc09b-3ee0-4370-aeca-d92e42d4f8f7&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=562dc09b-3ee0-4370-aeca-d92e42d4f8f7&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"6afe859e-5cce-435c-c462-05b8d15e10fb\",\n                \"name\": \"Felber Beck\",\n                \"lat\": 47.212486833519,\n                \"lon\": 7.6191790104153,\n                \"address\": \"Bahnhofstrasse 2\",\n                \"region_id\": \"f87afc5e-6c73-4b56-ef63-b7c718171384\",\n                \"post_code\": \"4543\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6afe859e-5cce-435c-c462-05b8d15e10fb&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6afe859e-5cce-435c-c462-05b8d15e10fb&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6afe859e-5cce-435c-c462-05b8d15e10fb&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"fa2c0a07-3985-4322-c88d-239f96eec52b\",\n                \"name\": \"Fiches Nord Carvelobox\",\n                \"lat\": 46.537855,\n                \"lon\": 6.654264,\n                \"address\": \"Ch. de Bérée 22D\",\n                \"region_id\": \"6dca8350-0c11-40b5-de3a-6628bf2469da\",\n                \"post_code\": \"1010\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fa2c0a07-3985-4322-c88d-239f96eec52b&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fa2c0a07-3985-4322-c88d-239f96eec52b&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fa2c0a07-3985-4322-c88d-239f96eec52b&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"e708e132-6ea2-447f-a6c5-2e7d03f76a68\",\n                \"name\": \"Fleur de Pains Ecublens\",\n                \"lat\": 46.528673,\n                \"lon\": 6.566498,\n                \"address\": \"Avenue du Tir-Fédéral 88\",\n                \"region_id\": \"51b1fe9d-e97e-4c7e-d4fb-de97fa7b82dc\",\n                \"post_code\": \"1024\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e708e132-6ea2-447f-a6c5-2e7d03f76a68&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e708e132-6ea2-447f-a6c5-2e7d03f76a68&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e708e132-6ea2-447f-a6c5-2e7d03f76a68&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"8fa33e18-6420-4352-855d-532b5dbac6a2\",\n                \"name\": \"Fleur de Pains Morges\",\n                \"lat\": 46.508293,\n                \"lon\": 6.498588,\n                \"address\": \"Rue Louis de Savoie 55\",\n                \"region_id\": \"1d2a31ac-7f9c-437a-b924-4b984c483f27\",\n                \"post_code\": \"1110\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8fa33e18-6420-4352-855d-532b5dbac6a2&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8fa33e18-6420-4352-855d-532b5dbac6a2&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8fa33e18-6420-4352-855d-532b5dbac6a2&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"9c146574-1b7a-49d7-bcf9-68cd7408af73\",\n                \"name\": \"Fleur de Pains Vevey\",\n                \"lat\": 46.461639,\n                \"lon\": 6.842883,\n                \"address\": \"Rue de Lausanne 17\",\n                \"region_id\": \"a46ade5a-f1ec-4de9-b765-5c06c558b7f4\",\n                \"post_code\": \"1800\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9c146574-1b7a-49d7-bcf9-68cd7408af73&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9c146574-1b7a-49d7-bcf9-68cd7408af73&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9c146574-1b7a-49d7-bcf9-68cd7408af73&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"060b94c9-16e8-4ab7-a071-56983a7b0bcb\",\n                \"name\": \"Floral Lokal\",\n                \"lat\": 47.376736,\n                \"lon\": 8.516195,\n                \"address\": \"Sihlfeldstrasse 93\",\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"post_code\": \"8004\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=060b94c9-16e8-4ab7-a071-56983a7b0bcb&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=060b94c9-16e8-4ab7-a071-56983a7b0bcb&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=060b94c9-16e8-4ab7-a071-56983a7b0bcb&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"a8fad01f-fecb-4f57-c5c5-05f3857c9f01\",\n                \"name\": \"Foound - café & coworking\",\n                \"lat\": 46.208373602174,\n                \"lon\": 6.1384401985834,\n                \"address\": \"rue Jean-Dassier 7\",\n                \"region_id\": \"870e340b-1953-428e-d2dc-1c24eaf56b4a\",\n                \"post_code\": \"1201\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a8fad01f-fecb-4f57-c5c5-05f3857c9f01&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a8fad01f-fecb-4f57-c5c5-05f3857c9f01&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a8fad01f-fecb-4f57-c5c5-05f3857c9f01&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"2fcb8e03-eadb-4179-ad5e-24b2de081dd5\",\n                \"name\": \"FREITAG FLAGSHIP STORE\",\n                \"lat\": 47.385705,\n                \"lon\": 8.51944,\n                \"address\": \"Geroldstrasse 17\",\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"post_code\": \"8005\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2fcb8e03-eadb-4179-ad5e-24b2de081dd5&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2fcb8e03-eadb-4179-ad5e-24b2de081dd5&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2fcb8e03-eadb-4179-ad5e-24b2de081dd5&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"f5455ac6-fee5-4966-c0e2-c5d0e15d548c\",\n                \"name\": \"FREITAG STORE GRÜNGASSE\",\n                \"lat\": 47.373461,\n                \"lon\": 8.524737,\n                \"address\": \"Grüngasse 21\",\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"post_code\": \"8004\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f5455ac6-fee5-4966-c0e2-c5d0e15d548c&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f5455ac6-fee5-4966-c0e2-c5d0e15d548c&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f5455ac6-fee5-4966-c0e2-c5d0e15d548c&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"042be932-bf74-4f8e-fcb9-8664711ca4d5\",\n                \"name\": \"Gelateria Amalo\",\n                \"lat\": 46.005985054362,\n                \"lon\": 8.9673756187103,\n                \"address\": \"Viale Castagnola 25\",\n                \"region_id\": \"20f207fe-a9a0-4f19-8db2-ca23a76f1ab6\",\n                \"post_code\": \"6909\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=042be932-bf74-4f8e-fcb9-8664711ca4d5&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=042be932-bf74-4f8e-fcb9-8664711ca4d5&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=042be932-bf74-4f8e-fcb9-8664711ca4d5&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"6a03bbbb-1197-49ea-a4e4-76e35fe45e54\",\n                \"name\": \"Gellert-Veloteam GmbH\",\n                \"lat\": 47.549018,\n                \"lon\": 7.60175,\n                \"address\": \"Sevogelstrasse 83\",\n                \"region_id\": \"a174c4dd-bcc6-47bf-e7a7-51efb4594ff1\",\n                \"post_code\": \"4052\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6a03bbbb-1197-49ea-a4e4-76e35fe45e54&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6a03bbbb-1197-49ea-a4e4-76e35fe45e54&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6a03bbbb-1197-49ea-a4e4-76e35fe45e54&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"e9eae7c9-c537-4c5c-d765-7a1345953c0d\",\n                \"name\": \"Gemeinde Tägerwilen\",\n                \"lat\": 47.6564,\n                \"lon\": 9.13146,\n                \"address\": \"Bahnhofstrasse 3\",\n                \"region_id\": \"efd5cc8f-5db1-402d-e667-20fdf5b2903a\",\n                \"post_code\": \"8274\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e9eae7c9-c537-4c5c-d765-7a1345953c0d&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e9eae7c9-c537-4c5c-d765-7a1345953c0d&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e9eae7c9-c537-4c5c-d765-7a1345953c0d&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"dc251c21-152b-4048-c5e5-e11ef1f858d8\",\n                \"name\": \"Genèveroule Bains des Pâquis\",\n                \"lat\": 46.211137816994,\n                \"lon\": 6.152938070496,\n                \"address\": \"Jetée des Pâquis\",\n                \"region_id\": \"870e340b-1953-428e-d2dc-1c24eaf56b4a\",\n                \"post_code\": \"1201\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=dc251c21-152b-4048-c5e5-e11ef1f858d8&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=dc251c21-152b-4048-c5e5-e11ef1f858d8&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=dc251c21-152b-4048-c5e5-e11ef1f858d8&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"845ce861-995f-48ed-95e1-8004f2e2e2b6\",\n                \"name\": \"Genèveroule Montbrillant\",\n                \"lat\": 46.210486,\n                \"lon\": 6.141205,\n                \"address\": \"Place de Montbrillant 17\",\n                \"region_id\": \"870e340b-1953-428e-d2dc-1c24eaf56b4a\",\n                \"post_code\": \"1201\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=845ce861-995f-48ed-95e1-8004f2e2e2b6&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=845ce861-995f-48ed-95e1-8004f2e2e2b6&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=845ce861-995f-48ed-95e1-8004f2e2e2b6&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"5acaa2fe-7398-4394-b389-8bc8a7c8fc2b\",\n                \"name\": \"Gleis 5 Kloten\",\n                \"lat\": 47.44699,\n                \"lon\": 8.58071,\n                \"address\": \"\",\n                \"region_id\": \"460db108-a3d6-4bce-a207-90385d2dcda7\",\n                \"post_code\": \"\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=5acaa2fe-7398-4394-b389-8bc8a7c8fc2b&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=5acaa2fe-7398-4394-b389-8bc8a7c8fc2b&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=5acaa2fe-7398-4394-b389-8bc8a7c8fc2b&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"aec33b62-73c7-4365-ed82-faa31eebf005\",\n                \"name\": \"GODSPEED ebike Bellinzona\",\n                \"lat\": 46.194382082579,\n                \"lon\": 9.0276933323244,\n                \"address\": \"Viale Stazione 32\",\n                \"region_id\": \"6efa6dad-6fd4-4d43-9cf3-c1bdf6be014a\",\n                \"post_code\": \"6500\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=aec33b62-73c7-4365-ed82-faa31eebf005&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=aec33b62-73c7-4365-ed82-faa31eebf005&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=aec33b62-73c7-4365-ed82-faa31eebf005&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"291e34d1-a0c4-41a1-e2e5-54cdba748b01\",\n                \"name\": \"GODSPEED Locarno\",\n                \"lat\": 46.16774117582,\n                \"lon\": 8.796240932865,\n                \"address\": \"Via Serafino Balestra 1A\",\n                \"region_id\": \"0d23fdc5-1fcd-4e7a-ff28-22dce815e731\",\n                \"post_code\": \"6600\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=291e34d1-a0c4-41a1-e2e5-54cdba748b01&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=291e34d1-a0c4-41a1-e2e5-54cdba748b01&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=291e34d1-a0c4-41a1-e2e5-54cdba748b01&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"4a1c7725-bf04-477d-d1d2-38704476df14\",\n                \"name\": \"Golaz Fleurs\",\n                \"lat\": 46.537404022555,\n                \"lon\": 6.5819842410665,\n                \"address\": \"Rue Neuve 5\",\n                \"region_id\": \"ff8117b1-f1eb-4dab-b060-1ba4a7183012\",\n                \"post_code\": \"1020\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=4a1c7725-bf04-477d-d1d2-38704476df14&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=4a1c7725-bf04-477d-d1d2-38704476df14&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=4a1c7725-bf04-477d-d1d2-38704476df14&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"4e6c35b2-2b83-4199-c8be-4f9d6823c45c\",\n                \"name\": \"Grand Café Lochergut\",\n                \"lat\": 47.375833674698,\n                \"lon\": 8.5174548749834,\n                \"address\": \"Badenerstrasse 230\",\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"post_code\": \"8004\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=4e6c35b2-2b83-4199-c8be-4f9d6823c45c&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=4e6c35b2-2b83-4199-c8be-4f9d6823c45c&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=4e6c35b2-2b83-4199-c8be-4f9d6823c45c&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"5efc7cda-8172-4c14-ab29-a4db298bdc0c\",\n                \"name\": \"GRIP Climbing Biel\",\n                \"lat\": 47.144405551608,\n                \"lon\": 7.2676372091364,\n                \"address\": \"Rennweg 62\",\n                \"region_id\": \"9e101bd8-7f9a-4cfe-9708-4922daf8266a\",\n                \"post_code\": \"2504\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=5efc7cda-8172-4c14-ab29-a4db298bdc0c&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=5efc7cda-8172-4c14-ab29-a4db298bdc0c&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=5efc7cda-8172-4c14-ab29-a4db298bdc0c&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"24e2de51-4871-4720-992c-48abfb7dfff9\",\n                \"name\": \"Grünraum\",\n                \"lat\": 47.498588,\n                \"lon\": 8.719661,\n                \"address\": \"Schützenstrasse 1\",\n                \"region_id\": \"2c94a5e6-e822-4605-f0f5-64b174f979b6\",\n                \"post_code\": \"8400\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=24e2de51-4871-4720-992c-48abfb7dfff9&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=24e2de51-4871-4720-992c-48abfb7dfff9&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=24e2de51-4871-4720-992c-48abfb7dfff9&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"488c9201-654a-4758-bcbc-921c05f19046\",\n                \"name\": \"Güttinger Fleurs\",\n                \"lat\": 46.532527,\n                \"lon\": 6.646982,\n                \"address\": \"Place de La Sallaz 6\",\n                \"region_id\": \"6dca8350-0c11-40b5-de3a-6628bf2469da\",\n                \"post_code\": \"1010\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=488c9201-654a-4758-bcbc-921c05f19046&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=488c9201-654a-4758-bcbc-921c05f19046&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=488c9201-654a-4758-bcbc-921c05f19046&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"fd027e71-3762-4a4a-9ba2-f0fb13649e4b\",\n                \"name\": \"GZ Heuried Carvelobox\",\n                \"lat\": 47.367214804609,\n                \"lon\": 8.5036775256874,\n                \"address\": \"Döltschiweg 130\",\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"post_code\": \"8055\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fd027e71-3762-4a4a-9ba2-f0fb13649e4b&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fd027e71-3762-4a4a-9ba2-f0fb13649e4b&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fd027e71-3762-4a4a-9ba2-f0fb13649e4b&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"363e5f7e-1140-40d8-82cb-9afcac4c86e4\",\n                \"name\": \"Heilsarmee brocki.ch Zürich\",\n                \"lat\": 47.385250737493,\n                \"lon\": 8.5187188797619,\n                \"address\": \"Geroldstrasse 29\",\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"post_code\": \"8005\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=363e5f7e-1140-40d8-82cb-9afcac4c86e4&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=363e5f7e-1140-40d8-82cb-9afcac4c86e4&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=363e5f7e-1140-40d8-82cb-9afcac4c86e4&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"a829723f-4826-45ef-8050-0f2eef29a4ac\",\n                \"name\": \"Herti Einkaufszenter\",\n                \"lat\": 47.177805,\n                \"lon\": 8.50582,\n                \"address\": \"Hertizentrum\",\n                \"region_id\": \"12a72002-4ae3-423e-cefc-34acfdf670c3\",\n                \"post_code\": \"6300\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a829723f-4826-45ef-8050-0f2eef29a4ac&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a829723f-4826-45ef-8050-0f2eef29a4ac&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a829723f-4826-45ef-8050-0f2eef29a4ac&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"65ac88d7-4a78-48e0-a9a0-eba4a23d62e7\",\n                \"name\": \"Hof Rinderbrunnen\",\n                \"lat\": 47.309855431485,\n                \"lon\": 8.7782148171947,\n                \"address\": \"Grütstrasse 141\",\n                \"region_id\": \"be78dc60-f7ab-44e2-8786-9c8e2b31a6e8\",\n                \"post_code\": \"8624\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=65ac88d7-4a78-48e0-a9a0-eba4a23d62e7&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=65ac88d7-4a78-48e0-a9a0-eba4a23d62e7&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=65ac88d7-4a78-48e0-a9a0-eba4a23d62e7&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"209eefda-65ef-4eb7-e0df-518b22529abe\",\n                \"name\": \"Hofgarten Hofwiesenstrasse Carvelobox\",\n                \"lat\": 47.395162,\n                \"lon\": 8.536534,\n                \"address\": \"Hofwiesenstrasse 58\",\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"post_code\": \"8057\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=209eefda-65ef-4eb7-e0df-518b22529abe&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=209eefda-65ef-4eb7-e0df-518b22529abe&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=209eefda-65ef-4eb7-e0df-518b22529abe&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"824a1542-4a12-4764-a527-44c54bed68e0\",\n                \"name\": \"Hofgarten Zwirnerstrasse Carvelobox\",\n                \"lat\": 47.336823545576,\n                \"lon\": 8.5182126588957,\n                \"address\": \"Zwirnerstrasse 269\",\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"post_code\": \"8041\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=824a1542-4a12-4764-a527-44c54bed68e0&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=824a1542-4a12-4764-a527-44c54bed68e0&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=824a1542-4a12-4764-a527-44c54bed68e0&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"ef03d485-8462-4b84-ee22-9d8f5c5fe317\",\n                \"name\": \"Holy Cargo Zürich\",\n                \"lat\": 47.364501100802,\n                \"lon\": 8.521172836162,\n                \"address\": \"Uetlibergstrasse 15,\",\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"post_code\": \"8045\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ef03d485-8462-4b84-ee22-9d8f5c5fe317&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ef03d485-8462-4b84-ee22-9d8f5c5fe317&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ef03d485-8462-4b84-ee22-9d8f5c5fe317&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"701a9390-afca-41fc-dc4a-c509da2bbb55\",\n                \"name\": \"Horace Café\",\n                \"lat\": 46.203167972422,\n                \"lon\": 6.135075733746,\n                \"address\": \"3 chemin du 23 Août\",\n                \"region_id\": \"870e340b-1953-428e-d2dc-1c24eaf56b4a\",\n                \"post_code\": \"1205\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=701a9390-afca-41fc-dc4a-c509da2bbb55&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=701a9390-afca-41fc-dc4a-c509da2bbb55&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=701a9390-afca-41fc-dc4a-c509da2bbb55&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"c1e64523-d511-4c64-c1c5-90737867f793\",\n                \"name\": \"Hôtel Agora Swiss Night\",\n                \"lat\": 46.515227,\n                \"lon\": 6.627819,\n                \"address\": \"Avenue du Rond-Point 9\",\n                \"region_id\": \"6dca8350-0c11-40b5-de3a-6628bf2469da\",\n                \"post_code\": \"1006\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c1e64523-d511-4c64-c1c5-90737867f793&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c1e64523-d511-4c64-c1c5-90737867f793&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c1e64523-d511-4c64-c1c5-90737867f793&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"87a8a850-b79c-4a6e-c296-83d0b6bcee7d\",\n                \"name\": \"Hôtel Alpha Palmiers\",\n                \"lat\": 46.518474,\n                \"lon\": 6.630067,\n                \"address\": \"Rue du Petit-Chêne 34\",\n                \"region_id\": \"6dca8350-0c11-40b5-de3a-6628bf2469da\",\n                \"post_code\": \"1003\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=87a8a850-b79c-4a6e-c296-83d0b6bcee7d&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=87a8a850-b79c-4a6e-c296-83d0b6bcee7d&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=87a8a850-b79c-4a6e-c296-83d0b6bcee7d&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"111fc0a4-c947-4825-df79-4c238179ca74\",\n                \"name\": \"Hôtel Auberge de Carouge\",\n                \"lat\": 46.18136,\n                \"lon\": 6.141012,\n                \"address\": \"Rue Ancienne 39\",\n                \"region_id\": \"318fb682-7ede-4e6f-bfab-14ce7be322aa\",\n                \"post_code\": \"1227\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=111fc0a4-c947-4825-df79-4c238179ca74&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=111fc0a4-c947-4825-df79-4c238179ca74&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=111fc0a4-c947-4825-df79-4c238179ca74&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"17283d12-3d51-47c2-fd1d-16c06d3625f5\",\n                \"name\": \"Hôtel de la Gare\",\n                \"lat\": 46.799378,\n                \"lon\": 6.745292,\n                \"address\": \"Avenue du Temple 13\",\n                \"region_id\": \"5db47b97-d990-4315-8670-790d41b21322\",\n                \"post_code\": \"1462\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=17283d12-3d51-47c2-fd1d-16c06d3625f5&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=17283d12-3d51-47c2-fd1d-16c06d3625f5&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=17283d12-3d51-47c2-fd1d-16c06d3625f5&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"ac064fdc-dfac-45cc-e6a2-b5eca5aed9be\",\n                \"name\": \"Hôtel de Ville Bussigny\",\n                \"lat\": 46.550531,\n                \"lon\": 6.552015,\n                \"address\": \"Rue de Lausanne 1\",\n                \"region_id\": \"01ab913f-bc77-46cc-ce94-394c2ea0529f\",\n                \"post_code\": \"1030\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ac064fdc-dfac-45cc-e6a2-b5eca5aed9be&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ac064fdc-dfac-45cc-e6a2-b5eca5aed9be&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ac064fdc-dfac-45cc-e6a2-b5eca5aed9be&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"d05285f9-06dc-4d7d-d794-6448cd3df378\",\n                \"name\": \"Hotel illuster - urban & local\",\n                \"lat\": 47.349591143576,\n                \"lon\": 8.7158465172508,\n                \"address\": \"Zürichstrasse 14\",\n                \"region_id\": \"936ccc56-80e6-441f-959b-da5747118c61\",\n                \"post_code\": \"8610\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d05285f9-06dc-4d7d-d794-6448cd3df378&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d05285f9-06dc-4d7d-d794-6448cd3df378&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d05285f9-06dc-4d7d-d794-6448cd3df378&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"b2c876e2-c0e4-4fe4-a882-86cb9dc4568d\",\n                \"name\": \"Hotel Restaurant Ochsen\",\n                \"lat\": 47.385636,\n                \"lon\": 8.180798,\n                \"address\": \"Burghaldenstrasse 33\",\n                \"region_id\": \"e8174fc5-4cdb-4172-80ab-f010b9fb9754\",\n                \"post_code\": \"5600\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b2c876e2-c0e4-4fe4-a882-86cb9dc4568d&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b2c876e2-c0e4-4fe4-a882-86cb9dc4568d&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b2c876e2-c0e4-4fe4-a882-86cb9dc4568d&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"1a33f90d-85ee-4889-bed7-fef20626aae0\",\n                \"name\": \"Hotel Restaurant Rebstock\",\n                \"lat\": 47.055196613482,\n                \"lon\": 8.3126265813424,\n                \"address\": \"St. Leodegarstrasse 3\",\n                \"region_id\": \"404c3386-19d5-4931-b999-4f90fa9c9184\",\n                \"post_code\": \"6006\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1a33f90d-85ee-4889-bed7-fef20626aae0&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1a33f90d-85ee-4889-bed7-fef20626aae0&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1a33f90d-85ee-4889-bed7-fef20626aae0&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"6b62a87a-b03a-4e75-9d6b-5ac7c867d2ee\",\n                \"name\": \"Hotel Swiss Night\",\n                \"lat\": 47.369218,\n                \"lon\": 8.551188,\n                \"address\": \"Steinwiesstrasse 8\",\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"post_code\": \"8032\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6b62a87a-b03a-4e75-9d6b-5ac7c867d2ee&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6b62a87a-b03a-4e75-9d6b-5ac7c867d2ee&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6b62a87a-b03a-4e75-9d6b-5ac7c867d2ee&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"6848241f-1913-4632-ff16-8125a59600d4\",\n                \"name\": \"Hôtel Tulip Inn Lausanne\",\n                \"lat\": 46.528504302395,\n                \"lon\": 6.620869600813,\n                \"address\": \"8-10 Chemin du Cerisier\",\n                \"region_id\": \"6dca8350-0c11-40b5-de3a-6628bf2469da\",\n                \"post_code\": \"1004\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6848241f-1913-4632-ff16-8125a59600d4&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6848241f-1913-4632-ff16-8125a59600d4&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6848241f-1913-4632-ff16-8125a59600d4&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"d82ed950-0cd3-4a94-8f73-64997ae0ded9\",\n                \"name\": \"Hyve\",\n                \"lat\": 47.543353722004,\n                \"lon\": 7.5857777470965,\n                \"address\": \"Gempenstrasse 64\",\n                \"region_id\": \"a174c4dd-bcc6-47bf-e7a7-51efb4594ff1\",\n                \"post_code\": \"4053\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d82ed950-0cd3-4a94-8f73-64997ae0ded9&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d82ed950-0cd3-4a94-8f73-64997ae0ded9&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d82ed950-0cd3-4a94-8f73-64997ae0ded9&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"2845f01a-1dc1-493f-a636-a0cbe23461f7\",\n                \"name\": \"Industrielle Betriebe Interlaken AG Carvelobox\",\n                \"lat\": 46.67935,\n                \"lon\": 7.85032,\n                \"address\": \"Fabrikstrasse 8\",\n                \"region_id\": \"81fc6929-35b9-4f17-bb7d-17836f94f59c\",\n                \"post_code\": \"3800\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2845f01a-1dc1-493f-a636-a0cbe23461f7&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2845f01a-1dc1-493f-a636-a0cbe23461f7&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2845f01a-1dc1-493f-a636-a0cbe23461f7&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"46563bba-02fe-4254-d85d-06d478385a2c\",\n                \"name\": \"John Baker Helvetiaplatz\",\n                \"lat\": 47.376375,\n                \"lon\": 8.526367,\n                \"address\": \"Molkenstrasse 15\",\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"post_code\": \"8004\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=46563bba-02fe-4254-d85d-06d478385a2c&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=46563bba-02fe-4254-d85d-06d478385a2c&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=46563bba-02fe-4254-d85d-06d478385a2c&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"918da1af-355e-4523-ee6f-538e9620638d\",\n                \"name\": \"JUMBO\",\n                \"lat\": 47.562145257959,\n                \"lon\": 7.595731962385,\n                \"address\": \"Clarastrasse 6\",\n                \"region_id\": \"a174c4dd-bcc6-47bf-e7a7-51efb4594ff1\",\n                \"post_code\": \"4058\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=918da1af-355e-4523-ee6f-538e9620638d&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=918da1af-355e-4523-ee6f-538e9620638d&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=918da1af-355e-4523-ee6f-538e9620638d&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"d6ff65e7-7093-437e-8176-4a898fac2322\",\n                \"name\": \"JUNG Holzofenbäckerei Klusplatz\",\n                \"lat\": 47.364972,\n                \"lon\": 8.566491,\n                \"address\": \"Bergstrasse 163\",\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"post_code\": \"8032\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d6ff65e7-7093-437e-8176-4a898fac2322&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d6ff65e7-7093-437e-8176-4a898fac2322&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d6ff65e7-7093-437e-8176-4a898fac2322&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"c33e32bb-ca88-4a4b-99ea-06678a3309f3\",\n                \"name\": \"KaffeeKlatsch\",\n                \"lat\": 46.792954,\n                \"lon\": 9.82026,\n                \"address\": \"Promenade 38\",\n                \"region_id\": \"1ee3f54a-247a-4e01-c127-437a44d0eee1\",\n                \"post_code\": \"7270\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c33e32bb-ca88-4a4b-99ea-06678a3309f3&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c33e32bb-ca88-4a4b-99ea-06678a3309f3&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c33e32bb-ca88-4a4b-99ea-06678a3309f3&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"f68e2806-27a3-42fc-ad41-ee00b59c2cab\",\n                \"name\": \"Kafi Ferdinand\",\n                \"lat\": 47.370138,\n                \"lon\": 8.510515,\n                \"address\": \"Gutstrasse 2\",\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"post_code\": \"8055\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f68e2806-27a3-42fc-ad41-ee00b59c2cab&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f68e2806-27a3-42fc-ad41-ee00b59c2cab&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f68e2806-27a3-42fc-ad41-ee00b59c2cab&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"6994ee0b-e472-44a3-c010-43f7cbbb95af\",\n                \"name\": \"Kafi Franz\",\n                \"lat\": 47.424629,\n                \"lon\": 9.381908,\n                \"address\": \"Linsebühlstrasse 35\",\n                \"region_id\": \"4886ff58-4bba-4109-a876-cdad14cd089a\",\n                \"post_code\": \"9000\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6994ee0b-e472-44a3-c010-43f7cbbb95af&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6994ee0b-e472-44a3-c010-43f7cbbb95af&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6994ee0b-e472-44a3-c010-43f7cbbb95af&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"ff0ee751-360f-474b-a82c-8e3f53faf1da\",\n                \"name\": \"Kafi fürDich\",\n                \"lat\": 47.377258,\n                \"lon\": 8.522989,\n                \"address\": \"Stauffacherstrasse 141\",\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"post_code\": \"8004\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ff0ee751-360f-474b-a82c-8e3f53faf1da&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ff0ee751-360f-474b-a82c-8e3f53faf1da&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ff0ee751-360f-474b-a82c-8e3f53faf1da&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"cbe6bf28-ff3a-4731-875f-cddd17b22391\",\n                \"name\": \"Kantonsbibliothek Baselland\",\n                \"lat\": 47.48589,\n                \"lon\": 7.73081,\n                \"address\": \"Emma Herwegh-Platz 4\",\n                \"region_id\": \"6dfbb03a-0bdc-4f1c-a3e9-0516555e6f45\",\n                \"post_code\": \"4410\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=cbe6bf28-ff3a-4731-875f-cddd17b22391&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=cbe6bf28-ff3a-4731-875f-cddd17b22391&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=cbe6bf28-ff3a-4731-875f-cddd17b22391&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"92f2e98d-2d83-47d4-f813-cc17520c25de\",\n                \"name\": \"Kiöskli\",\n                \"lat\": 47.361059,\n                \"lon\": 8.506359,\n                \"address\": \"Schweighofstrasse 230\",\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"post_code\": \"8045\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=92f2e98d-2d83-47d4-f813-cc17520c25de&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=92f2e98d-2d83-47d4-f813-cc17520c25de&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=92f2e98d-2d83-47d4-f813-cc17520c25de&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"12069524-253b-4302-c81b-65d7b5bdc5d3\",\n                \"name\": \"KLARA\",\n                \"lat\": 47.562439,\n                \"lon\": 7.595526,\n                \"address\": \"Clarastrasse 13\",\n                \"region_id\": \"a174c4dd-bcc6-47bf-e7a7-51efb4594ff1\",\n                \"post_code\": \"4058\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=12069524-253b-4302-c81b-65d7b5bdc5d3&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=12069524-253b-4302-c81b-65d7b5bdc5d3&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=12069524-253b-4302-c81b-65d7b5bdc5d3&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"b317fc86-b71e-4f6a-f7f1-0208bc001893\",\n                \"name\": \"Kovats Optik\",\n                \"lat\": 47.472654,\n                \"lon\": 8.308002,\n                \"address\": \"Weite Gasse 32\",\n                \"region_id\": \"908707bf-9235-4fa6-848b-ca7d4c0b1878\",\n                \"post_code\": \"5400\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b317fc86-b71e-4f6a-f7f1-0208bc001893&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b317fc86-b71e-4f6a-f7f1-0208bc001893&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b317fc86-b71e-4f6a-f7f1-0208bc001893&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"f3616568-cede-4f0f-8fb6-ffc20dd40591\",\n                \"name\": \"KSS Freizeitpark\",\n                \"lat\": 47.70483,\n                \"lon\": 8.622909,\n                \"address\": \"Breitenaustrasse 117\",\n                \"region_id\": \"98dca2fc-4104-442c-e5b7-22edf006f6c2\",\n                \"post_code\": \"8200\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f3616568-cede-4f0f-8fb6-ffc20dd40591&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f3616568-cede-4f0f-8fb6-ffc20dd40591&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f3616568-cede-4f0f-8fb6-ffc20dd40591&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"6c24920f-3ffc-4b58-81f2-374011749218\",\n                \"name\": \"kult.kino atelier\",\n                \"lat\": 47.553556,\n                \"lon\": 7.590482,\n                \"address\": \"Theaterstrasse 7\",\n                \"region_id\": \"a174c4dd-bcc6-47bf-e7a7-51efb4594ff1\",\n                \"post_code\": \"4051\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6c24920f-3ffc-4b58-81f2-374011749218&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6c24920f-3ffc-4b58-81f2-374011749218&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6c24920f-3ffc-4b58-81f2-374011749218&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"fb0f2044-50c4-4700-da1b-db7a2aba4bc5\",\n                \"name\": \"Kulturpark Carvelobox\",\n                \"lat\": 47.3889,\n                \"lon\": 8.51779,\n                \"address\": \"Schiffbaustrasse 9a\",\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"post_code\": \"8005\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fb0f2044-50c4-4700-da1b-db7a2aba4bc5&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fb0f2044-50c4-4700-da1b-db7a2aba4bc5&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fb0f2044-50c4-4700-da1b-db7a2aba4bc5&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"b62022fe-dbbe-4ca1-cf0e-bfb673641c6c\",\n                \"name\": \"Kunst Museum Winterthur | Reinhart am Stadtgarten\",\n                \"lat\": 47.500453703512,\n                \"lon\": 8.7285976406885,\n                \"address\": \"Stadthausstrasse 6\",\n                \"region_id\": \"2c94a5e6-e822-4605-f0f5-64b174f979b6\",\n                \"post_code\": \"8400\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b62022fe-dbbe-4ca1-cf0e-bfb673641c6c&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b62022fe-dbbe-4ca1-cf0e-bfb673641c6c&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b62022fe-dbbe-4ca1-cf0e-bfb673641c6c&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"990fffb7-307d-4aa9-cb40-76b2492b40eb\",\n                \"name\": \"Kunstmuseum\",\n                \"lat\": 46.75609,\n                \"lon\": 7.633909,\n                \"address\": \"Hofstettenstrasse 14\",\n                \"region_id\": \"7f5084e6-4e52-40df-dbe4-bc0c90f01b88\",\n                \"post_code\": \"3602\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=990fffb7-307d-4aa9-cb40-76b2492b40eb&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=990fffb7-307d-4aa9-cb40-76b2492b40eb&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=990fffb7-307d-4aa9-cb40-76b2492b40eb&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"6d82c5fe-0d4d-4cae-857d-191f3623e05f\",\n                \"name\": \"L'Aubier Le Café-Hôtel\",\n                \"lat\": 46.991659032695,\n                \"lon\": 6.9282345225387,\n                \"address\": \"rue du Château 1\",\n                \"region_id\": \"9f027749-1360-49fb-dabc-a176a7ed7ef7\",\n                \"post_code\": \"2000\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6d82c5fe-0d4d-4cae-857d-191f3623e05f&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6d82c5fe-0d4d-4cae-857d-191f3623e05f&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6d82c5fe-0d4d-4cae-857d-191f3623e05f&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"1aeffddf-4896-48e3-9d3f-3e60ae21d152\",\n                \"name\": \"L'Epicerie du Marché\",\n                \"lat\": 46.18404,\n                \"lon\": 6.140563,\n                \"address\": \"2 rue du Marché\",\n                \"region_id\": \"318fb682-7ede-4e6f-bfab-14ce7be322aa\",\n                \"post_code\": \"1227\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1aeffddf-4896-48e3-9d3f-3e60ae21d152&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1aeffddf-4896-48e3-9d3f-3e60ae21d152&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1aeffddf-4896-48e3-9d3f-3e60ae21d152&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"4c95c020-669b-4f08-a133-afff75b0bc0f\",\n                \"name\": \"L'Epicerie Vrac\",\n                \"lat\": 46.778551,\n                \"lon\": 6.640473,\n                \"address\": \"Place Pestalozzi 3\",\n                \"region_id\": \"40afeadd-d2d8-47c7-f342-9079af18f26f\",\n                \"post_code\": \"1400\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=4c95c020-669b-4f08-a133-afff75b0bc0f&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=4c95c020-669b-4f08-a133-afff75b0bc0f&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=4c95c020-669b-4f08-a133-afff75b0bc0f&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"8e3ef169-e049-47fb-eff5-1f251254287e\",\n                \"name\": \"L'Espace chocolat\",\n                \"lat\": 46.511095584541,\n                \"lon\": 6.6261117355272,\n                \"address\": \"Av. Frédéric-César-de-la-Harpe 27\",\n                \"region_id\": \"6dca8350-0c11-40b5-de3a-6628bf2469da\",\n                \"post_code\": \"1007\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8e3ef169-e049-47fb-eff5-1f251254287e&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8e3ef169-e049-47fb-eff5-1f251254287e&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8e3ef169-e049-47fb-eff5-1f251254287e&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"082c2439-81b0-4e23-e1e6-f502b5b9e670\",\n                \"name\": \"L'Organic\",\n                \"lat\": 46.996383,\n                \"lon\": 6.936729,\n                \"address\": \"Espace de l'Europe 2\",\n                \"region_id\": \"9f027749-1360-49fb-dabc-a176a7ed7ef7\",\n                \"post_code\": \"2000\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=082c2439-81b0-4e23-e1e6-f502b5b9e670&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=082c2439-81b0-4e23-e1e6-f502b5b9e670&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=082c2439-81b0-4e23-e1e6-f502b5b9e670&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"f17755c7-d7e1-4f86-fd6e-ea3c40da729f\",\n                \"name\": \"La Bioforneria\",\n                \"lat\": 45.991339156703,\n                \"lon\": 8.9429913443159,\n                \"address\": \"Via Pambio 1\",\n                \"region_id\": \"20f207fe-a9a0-4f19-8db2-ca23a76f1ab6\",\n                \"post_code\": \"6900\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f17755c7-d7e1-4f86-fd6e-ea3c40da729f&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f17755c7-d7e1-4f86-fd6e-ea3c40da729f&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f17755c7-d7e1-4f86-fd6e-ea3c40da729f&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"a74929ea-b893-4342-ea44-a1d3278e06ff\",\n                \"name\": \"La Boulotte\",\n                \"lat\": 46.958763013388,\n                \"lon\": 7.4543962352318,\n                \"address\": \"Breitenrainpl.\",\n                \"region_id\": \"b33b7cef-c74d-4789-9a31-8586dcf47e11\",\n                \"post_code\": \"3014\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a74929ea-b893-4342-ea44-a1d3278e06ff&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a74929ea-b893-4342-ea44-a1d3278e06ff&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a74929ea-b893-4342-ea44-a1d3278e06ff&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"71fc1b08-1353-452e-842e-6b124db5caac\",\n                \"name\": \"La Brouette\",\n                \"lat\": 46.528128,\n                \"lon\": 6.615705,\n                \"address\": \"Avenue d'Echallens 79\",\n                \"region_id\": \"6dca8350-0c11-40b5-de3a-6628bf2469da\",\n                \"post_code\": \"1004\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=71fc1b08-1353-452e-842e-6b124db5caac&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=71fc1b08-1353-452e-842e-6b124db5caac&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=71fc1b08-1353-452e-842e-6b124db5caac&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"a20ca4fa-a884-4b5e-9527-f0010d6ccd57\",\n                \"name\": \"La Couronne d'Or\",\n                \"lat\": 46.525037,\n                \"lon\": 6.633741,\n                \"address\": \"Rue des Deux-Marchés 13\",\n                \"region_id\": \"6dca8350-0c11-40b5-de3a-6628bf2469da\",\n                \"post_code\": \"1005\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a20ca4fa-a884-4b5e-9527-f0010d6ccd57&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a20ca4fa-a884-4b5e-9527-f0010d6ccd57&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a20ca4fa-a884-4b5e-9527-f0010d6ccd57&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"b1fe6c61-11a0-4a89-a1b7-f42da9d6eddb\",\n                \"name\": \"La Manivelle\",\n                \"lat\": 46.20970525286,\n                \"lon\": 6.1173546693286,\n                \"address\": \"87 Chemin des Sports\",\n                \"region_id\": \"870e340b-1953-428e-d2dc-1c24eaf56b4a\",\n                \"post_code\": \"1203\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b1fe6c61-11a0-4a89-a1b7-f42da9d6eddb&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b1fe6c61-11a0-4a89-a1b7-f42da9d6eddb&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b1fe6c61-11a0-4a89-a1b7-f42da9d6eddb&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"9cd6bb97-029c-4b9c-92b3-213a5ec1b065\",\n                \"name\": \"La Recyclerie (attention: pas de transport d'enfant)\",\n                \"lat\": 46.524247654285,\n                \"lon\": 6.6374783210478,\n                \"address\": \"Rue St Martin 38b\",\n                \"region_id\": \"6dca8350-0c11-40b5-de3a-6628bf2469da\",\n                \"post_code\": \"1005\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9cd6bb97-029c-4b9c-92b3-213a5ec1b065&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9cd6bb97-029c-4b9c-92b3-213a5ec1b065&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9cd6bb97-029c-4b9c-92b3-213a5ec1b065&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"0fe969e6-c297-4574-d6e1-23e148e2bb8d\",\n                \"name\": \"Laden im Murifeld\",\n                \"lat\": 46.94121,\n                \"lon\": 7.47049,\n                \"address\": \"Mindstrasse 10\",\n                \"region_id\": \"b33b7cef-c74d-4789-9a31-8586dcf47e11\",\n                \"post_code\": \"3006\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=0fe969e6-c297-4574-d6e1-23e148e2bb8d&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=0fe969e6-c297-4574-d6e1-23e148e2bb8d&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=0fe969e6-c297-4574-d6e1-23e148e2bb8d&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"a7875333-557c-4c51-e78b-ad9de1558c6a\",\n                \"name\": \"Lago Lodge\",\n                \"lat\": 47.129174,\n                \"lon\": 7.23772,\n                \"address\": \"Uferweg 5\",\n                \"region_id\": \"8d74766e-0c37-449a-9d11-0bbcc8a4cf37\",\n                \"post_code\": \"CH-2560\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a7875333-557c-4c51-e78b-ad9de1558c6a&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a7875333-557c-4c51-e78b-ad9de1558c6a&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a7875333-557c-4c51-e78b-ad9de1558c6a&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"ad67f4c8-21c1-4690-f4a0-bdd4bd4c99bb\",\n                \"name\": \"Le bout du monde\",\n                \"lat\": 46.458204,\n                \"lon\": 6.850752,\n                \"address\": \"Rue d'Italie 24\",\n                \"region_id\": \"a46ade5a-f1ec-4de9-b765-5c06c558b7f4\",\n                \"post_code\": \"1800\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ad67f4c8-21c1-4690-f4a0-bdd4bd4c99bb&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ad67f4c8-21c1-4690-f4a0-bdd4bd4c99bb&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ad67f4c8-21c1-4690-f4a0-bdd4bd4c99bb&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"2272f787-d3f1-4e7d-d2c3-de5ceb47cba2\",\n                \"name\": \"Le café littéraire\",\n                \"lat\": 46.458413,\n                \"lon\": 6.844941,\n                \"address\": \"Quai Perdonnet 33\",\n                \"region_id\": \"a46ade5a-f1ec-4de9-b765-5c06c558b7f4\",\n                \"post_code\": \"1800\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2272f787-d3f1-4e7d-d2c3-de5ceb47cba2&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2272f787-d3f1-4e7d-d2c3-de5ceb47cba2&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2272f787-d3f1-4e7d-d2c3-de5ceb47cba2&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"372ab003-80f4-46d0-e877-22e9f4cb3839\",\n                \"name\": \"Le Fix\",\n                \"lat\": 46.219427,\n                \"lon\": 6.147151,\n                \"address\": \"Avenue de France 17\",\n                \"region_id\": \"870e340b-1953-428e-d2dc-1c24eaf56b4a\",\n                \"post_code\": \"1202\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=372ab003-80f4-46d0-e877-22e9f4cb3839&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=372ab003-80f4-46d0-e877-22e9f4cb3839&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=372ab003-80f4-46d0-e877-22e9f4cb3839&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"2eb95dcc-ca2d-448a-9f3b-fef4610cacd0\",\n                \"name\": \"Le Guidon Fribourg\",\n                \"lat\": 46.793663139126,\n                \"lon\": 7.1500405999341,\n                \"address\": \"Route St-Nicolas-de-Flüe 6A\",\n                \"region_id\": \"11295123-0163-4622-88a4-29c2b7f6d7e7\",\n                \"post_code\": \"1700\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2eb95dcc-ca2d-448a-9f3b-fef4610cacd0&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2eb95dcc-ca2d-448a-9f3b-fef4610cacd0&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2eb95dcc-ca2d-448a-9f3b-fef4610cacd0&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"874cdd04-fd7c-47d6-cfec-3fb0a61528a5\",\n                \"name\": \"Le Local\",\n                \"lat\": 46.173571199649,\n                \"lon\": 6.1299777277975,\n                \"address\": \"1 Route de la Chapelle, Place du Bachet de Pesay, en face des arrêts de trams\",\n                \"region_id\": \"7cf93ba2-27ef-4339-c550-41fe4608568e\",\n                \"post_code\": \"1227\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=874cdd04-fd7c-47d6-cfec-3fb0a61528a5&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=874cdd04-fd7c-47d6-cfec-3fb0a61528a5&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=874cdd04-fd7c-47d6-cfec-3fb0a61528a5&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"30311784-2ff9-41c8-9231-486e761c29a2\",\n                \"name\": \"Le Moderne\",\n                \"lat\": 46.61637,\n                \"lon\": 7.057434,\n                \"address\": \"Rue Victor-Tissot 2\",\n                \"region_id\": \"478b1931-b70f-47d7-beb2-3401ad4e30ed\",\n                \"post_code\": \"1630\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=30311784-2ff9-41c8-9231-486e761c29a2&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=30311784-2ff9-41c8-9231-486e761c29a2&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=30311784-2ff9-41c8-9231-486e761c29a2&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"4660103a-5c94-4e68-edaa-842389dbc128\",\n                \"name\": \"Le NID\",\n                \"lat\": 46.202287,\n                \"lon\": 6.134383,\n                \"address\": \"Chemin du 23 Août\",\n                \"region_id\": \"870e340b-1953-428e-d2dc-1c24eaf56b4a\",\n                \"post_code\": \"1205\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=4660103a-5c94-4e68-edaa-842389dbc128&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=4660103a-5c94-4e68-edaa-842389dbc128&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=4660103a-5c94-4e68-edaa-842389dbc128&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"7aa4f730-e6ff-4372-deea-ad92781bf53b\",\n                \"name\": \"Le Raymond Bar\",\n                \"lat\": 47.368908,\n                \"lon\": 8.537668,\n                \"address\": \"Bleicherweg 8\",\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"post_code\": \"8001\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7aa4f730-e6ff-4372-deea-ad92781bf53b&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7aa4f730-e6ff-4372-deea-ad92781bf53b&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7aa4f730-e6ff-4372-deea-ad92781bf53b&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"b8a61a5d-70c4-4e8e-cee0-6cc471c82c52\",\n                \"name\": \"Legu Vegu\",\n                \"lat\": 46.94374,\n                \"lon\": 7.46393,\n                \"address\": \"Muristrasse 21E\",\n                \"region_id\": \"b33b7cef-c74d-4789-9a31-8586dcf47e11\",\n                \"post_code\": \"3006 \",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b8a61a5d-70c4-4e8e-cee0-6cc471c82c52&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b8a61a5d-70c4-4e8e-cee0-6cc471c82c52&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b8a61a5d-70c4-4e8e-cee0-6cc471c82c52&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"1e9d5616-814f-43aa-cb64-ef835e5f4b2d\",\n                \"name\": \"Librairie Delphica\",\n                \"lat\": 46.201803,\n                \"lon\": 6.140499,\n                \"address\": \"19 Bd Georges-Favon\",\n                \"region_id\": \"870e340b-1953-428e-d2dc-1c24eaf56b4a\",\n                \"post_code\": \"1204\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1e9d5616-814f-43aa-cb64-ef835e5f4b2d&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1e9d5616-814f-43aa-cb64-ef835e5f4b2d&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1e9d5616-814f-43aa-cb64-ef835e5f4b2d&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"4d9f1dfd-9788-442a-e0f5-11d89361b3b0\",\n                \"name\": \"Limmathof Baden\",\n                \"lat\": 47.480169146811,\n                \"lon\": 8.3138680705578,\n                \"address\": \"Limmatpromenade 28\",\n                \"region_id\": \"908707bf-9235-4fa6-848b-ca7d4c0b1878\",\n                \"post_code\": \"5400\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=4d9f1dfd-9788-442a-e0f5-11d89361b3b0&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=4d9f1dfd-9788-442a-e0f5-11d89361b3b0&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=4d9f1dfd-9788-442a-e0f5-11d89361b3b0&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"a4cb9de6-bdfb-4627-bdab-ee8bb04fc1ff\",\n                \"name\": \"LocoEmotion\",\n                \"lat\": 46.9842,\n                \"lon\": 6.879063,\n                \"address\": \"Av. Soguel 8a\",\n                \"region_id\": \"9f027749-1360-49fb-dabc-a176a7ed7ef7\",\n                \"post_code\": \"2035\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a4cb9de6-bdfb-4627-bdab-ee8bb04fc1ff&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a4cb9de6-bdfb-4627-bdab-ee8bb04fc1ff&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a4cb9de6-bdfb-4627-bdab-ee8bb04fc1ff&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"7494ee67-ca47-4dd4-d8c3-067c9202cd01\",\n                \"name\": \"LOKAL Feldberg Basel\",\n                \"lat\": 47.565807368681,\n                \"lon\": 7.5888604461238,\n                \"address\": \"Ersamusplatz / Feldbergstrasse 26\",\n                \"region_id\": \"a174c4dd-bcc6-47bf-e7a7-51efb4594ff1\",\n                \"post_code\": \"4057\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7494ee67-ca47-4dd4-d8c3-067c9202cd01&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7494ee67-ca47-4dd4-d8c3-067c9202cd01&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7494ee67-ca47-4dd4-d8c3-067c9202cd01&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"e1f995ea-6218-40f0-a1de-b134765443df\",\n                \"name\": \"LOLA Mattenhof\",\n                \"lat\": 46.941772,\n                \"lon\": 7.425492,\n                \"address\": \"Brunnmattstrasse 57\",\n                \"region_id\": \"b33b7cef-c74d-4789-9a31-8586dcf47e11\",\n                \"post_code\": \"3007\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e1f995ea-6218-40f0-a1de-b134765443df&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e1f995ea-6218-40f0-a1de-b134765443df&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e1f995ea-6218-40f0-a1de-b134765443df&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"81055bc0-f830-4401-b136-7bfac80c569f\",\n                \"name\": \"M-Parc la Praille\",\n                \"lat\": 46.184468168698,\n                \"lon\": 6.1344626363531,\n                \"address\": \"Avenue Vibert 32\",\n                \"region_id\": \"318fb682-7ede-4e6f-bfab-14ce7be322aa\",\n                \"post_code\": \"1227\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=81055bc0-f830-4401-b136-7bfac80c569f&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=81055bc0-f830-4401-b136-7bfac80c569f&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=81055bc0-f830-4401-b136-7bfac80c569f&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"839fc2fa-ef7d-471b-a962-bd57697b3fa9\",\n                \"name\": \"Maison du Vrac\",\n                \"lat\": 46.508640350727,\n                \"lon\": 6.4974908274734,\n                \"address\": \"Grand-Rue 80\",\n                \"region_id\": \"1d2a31ac-7f9c-437a-b924-4b984c483f27\",\n                \"post_code\": \"1110\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=839fc2fa-ef7d-471b-a962-bd57697b3fa9&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=839fc2fa-ef7d-471b-a962-bd57697b3fa9&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=839fc2fa-ef7d-471b-a962-bd57697b3fa9&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"0a705e5a-e091-4691-d63a-2f6af077d054\",\n                \"name\": \"MAN Diesel & Turbo AG\",\n                \"lat\": 47.389779,\n                \"lon\": 8.521133,\n                \"address\": \"Hardstrasse 305\",\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"post_code\": \"8005\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=0a705e5a-e091-4691-d63a-2f6af077d054&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=0a705e5a-e091-4691-d63a-2f6af077d054&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=0a705e5a-e091-4691-d63a-2f6af077d054&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"193d8061-b236-48ce-c927-a66fe3aba0dc\",\n                \"name\": \"Märitladen\",\n                \"lat\": 46.929879,\n                \"lon\": 7.448226,\n                \"address\": \"Seftigenstrasse 208\",\n                \"region_id\": \"8c024719-4721-4f9f-9553-fda1f121a141\",\n                \"post_code\": \"3084\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=193d8061-b236-48ce-c927-a66fe3aba0dc&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=193d8061-b236-48ce-c927-a66fe3aba0dc&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=193d8061-b236-48ce-c927-a66fe3aba0dc&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"6f2d44c6-3cc3-4277-aee6-6c7688530cfe\",\n                \"name\": \"Markt Wärchbrogg\",\n                \"lat\": 47.046785,\n                \"lon\": 8.316486,\n                \"address\": \"Alpenquai 4\",\n                \"region_id\": \"404c3386-19d5-4931-b999-4f90fa9c9184\",\n                \"post_code\": \"6005\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6f2d44c6-3cc3-4277-aee6-6c7688530cfe&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6f2d44c6-3cc3-4277-aee6-6c7688530cfe&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6f2d44c6-3cc3-4277-aee6-6c7688530cfe&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"ce94e341-c2c8-4533-88c2-267d85282a18\",\n                \"name\": \"Matte Brennerei Bar GmbH\",\n                \"lat\": 46.946910458432,\n                \"lon\": 7.4566270643125,\n                \"address\": \"Mühlenplatz 5\",\n                \"region_id\": \"b33b7cef-c74d-4789-9a31-8586dcf47e11\",\n                \"post_code\": \"\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ce94e341-c2c8-4533-88c2-267d85282a18&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ce94e341-c2c8-4533-88c2-267d85282a18&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ce94e341-c2c8-4533-88c2-267d85282a18&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"9dc1524e-73a2-4d3a-cb2a-4dcdc06cd5c3\",\n                \"name\": \"Medbase Apotheke Allschwil\",\n                \"lat\": 47.557677,\n                \"lon\": 7.559511,\n                \"address\": \"Langmattweg 1\",\n                \"region_id\": \"a174c4dd-bcc6-47bf-e7a7-51efb4594ff1\",\n                \"post_code\": \"4123\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9dc1524e-73a2-4d3a-cb2a-4dcdc06cd5c3&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9dc1524e-73a2-4d3a-cb2a-4dcdc06cd5c3&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9dc1524e-73a2-4d3a-cb2a-4dcdc06cd5c3&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"6b0e189d-058b-441d-9c39-70a006f3b44f\",\n                \"name\": \"Meyhanè restaurant\",\n                \"lat\": 46.201541283039,\n                \"lon\": 6.142054981989,\n                \"address\": \"Bd du Théâtre 10\",\n                \"region_id\": \"870e340b-1953-428e-d2dc-1c24eaf56b4a\",\n                \"post_code\": \"1204\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6b0e189d-058b-441d-9c39-70a006f3b44f&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6b0e189d-058b-441d-9c39-70a006f3b44f&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6b0e189d-058b-441d-9c39-70a006f3b44f&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"6161d3a0-8f19-4ebd-d42f-4110882fd80a\",\n                \"name\": \"MIGROS\",\n                \"lat\": 47.258023073523,\n                \"lon\": 8.8492476151281,\n                \"address\": \"Bandwiesstrasse 6\",\n                \"region_id\": \"43932368-6bd0-4ab2-d8e2-9166f516ac74\",\n                \"post_code\": \"8630\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6161d3a0-8f19-4ebd-d42f-4110882fd80a&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6161d3a0-8f19-4ebd-d42f-4110882fd80a&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6161d3a0-8f19-4ebd-d42f-4110882fd80a&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"fd52e097-9b55-4da1-9137-d608126f71ed\",\n                \"name\": \"Migros Chavannes les Cèdres\",\n                \"lat\": 46.530268701946,\n                \"lon\": 6.5726466692089,\n                \"address\": \"Av. de la Gare 84\",\n                \"region_id\": \"765db560-e523-4cac-f8aa-5503904efe57\",\n                \"post_code\": \"1022\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fd52e097-9b55-4da1-9137-d608126f71ed&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fd52e097-9b55-4da1-9137-d608126f71ed&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fd52e097-9b55-4da1-9137-d608126f71ed&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"eddf4283-e6f0-4851-971c-5bc30011671b\",\n                \"name\": \"Migros Neumarkt\",\n                \"lat\": 47.482387,\n                \"lon\": 8.209191,\n                \"address\": \"Neumarkt\",\n                \"region_id\": \"14004651-0df5-484f-d977-3067f1b5b5ed\",\n                \"post_code\": \"5200\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=eddf4283-e6f0-4851-971c-5bc30011671b&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=eddf4283-e6f0-4851-971c-5bc30011671b&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=eddf4283-e6f0-4851-971c-5bc30011671b&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"44fd918f-bb07-406f-d145-dc0ba540f78b\",\n                \"name\": \"Militärkantine\",\n                \"lat\": 47.42091,\n                \"lon\": 9.35969,\n                \"address\": \"Kreuzbleicheweg 2\",\n                \"region_id\": \"4886ff58-4bba-4109-a876-cdad14cd089a\",\n                \"post_code\": \"9000\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=44fd918f-bb07-406f-d145-dc0ba540f78b&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=44fd918f-bb07-406f-d145-dc0ba540f78b&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=44fd918f-bb07-406f-d145-dc0ba540f78b&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"cc76a389-210f-45b1-8413-21ee40f59ba0\",\n                \"name\": \"Museum Mühlerama Carvelobox\",\n                \"lat\": 47.351486246155,\n                \"lon\": 8.561145258894,\n                \"address\": \"Seefeldstrasse 231\",\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"post_code\": \"8008\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=cc76a389-210f-45b1-8413-21ee40f59ba0&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=cc76a389-210f-45b1-8413-21ee40f59ba0&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=cc76a389-210f-45b1-8413-21ee40f59ba0&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"d9054eaf-170f-4b44-9d9f-c06cea050b4e\",\n                \"name\": \"My Little Cup\",\n                \"lat\": 46.221433860709,\n                \"lon\": 6.1479974917688,\n                \"address\": \" Avenue Blanc 51\",\n                \"region_id\": \"870e340b-1953-428e-d2dc-1c24eaf56b4a\",\n                \"post_code\": \"1202\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d9054eaf-170f-4b44-9d9f-c06cea050b4e&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d9054eaf-170f-4b44-9d9f-c06cea050b4e&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d9054eaf-170f-4b44-9d9f-c06cea050b4e&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"8bbc4eb6-c79c-44bd-eaac-c6f5140706ba\",\n                \"name\": \"Naturama\",\n                \"lat\": 47.392532,\n                \"lon\": 8.051504,\n                \"address\": \"Feerstrasse 17\",\n                \"region_id\": \"956d196e-765b-4bfa-e01f-0db4c2a4876d\",\n                \"post_code\": \"5001\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8bbc4eb6-c79c-44bd-eaac-c6f5140706ba&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8bbc4eb6-c79c-44bd-eaac-c6f5140706ba&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8bbc4eb6-c79c-44bd-eaac-c6f5140706ba&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"068b7f30-17c4-4784-8212-9a789662d0aa\",\n                \"name\": \"NATÜRLI Bioladen\",\n                \"lat\": 47.515594593217,\n                \"lon\": 9.4361124682183,\n                \"address\": \"Hauptstrasse 5\",\n                \"region_id\": \"a7edadef-8d99-42a2-8f2d-c067f78f0f2d\",\n                \"post_code\": \"9320\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=068b7f30-17c4-4784-8212-9a789662d0aa&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=068b7f30-17c4-4784-8212-9a789662d0aa&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=068b7f30-17c4-4784-8212-9a789662d0aa&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"8e62b149-4ba9-41a8-fff0-e5fda0e81ae8\",\n                \"name\": \"Netzwerk Neubad\",\n                \"lat\": 47.041277,\n                \"lon\": 8.307179,\n                \"address\": \"Bireggstrasse 36\",\n                \"region_id\": \"404c3386-19d5-4931-b999-4f90fa9c9184\",\n                \"post_code\": \"6003\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8e62b149-4ba9-41a8-fff0-e5fda0e81ae8&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8e62b149-4ba9-41a8-fff0-e5fda0e81ae8&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8e62b149-4ba9-41a8-fff0-e5fda0e81ae8&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"d4101885-119c-4214-b8b0-f3dbf1960eb9\",\n                \"name\": \"Neuchâtelroule station du Port\",\n                \"lat\": 46.991667291493,\n                \"lon\": 6.9318003248363,\n                \"address\": \"Faubourg du lac 3\",\n                \"region_id\": \"9f027749-1360-49fb-dabc-a176a7ed7ef7\",\n                \"post_code\": \"2000\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d4101885-119c-4214-b8b0-f3dbf1960eb9&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d4101885-119c-4214-b8b0-f3dbf1960eb9&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d4101885-119c-4214-b8b0-f3dbf1960eb9&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"6d430471-73f6-4457-b312-35009a2dd29f\",\n                \"name\": \"Novotel Accor Basel\",\n                \"lat\": 47.545253310578,\n                \"lon\": 7.5994933496774,\n                \"address\": \"Grosspeterstrasse 12\",\n                \"region_id\": \"a174c4dd-bcc6-47bf-e7a7-51efb4594ff1\",\n                \"post_code\": \"4052\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6d430471-73f6-4457-b312-35009a2dd29f&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6d430471-73f6-4457-b312-35009a2dd29f&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6d430471-73f6-4457-b312-35009a2dd29f&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"55c286c5-38e9-4b90-f76b-991bf32f9b75\",\n                \"name\": \"Office de Tourisme\",\n                \"lat\": 46.780244,\n                \"lon\": 6.642864,\n                \"address\": \"Avenue de la Gare 2\",\n                \"region_id\": \"40afeadd-d2d8-47c7-f342-9079af18f26f\",\n                \"post_code\": \"1401\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=55c286c5-38e9-4b90-f76b-991bf32f9b75&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=55c286c5-38e9-4b90-f76b-991bf32f9b75&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=55c286c5-38e9-4b90-f76b-991bf32f9b75&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"ddb3d0d3-587a-498e-ee63-67fdf0e3da62\",\n                \"name\": \"OLIVE-Ladencafé\",\n                \"lat\": 47.338875,\n                \"lon\": 8.519383,\n                \"address\": \"Allmendstrasse 41\",\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"post_code\": \"8041\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ddb3d0d3-587a-498e-ee63-67fdf0e3da62&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ddb3d0d3-587a-498e-ee63-67fdf0e3da62&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ddb3d0d3-587a-498e-ee63-67fdf0e3da62&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"4aa704c9-e4aa-4124-ab90-9517cea32751\",\n                \"name\": \"Ostello per la Gioventù \\\"Palagiovani\\\"\",\n                \"lat\": 46.167891,\n                \"lon\": 8.787967,\n                \"address\": \"Via B. Varenna 18\",\n                \"region_id\": \"0d23fdc5-1fcd-4e7a-ff28-22dce815e731\",\n                \"post_code\": \"6600\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=4aa704c9-e4aa-4124-ab90-9517cea32751&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=4aa704c9-e4aa-4124-ab90-9517cea32751&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=4aa704c9-e4aa-4124-ab90-9517cea32751&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"f4841f3e-1eb8-45a1-dcbb-ab428b7d91b9\",\n                \"name\": \"P + R Neufeld Carvelobox\",\n                \"lat\": 46.963149,\n                \"lon\": 7.431884,\n                \"address\": \"Neubrückstrasse 166\",\n                \"region_id\": \"b33b7cef-c74d-4789-9a31-8586dcf47e11\",\n                \"post_code\": \"3012\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f4841f3e-1eb8-45a1-dcbb-ab428b7d91b9&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f4841f3e-1eb8-45a1-dcbb-ab428b7d91b9&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f4841f3e-1eb8-45a1-dcbb-ab428b7d91b9&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"aa2626fd-c296-41e5-af2d-33e7135e3126\",\n                \"name\": \"Park & Bike St. Léonard Carvelobox\",\n                \"lat\": 46.815379930825,\n                \"lon\": 7.1553388557647,\n                \"address\": \"Chem. de l'Abbé-Freeley\",\n                \"region_id\": \"11295123-0163-4622-88a4-29c2b7f6d7e7\",\n                \"post_code\": \"1700\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=aa2626fd-c296-41e5-af2d-33e7135e3126&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=aa2626fd-c296-41e5-af2d-33e7135e3126&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=aa2626fd-c296-41e5-af2d-33e7135e3126&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"f6d9c7b6-f7f4-454e-e83a-45eb014c33e7\",\n                \"name\": \"Parkhotel Emmaus\",\n                \"lat\": 46.16271528925,\n                \"lon\": 8.7684703792578,\n                \"address\": \"Via Emmaus 15\",\n                \"region_id\": \"c8631103-df6f-49b5-9ed1-6f11aea201f5\",\n                \"post_code\": \"6616\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f6d9c7b6-f7f4-454e-e83a-45eb014c33e7&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f6d9c7b6-f7f4-454e-e83a-45eb014c33e7&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f6d9c7b6-f7f4-454e-e83a-45eb014c33e7&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"de5b96b3-28c3-42de-803f-3190ff9652df\",\n                \"name\": \"Parking Indigo Lausanne Centre\",\n                \"lat\": 46.522132956441,\n                \"lon\": 6.6263395066455,\n                \"address\": \"Rue de Genève 31\",\n                \"region_id\": \"6dca8350-0c11-40b5-de3a-6628bf2469da\",\n                \"post_code\": \"1003\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=de5b96b3-28c3-42de-803f-3190ff9652df&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=de5b96b3-28c3-42de-803f-3190ff9652df&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=de5b96b3-28c3-42de-803f-3190ff9652df&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"1ba17c42-3c73-4b8c-be64-d04e518e2441\",\n                \"name\": \"Parking Port d'Ouchy\",\n                \"lat\": 46.508324,\n                \"lon\": 6.623121,\n                \"address\": \"Place de la Navigation 3\",\n                \"region_id\": \"6dca8350-0c11-40b5-de3a-6628bf2469da\",\n                \"post_code\": \"1006\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1ba17c42-3c73-4b8c-be64-d04e518e2441&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1ba17c42-3c73-4b8c-be64-d04e518e2441&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1ba17c42-3c73-4b8c-be64-d04e518e2441&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"1c22ce38-d3a4-482e-9ed9-b1fef6a40f6a\",\n                \"name\": \"PedalKraft\",\n                \"lat\": 47.01860645725,\n                \"lon\": 8.3094898711641,\n                \"address\": \"Ringstrasse 18\",\n                \"region_id\": \"a8143bb0-6a16-49a2-bb30-dc43e7566a0a\",\n                \"post_code\": \"6048\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1c22ce38-d3a4-482e-9ed9-b1fef6a40f6a&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1c22ce38-d3a4-482e-9ed9-b1fef6a40f6a&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1c22ce38-d3a4-482e-9ed9-b1fef6a40f6a&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"00cac9b4-6279-41fc-c4c9-7cbfce1c8773\",\n                \"name\": \"Perrig AG\",\n                \"lat\": 47.570147,\n                \"lon\": 7.598848,\n                \"address\": \"Max Kämpf-Platz 1\",\n                \"region_id\": \"a174c4dd-bcc6-47bf-e7a7-51efb4594ff1\",\n                \"post_code\": \"4058\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=00cac9b4-6279-41fc-c4c9-7cbfce1c8773&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=00cac9b4-6279-41fc-c4c9-7cbfce1c8773&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=00cac9b4-6279-41fc-c4c9-7cbfce1c8773&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"ed9d095d-7a80-45f2-b128-cc0e0281bb1b\",\n                \"name\": \"perron f | focacceria\",\n                \"lat\": 47.46311,\n                \"lon\": 9.041508,\n                \"address\": \"Bahnhofplatz 6\",\n                \"region_id\": \"6ff88921-9bb8-4416-858d-951e4d02e8e3\",\n                \"post_code\": \"9500\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ed9d095d-7a80-45f2-b128-cc0e0281bb1b&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ed9d095d-7a80-45f2-b128-cc0e0281bb1b&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ed9d095d-7a80-45f2-b128-cc0e0281bb1b&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"d78cb52b-ab64-49c3-ac55-2fd9cd443a29\",\n                \"name\": \"Petrus\",\n                \"lat\": 47.043321,\n                \"lon\": 8.306244,\n                \"address\": \"Claridenstrasse 2\",\n                \"region_id\": \"404c3386-19d5-4931-b999-4f90fa9c9184\",\n                \"post_code\": \"6003\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d78cb52b-ab64-49c3-ac55-2fd9cd443a29&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d78cb52b-ab64-49c3-ac55-2fd9cd443a29&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d78cb52b-ab64-49c3-ac55-2fd9cd443a29&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"604c8db4-7387-46b8-aede-56991a19bd26\",\n                \"name\": \"PH Bern\",\n                \"lat\": 46.944113378445,\n                \"lon\": 7.4486178934565,\n                \"address\": \"Helvetiaplatz 2\",\n                \"region_id\": \"b33b7cef-c74d-4789-9a31-8586dcf47e11\",\n                \"post_code\": \"3005\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=604c8db4-7387-46b8-aede-56991a19bd26&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=604c8db4-7387-46b8-aede-56991a19bd26&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=604c8db4-7387-46b8-aede-56991a19bd26&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"c9d9a068-e6b1-42fd-8e0b-afd2a4bcd971\",\n                \"name\": \"Pharmacie Amavita\",\n                \"lat\": 46.584706168549,\n                \"lon\": 6.605201775478,\n                \"address\": \"Route de Lausanne 5\",\n                \"region_id\": \"0b56dd12-c9c4-48a4-dd6f-b56891bc2fe4\",\n                \"post_code\": \"1033\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c9d9a068-e6b1-42fd-8e0b-afd2a4bcd971&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c9d9a068-e6b1-42fd-8e0b-afd2a4bcd971&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c9d9a068-e6b1-42fd-8e0b-afd2a4bcd971&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"4e5869c6-6803-41ac-b6f1-98fec4f6a64a\",\n                \"name\": \"Pharmacie de la Chapelle\",\n                \"lat\": 46.171191469394,\n                \"lon\": 6.1337683570485,\n                \"address\": \"Chem. de Compostelle 7\",\n                \"region_id\": \"7cf93ba2-27ef-4339-c550-41fe4608568e\",\n                \"post_code\": \"1212 \",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=4e5869c6-6803-41ac-b6f1-98fec4f6a64a&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=4e5869c6-6803-41ac-b6f1-98fec4f6a64a&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=4e5869c6-6803-41ac-b6f1-98fec4f6a64a&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"ae2dddc6-7c85-4d4a-8cde-86ddcff6e41d\",\n                \"name\": \"Pharmacie Medbase Lancy Pont-Rouge\",\n                \"lat\": 46.186724434479,\n                \"lon\": 6.1244426542005,\n                \"address\": \"Place de Pont-Rouge 5\",\n                \"region_id\": \"7cf93ba2-27ef-4339-c550-41fe4608568e\",\n                \"post_code\": \"1212\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ae2dddc6-7c85-4d4a-8cde-86ddcff6e41d&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ae2dddc6-7c85-4d4a-8cde-86ddcff6e41d&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ae2dddc6-7c85-4d4a-8cde-86ddcff6e41d&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"47491568-3cd0-4516-abe3-5d7e468f02a2\",\n                \"name\": \"Pharmacie Saint-Roch\",\n                \"lat\": 46.608796,\n                \"lon\": 7.064805,\n                \"address\": \"Place du Centre 2\",\n                \"region_id\": \"478b1931-b70f-47d7-beb2-3401ad4e30ed\",\n                \"post_code\": \"1635\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=47491568-3cd0-4516-abe3-5d7e468f02a2&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=47491568-3cd0-4516-abe3-5d7e468f02a2&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=47491568-3cd0-4516-abe3-5d7e468f02a2&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"745ea964-e4ee-48c7-c337-ee88f91ee90a\",\n                \"name\": \"Pharmacie-Droguerie de St-Sulpice\",\n                \"lat\": 46.510648129843,\n                \"lon\": 6.5575171960219,\n                \"address\": \"Rue du Centre 68\",\n                \"region_id\": \"3aa22e7b-c6ed-49d6-acb2-d94d82b16a15\",\n                \"post_code\": \"1025\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=745ea964-e4ee-48c7-c337-ee88f91ee90a&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=745ea964-e4ee-48c7-c337-ee88f91ee90a&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=745ea964-e4ee-48c7-c337-ee88f91ee90a&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"1b75d940-e72b-42af-9004-b733f1c13d41\",\n                \"name\": \"Praxis am Bahnhof AG\",\n                \"lat\": 47.260218696657,\n                \"lon\": 8.8531463067374,\n                \"address\": \"Dorfstrasse 43/44\",\n                \"region_id\": \"43932368-6bd0-4ab2-d8e2-9166f516ac74\",\n                \"post_code\": \"8630\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1b75d940-e72b-42af-9004-b733f1c13d41&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1b75d940-e72b-42af-9004-b733f1c13d41&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1b75d940-e72b-42af-9004-b733f1c13d41&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"1f30daa2-c433-42d1-e78f-7704bc3a2f2c\",\n                \"name\": \"Pro Velo Bern\",\n                \"lat\": 46.959264,\n                \"lon\": 7.446948,\n                \"address\": \"Birkenweg 61\",\n                \"region_id\": \"b33b7cef-c74d-4789-9a31-8586dcf47e11\",\n                \"post_code\": \"3013\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1f30daa2-c433-42d1-e78f-7704bc3a2f2c&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1f30daa2-c433-42d1-e78f-7704bc3a2f2c&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1f30daa2-c433-42d1-e78f-7704bc3a2f2c&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"8599e782-7a4d-4f9b-f513-d9747567dc5e\",\n                \"name\": \"Quartier Eglantine Morges Carvelobox\",\n                \"lat\": 46.511999772636,\n                \"lon\": 6.4851558044541,\n                \"address\": \"Avenue de Warnery\",\n                \"region_id\": \"1d2a31ac-7f9c-437a-b924-4b984c483f27\",\n                \"post_code\": \"1110\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8599e782-7a4d-4f9b-f513-d9747567dc5e&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8599e782-7a4d-4f9b-f513-d9747567dc5e&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8599e782-7a4d-4f9b-f513-d9747567dc5e&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"a5f4dc4a-e2e4-45f1-e7d5-71c6d31b04cc\",\n                \"name\": \"Rad und Fuss\",\n                \"lat\": 46.83537,\n                \"lon\": 9.45068,\n                \"address\": \"Via Nova 57\",\n                \"region_id\": \"d673b1de-7152-4c2f-90ff-9eee2a641c55\",\n                \"post_code\": \"7013 \",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a5f4dc4a-e2e4-45f1-e7d5-71c6d31b04cc&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a5f4dc4a-e2e4-45f1-e7d5-71c6d31b04cc&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a5f4dc4a-e2e4-45f1-e7d5-71c6d31b04cc&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"7fda0744-1d84-4818-d079-7c3f899e107d\",\n                \"name\": \"Rampe5\",\n                \"lat\": 47.372882,\n                \"lon\": 8.524828,\n                \"address\": \"Gartenhofstrasse 27\",\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"post_code\": \"8004\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7fda0744-1d84-4818-d079-7c3f899e107d&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7fda0744-1d84-4818-d079-7c3f899e107d&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7fda0744-1d84-4818-d079-7c3f899e107d&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"bff53f0d-dc47-4603-c485-7ad063985c45\",\n                \"name\": \"Rauke & LOK.al\",\n                \"lat\": 47.494061831487,\n                \"lon\": 8.7344061899046,\n                \"address\": \"Zeughausstrasse 52\",\n                \"region_id\": \"2c94a5e6-e822-4605-f0f5-64b174f979b6\",\n                \"post_code\": \"8400\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=bff53f0d-dc47-4603-c485-7ad063985c45&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=bff53f0d-dc47-4603-c485-7ad063985c45&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=bff53f0d-dc47-4603-c485-7ad063985c45&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"deb3054f-3fa8-4305-ffc2-1df68d2506a6\",\n                \"name\": \"Restaurant Libelle\",\n                \"lat\": 47.064928,\n                \"lon\": 8.310993,\n                \"address\": \"Maihofstrasse 61\",\n                \"region_id\": \"404c3386-19d5-4931-b999-4f90fa9c9184\",\n                \"post_code\": \"6006\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=deb3054f-3fa8-4305-ffc2-1df68d2506a6&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=deb3054f-3fa8-4305-ffc2-1df68d2506a6&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=deb3054f-3fa8-4305-ffc2-1df68d2506a6&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"5ba5a1cf-4331-42f1-f0a6-696280e21c4d\",\n                \"name\": \"RhB Bahnhof Arosa\",\n                \"lat\": 46.783895997637,\n                \"lon\": 9.6795303686802,\n                \"address\": \"Oberseepromenade 22\",\n                \"region_id\": \"9fc9a06f-9f8b-4b07-8055-53a58503e749\",\n                \"post_code\": \"7050\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=5ba5a1cf-4331-42f1-f0a6-696280e21c4d&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=5ba5a1cf-4331-42f1-f0a6-696280e21c4d&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=5ba5a1cf-4331-42f1-f0a6-696280e21c4d&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"b1a662c7-4a95-46c2-f4f8-6ac4f120c861\",\n                \"name\": \"Saastal Tourismus AG\",\n                \"lat\": 46.109215857599,\n                \"lon\": 7.9292550138519,\n                \"address\": \"Obere Dorfstrasse 2\",\n                \"region_id\": \"ef29584e-8764-4ed8-c23e-ef487c007551\",\n                \"post_code\": \"3906\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b1a662c7-4a95-46c2-f4f8-6ac4f120c861&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b1a662c7-4a95-46c2-f4f8-6ac4f120c861&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b1a662c7-4a95-46c2-f4f8-6ac4f120c861&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"fb5091b3-fbf6-49af-cfa6-fcff8bd46366\",\n                \"name\": \"Safran Drogerie\",\n                \"lat\": 47.051145,\n                \"lon\": 8.301234,\n                \"address\": \"Pfistergasse 31\",\n                \"region_id\": \"404c3386-19d5-4931-b999-4f90fa9c9184\",\n                \"post_code\": \"6003\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fb5091b3-fbf6-49af-cfa6-fcff8bd46366&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fb5091b3-fbf6-49af-cfa6-fcff8bd46366&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fb5091b3-fbf6-49af-cfa6-fcff8bd46366&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"bfe8a5b5-e13e-44a2-a64d-75bdad483c30\",\n                \"name\": \"schlEmmersberg Lädeli\",\n                \"lat\": 47.697953,\n                \"lon\": 8.642529,\n                \"address\": \"Kamorstrasse 5\",\n                \"region_id\": \"98dca2fc-4104-442c-e5b7-22edf006f6c2\",\n                \"post_code\": \"8200\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=bfe8a5b5-e13e-44a2-a64d-75bdad483c30&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=bfe8a5b5-e13e-44a2-a64d-75bdad483c30&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=bfe8a5b5-e13e-44a2-a64d-75bdad483c30&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"a318c884-1cd9-4fa3-917a-e59a61b60e53\",\n                \"name\": \"Schützenmatt Apotheke AG Basel\",\n                \"lat\": 47.554446179338,\n                \"lon\": 7.5760467751843,\n                \"address\": \"Spalenring 160\",\n                \"region_id\": \"a174c4dd-bcc6-47bf-e7a7-51efb4594ff1\",\n                \"post_code\": \"4055\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a318c884-1cd9-4fa3-917a-e59a61b60e53&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a318c884-1cd9-4fa3-917a-e59a61b60e53&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a318c884-1cd9-4fa3-917a-e59a61b60e53&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"ffdf77f4-0809-4782-faf5-5d48baa8e48c\",\n                \"name\": \"Senevita Dorfmatt\",\n                \"lat\": 46.873366511636,\n                \"lon\": 7.5588705469664,\n                \"address\": \"Dorfmattweg 2\",\n                \"region_id\": \"73a224e8-2e9d-401c-db6f-06bcb3c45417\",\n                \"post_code\": \"3110\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ffdf77f4-0809-4782-faf5-5d48baa8e48c&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ffdf77f4-0809-4782-faf5-5d48baa8e48c&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ffdf77f4-0809-4782-faf5-5d48baa8e48c&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"effe5164-3406-4ba2-80c1-0b4e52210d94\",\n                \"name\": \"Services Plus Energies\",\n                \"lat\": 46.179994394426,\n                \"lon\": 6.0799919973522,\n                \"address\": \"Route de Pré-Marais 22\",\n                \"region_id\": \"a8323c7d-5851-4ecf-a892-b062a80b8ef2\",\n                \"post_code\": \"1233\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=effe5164-3406-4ba2-80c1-0b4e52210d94&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=effe5164-3406-4ba2-80c1-0b4e52210d94&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=effe5164-3406-4ba2-80c1-0b4e52210d94&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"f2f5ae4b-3a02-4e06-944c-4f288161a48f\",\n                \"name\": \"Siedlung Bullingerhof Carvelobox\",\n                \"lat\": 47.379788426771,\n                \"lon\": 8.5144126189438,\n                \"address\": \"Bullingerstrasse 11\",\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"post_code\": \"8004 \",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f2f5ae4b-3a02-4e06-944c-4f288161a48f&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f2f5ae4b-3a02-4e06-944c-4f288161a48f&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f2f5ae4b-3a02-4e06-944c-4f288161a48f&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"aec5527f-fbfd-4bfd-9d45-fdbf351d5f22\",\n                \"name\": \"Siedlung Eichrain Carvelobox\",\n                \"lat\": 47.427669002718,\n                \"lon\": 8.5464403509258,\n                \"address\": \"Eichrainstrasse 20\",\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"post_code\": \"8052 \",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=aec5527f-fbfd-4bfd-9d45-fdbf351d5f22&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=aec5527f-fbfd-4bfd-9d45-fdbf351d5f22&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=aec5527f-fbfd-4bfd-9d45-fdbf351d5f22&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"d969da96-f089-4503-ffd4-0be95cc7548d\",\n                \"name\": \"Siedlung Grünmatt Emmen Carvelobox\",\n                \"lat\": 47.08280343325,\n                \"lon\": 8.3119796338474,\n                \"address\": \"Grünmattstrasse\",\n                \"region_id\": \"e1ea2e66-2a1c-4ace-dffb-592b59087b9f\",\n                \"post_code\": \"6032\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d969da96-f089-4503-ffd4-0be95cc7548d&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d969da96-f089-4503-ffd4-0be95cc7548d&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d969da96-f089-4503-ffd4-0be95cc7548d&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"b08e6c22-ca2c-431d-9144-7fba04eda10f\",\n                \"name\": \"Siedlung Neubühl Carvelobox\",\n                \"lat\": 47.333312631272,\n                \"lon\": 8.5348516840541,\n                \"address\": \"Nidelbadstrasse 79\",\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"post_code\": \"8038\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b08e6c22-ca2c-431d-9144-7fba04eda10f&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b08e6c22-ca2c-431d-9144-7fba04eda10f&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b08e6c22-ca2c-431d-9144-7fba04eda10f&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"9b89d6d7-1c11-4352-b9fa-fbec0eb20d3c\",\n                \"name\": \"Siedlung Riedtli Carvelobox\",\n                \"lat\": 47.387891,\n                \"lon\": 8.545596,\n                \"address\": \"Stolzestrasse 30\",\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"post_code\": \"8006\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9b89d6d7-1c11-4352-b9fa-fbec0eb20d3c&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9b89d6d7-1c11-4352-b9fa-fbec0eb20d3c&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9b89d6d7-1c11-4352-b9fa-fbec0eb20d3c&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"f444b034-a4a3-4454-f182-f5b1f73905b8\",\n                \"name\": \"Siedlung Schwamendingen Carvelobox\",\n                \"lat\": 47.40507505896,\n                \"lon\": 8.5781662200206,\n                \"address\": \"Winterthurerstrasse 614/616\",\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"post_code\": \"8051\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f444b034-a4a3-4454-f182-f5b1f73905b8&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f444b034-a4a3-4454-f182-f5b1f73905b8&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f444b034-a4a3-4454-f182-f5b1f73905b8&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"20de1d5f-8f8a-4bc1-d8d1-6635d6c3813f\",\n                \"name\": \"Siedlung Vrenelisgärtli Carvelobox\",\n                \"lat\": 47.394719028332,\n                \"lon\": 8.5362788256651,\n                \"address\": \"Hofwiesenstrasse 55\",\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"post_code\": \"8057\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=20de1d5f-8f8a-4bc1-d8d1-6635d6c3813f&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=20de1d5f-8f8a-4bc1-d8d1-6635d6c3813f&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=20de1d5f-8f8a-4bc1-d8d1-6635d6c3813f&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"880417db-22a8-4c25-c597-b64ec73dbfcc\",\n                \"name\": \"SPAR Horgen\",\n                \"lat\": 47.261709764151,\n                \"lon\": 8.5949726328079,\n                \"address\": \"Seestrasse 117\",\n                \"region_id\": \"fb643131-c82e-480d-9d5f-b0c1d19ecddc\",\n                \"post_code\": \"8810\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=880417db-22a8-4c25-c597-b64ec73dbfcc&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=880417db-22a8-4c25-c597-b64ec73dbfcc&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=880417db-22a8-4c25-c597-b64ec73dbfcc&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"e1c4b6c1-238b-4721-c922-884f661587af\",\n                \"name\": \"SPAR Supermarkt\",\n                \"lat\": 47.255896247763,\n                \"lon\": 8.8564181596015,\n                \"address\": \"Ferrachstrasse 58\",\n                \"region_id\": \"43932368-6bd0-4ab2-d8e2-9166f516ac74\",\n                \"post_code\": \"8630\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e1c4b6c1-238b-4721-c922-884f661587af&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e1c4b6c1-238b-4721-c922-884f661587af&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e1c4b6c1-238b-4721-c922-884f661587af&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"cfbc672e-aaed-44f5-86bf-2627b00be946\",\n                \"name\": \"Speed Store Wil\",\n                \"lat\": 47.46629,\n                \"lon\": 9.0471,\n                \"address\": \"Weierstrasse 6\",\n                \"region_id\": \"6ff88921-9bb8-4416-858d-951e4d02e8e3\",\n                \"post_code\": \"9500 \",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=cfbc672e-aaed-44f5-86bf-2627b00be946&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=cfbc672e-aaed-44f5-86bf-2627b00be946&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=cfbc672e-aaed-44f5-86bf-2627b00be946&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"b6059105-16cf-42f4-a258-790d1b72c5ec\",\n                \"name\": \"Sportpark Bergholz Wil\",\n                \"lat\": 47.458497,\n                \"lon\": 9.03687,\n                \"address\": \"Feldstrasse 40\",\n                \"region_id\": \"6ff88921-9bb8-4416-858d-951e4d02e8e3\",\n                \"post_code\": \"9500\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b6059105-16cf-42f4-a258-790d1b72c5ec&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b6059105-16cf-42f4-a258-790d1b72c5ec&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b6059105-16cf-42f4-a258-790d1b72c5ec&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"b6fc2031-2b0b-429d-b3a8-045ed203b2a3\",\n                \"name\": \"SportX Brugg\",\n                \"lat\": 47.483279,\n                \"lon\": 8.207865,\n                \"address\": \"Hauptstrasse 2\",\n                \"region_id\": \"14004651-0df5-484f-d977-3067f1b5b5ed\",\n                \"post_code\": \"5200\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b6fc2031-2b0b-429d-b3a8-045ed203b2a3&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b6fc2031-2b0b-429d-b3a8-045ed203b2a3&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b6fc2031-2b0b-429d-b3a8-045ed203b2a3&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"65ca09f2-2f61-4404-c2c6-caffdbba04ed\",\n                \"name\": \"Stadt- und Regionalbibliothek Uster\",\n                \"lat\": 47.350958,\n                \"lon\": 8.71664,\n                \"address\": \"Bankstrasse 17\",\n                \"region_id\": \"936ccc56-80e6-441f-959b-da5747118c61\",\n                \"post_code\": \"8610\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=65ca09f2-2f61-4404-c2c6-caffdbba04ed&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=65ca09f2-2f61-4404-c2c6-caffdbba04ed&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=65ca09f2-2f61-4404-c2c6-caffdbba04ed&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"948eb147-fd35-4c4f-9d8b-3a14f9feace8\",\n                \"name\": \"Stadtbibliothek Aarau\",\n                \"lat\": 47.392418,\n                \"lon\": 8.046083,\n                \"address\": \"Graben 15\",\n                \"region_id\": \"956d196e-765b-4bfa-e01f-0db4c2a4876d\",\n                \"post_code\": \"5000\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=948eb147-fd35-4c4f-9d8b-3a14f9feace8&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=948eb147-fd35-4c4f-9d8b-3a14f9feace8&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=948eb147-fd35-4c4f-9d8b-3a14f9feace8&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"39950ab2-1120-4be8-afb6-7c1c9c216243\",\n                \"name\": \"Stettbacher Café\",\n                \"lat\": 47.395964275845,\n                \"lon\": 8.5987304207514,\n                \"address\": \" Zürichstrasse 131\",\n                \"region_id\": \"4944205f-60e3-408b-e3fb-dd888e1d764b\",\n                \"post_code\": \"8600\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=39950ab2-1120-4be8-afb6-7c1c9c216243&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=39950ab2-1120-4be8-afb6-7c1c9c216243&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=39950ab2-1120-4be8-afb6-7c1c9c216243&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"66438d3d-03b2-44f3-d1ea-96386bbe3fd1\",\n                \"name\": \"STUDIO PEZ\",\n                \"lat\": 47.566968786162,\n                \"lon\": 7.5889765063574,\n                \"address\": \"Breisacherstrasse 66\",\n                \"region_id\": \"a174c4dd-bcc6-47bf-e7a7-51efb4594ff1\",\n                \"post_code\": \"4057\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=66438d3d-03b2-44f3-d1ea-96386bbe3fd1&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=66438d3d-03b2-44f3-d1ea-96386bbe3fd1&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=66438d3d-03b2-44f3-d1ea-96386bbe3fd1&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"52726ec5-ca69-4766-f886-9f12b1456836\",\n                \"name\": \"Sunnige Hof Geschäftsstelle Carvelobox\",\n                \"lat\": 47.39862285511,\n                \"lon\": 8.5923201571997,\n                \"address\": \"Mattenhof 4\",\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"post_code\": \"8051\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=52726ec5-ca69-4766-f886-9f12b1456836&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=52726ec5-ca69-4766-f886-9f12b1456836&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=52726ec5-ca69-4766-f886-9f12b1456836&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"0b6eda7d-7578-403b-a15d-85c7bf4082c2\",\n                \"name\": \"Supermarché Migros Pully\",\n                \"lat\": 46.511549215015,\n                \"lon\": 6.659823308051,\n                \"address\": \"Ch Pré-de-la-Tour 3\",\n                \"region_id\": \"5f3b9b52-5c65-4817-cfaa-9480f63f4bf9\",\n                \"post_code\": \"1009\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=0b6eda7d-7578-403b-a15d-85c7bf4082c2&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=0b6eda7d-7578-403b-a15d-85c7bf4082c2&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=0b6eda7d-7578-403b-a15d-85c7bf4082c2&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"ab33411e-44ca-4b28-a905-1985d7efb42c\",\n                \"name\": \"TacTac Cycling\",\n                \"lat\": 46.955026830798,\n                \"lon\": 7.4527069533647,\n                \"address\": \"Gotthelfstrasse 31\",\n                \"region_id\": \"b33b7cef-c74d-4789-9a31-8586dcf47e11\",\n                \"post_code\": \"3013\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ab33411e-44ca-4b28-a905-1985d7efb42c&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ab33411e-44ca-4b28-a905-1985d7efb42c&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ab33411e-44ca-4b28-a905-1985d7efb42c&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"6bbf59a3-959b-42dc-faf4-0a9c1407b416\",\n                \"name\": \"Tandem Riviera\",\n                \"lat\": 46.458348,\n                \"lon\": 6.858134,\n                \"address\": \"Avenue des Alpes 83\",\n                \"region_id\": \"9c330383-39e5-42a0-e2ae-50ecfe6c1522\",\n                \"post_code\": \"1814\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6bbf59a3-959b-42dc-faf4-0a9c1407b416&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6bbf59a3-959b-42dc-faf4-0a9c1407b416&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6bbf59a3-959b-42dc-faf4-0a9c1407b416&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"83c4b5f4-0716-4ce0-9f88-1351caccaaf0\",\n                \"name\": \"Tauchsport Käser\",\n                \"lat\": 46.935931574002,\n                \"lon\": 7.4170291612417,\n                \"address\": \"Könizstrasse 157\",\n                \"region_id\": \"8c024719-4721-4f9f-9553-fda1f121a141\",\n                \"post_code\": \"3097\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=83c4b5f4-0716-4ce0-9f88-1351caccaaf0&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=83c4b5f4-0716-4ce0-9f88-1351caccaaf0&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=83c4b5f4-0716-4ce0-9f88-1351caccaaf0&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"04ce7cd2-1218-48cb-d92f-a9eb995c3554\",\n                \"name\": \"Tauchsport Käser Zürich\",\n                \"lat\": 47.369595541425,\n                \"lon\": 8.5283400233134,\n                \"address\": \"Stauffacherquai 54\",\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"post_code\": \"8004\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=04ce7cd2-1218-48cb-d92f-a9eb995c3554&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=04ce7cd2-1218-48cb-d92f-a9eb995c3554&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=04ce7cd2-1218-48cb-d92f-a9eb995c3554&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"c43437ae-e918-46b3-a984-95c5bc58e4fa\",\n                \"name\": \"TCS Camping Bern - Eymatt\",\n                \"lat\": 46.964850052328,\n                \"lon\": 7.3839638533749,\n                \"address\": \"Wohlenstrasse 62C\",\n                \"region_id\": \"b33b7cef-c74d-4789-9a31-8586dcf47e11\",\n                \"post_code\": \"3032\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c43437ae-e918-46b3-a984-95c5bc58e4fa&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c43437ae-e918-46b3-a984-95c5bc58e4fa&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c43437ae-e918-46b3-a984-95c5bc58e4fa&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"26aa531d-76b4-4d55-ff02-8782db1c9975\",\n                \"name\": \"TCS Camping Flaach am Rhein\",\n                \"lat\": 47.579048221984,\n                \"lon\": 8.582071391823,\n                \"address\": \"Stäubisallmend 4\",\n                \"region_id\": \"428ff9b2-53cf-4283-f4f1-cc8dadb04f99\",\n                \"post_code\": \"8416\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=26aa531d-76b4-4d55-ff02-8782db1c9975&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=26aa531d-76b4-4d55-ff02-8782db1c9975&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=26aa531d-76b4-4d55-ff02-8782db1c9975&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"11e2c0c2-739c-41c0-ec60-85c5d503093e\",\n                \"name\": \"TCS Camping Gampelen\",\n                \"lat\": 47.001256,\n                \"lon\": 7.039872,\n                \"address\": \"Seestrasse 50\",\n                \"region_id\": \"d7b06335-d6ca-4e2c-eb8c-15b323a09f8a\",\n                \"post_code\": \"3236\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=11e2c0c2-739c-41c0-ec60-85c5d503093e&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=11e2c0c2-739c-41c0-ec60-85c5d503093e&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=11e2c0c2-739c-41c0-ec60-85c5d503093e&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"75c7036e-2bcd-4678-9ea3-b62a152ad3dc\",\n                \"name\": \"TCS Camping Morges\",\n                \"lat\": 46.504438410787,\n                \"lon\": 6.4890298405008,\n                \"address\": \"Promenade du Petit-Bois 15\",\n                \"region_id\": \"1d2a31ac-7f9c-437a-b924-4b984c483f27\",\n                \"post_code\": \"1110\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=75c7036e-2bcd-4678-9ea3-b62a152ad3dc&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=75c7036e-2bcd-4678-9ea3-b62a152ad3dc&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=75c7036e-2bcd-4678-9ea3-b62a152ad3dc&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"64c3e072-e72a-452e-8567-3012ed5f326b\",\n                \"name\": \"TCS Camping Salavaux Plage\",\n                \"lat\": 46.913064427979,\n                \"lon\": 7.034978446359,\n                \"address\": \"Chemin de la Plage 10\",\n                \"region_id\": \"38923d71-5382-4af5-aea3-62cbe9c1013f\",\n                \"post_code\": \"1585\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=64c3e072-e72a-452e-8567-3012ed5f326b&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=64c3e072-e72a-452e-8567-3012ed5f326b&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=64c3e072-e72a-452e-8567-3012ed5f326b&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"3e56f526-f0b7-49a3-a4e7-13c568a12921\",\n                \"name\": \"TCS Camping Sempach\",\n                \"lat\": 47.125825,\n                \"lon\": 8.190344,\n                \"address\": \"Seelandstrasse 6\",\n                \"region_id\": \"f47807f1-1dda-46e4-c7be-d66d33fd4b66\",\n                \"post_code\": \"6204\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3e56f526-f0b7-49a3-a4e7-13c568a12921&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3e56f526-f0b7-49a3-a4e7-13c568a12921&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3e56f526-f0b7-49a3-a4e7-13c568a12921&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"619d6305-6e20-4739-e7cb-a5ca1a62fc57\",\n                \"name\": \"TCS Camping Solothurn\",\n                \"lat\": 47.198205,\n                \"lon\": 7.52364,\n                \"address\": \"Glutzenhofstrasse 5\",\n                \"region_id\": \"bfafc160-5f9c-457c-cfa4-31cab72ef14f\",\n                \"post_code\": \"4500\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=619d6305-6e20-4739-e7cb-a5ca1a62fc57&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=619d6305-6e20-4739-e7cb-a5ca1a62fc57&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=619d6305-6e20-4739-e7cb-a5ca1a62fc57&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"750634a8-05b6-4346-ae74-2f661184ea3a\",\n                \"name\": \"TCS Ostermundingen Rezeption\",\n                \"lat\": 46.956570082106,\n                \"lon\": 7.4826129144466,\n                \"address\": \"Poststrasse 1\",\n                \"region_id\": \"a7d7d672-2521-4509-964c-e157007d9bdc\",\n                \"post_code\": \"3072\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=750634a8-05b6-4346-ae74-2f661184ea3a&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=750634a8-05b6-4346-ae74-2f661184ea3a&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=750634a8-05b6-4346-ae74-2f661184ea3a&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"9031be03-35af-4655-fb33-41f612652f12\",\n                \"name\": \"TCS Sektion Schwyz\",\n                \"lat\": 47.021291,\n                \"lon\": 8.65093,\n                \"address\": \"Bahnhoftrasse 4\",\n                \"region_id\": \"1d9223c1-1a37-49fa-cdf0-461ff3c2dadd\",\n                \"post_code\": \" 6430\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9031be03-35af-4655-fb33-41f612652f12&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9031be03-35af-4655-fb33-41f612652f12&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9031be03-35af-4655-fb33-41f612652f12&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"93dc08b5-2a83-4a23-a074-bac283181071\",\n                \"name\": \"TCS Sektion Thurgau\",\n                \"lat\": 47.567458972983,\n                \"lon\": 9.0897781671182,\n                \"address\": \"Dufourstrasse 76\",\n                \"region_id\": \"6716253e-4a51-42d0-8508-7b8576603f41\",\n                \"post_code\": \"8570\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=93dc08b5-2a83-4a23-a074-bac283181071&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=93dc08b5-2a83-4a23-a074-bac283181071&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=93dc08b5-2a83-4a23-a074-bac283181071&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"8fcf2a57-55d1-45ec-cc2c-89e8c3716351\",\n                \"name\": \"Tennishalle Burgdorf\",\n                \"lat\": 47.049491,\n                \"lon\": 7.619165,\n                \"address\": \"Zähringerstrasse 39\",\n                \"region_id\": \"04647e72-6e03-4974-8892-f0f113c9ff8e\",\n                \"post_code\": \"3400\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8fcf2a57-55d1-45ec-cc2c-89e8c3716351&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8fcf2a57-55d1-45ec-cc2c-89e8c3716351&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8fcf2a57-55d1-45ec-cc2c-89e8c3716351&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"ba7912b1-1c5a-42ee-d6b4-3550ae219c8e\",\n                \"name\": \"Terra Verde\",\n                \"lat\": 47.395594347022,\n                \"lon\": 8.5057420355761,\n                \"address\": \"Am Wasser 55\",\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"post_code\": \"8049\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ba7912b1-1c5a-42ee-d6b4-3550ae219c8e&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ba7912b1-1c5a-42ee-d6b4-3550ae219c8e&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ba7912b1-1c5a-42ee-d6b4-3550ae219c8e&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"1d6d4b3b-aea9-4f2a-e538-ea13154db072\",\n                \"name\": \"Therapie und Training Zentrum AG\",\n                \"lat\": 46.998147,\n                \"lon\": 7.459931,\n                \"address\": \"Bernstrasse 161\",\n                \"region_id\": \"9af06326-3691-466f-e9bf-5a80eff15fb4\",\n                \"post_code\": \"3052\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1d6d4b3b-aea9-4f2a-e538-ea13154db072&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1d6d4b3b-aea9-4f2a-e538-ea13154db072&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1d6d4b3b-aea9-4f2a-e538-ea13154db072&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"2ae7b09c-4c17-43bd-febb-325424adbb79\",\n                \"name\": \"Ticketeria VBSH\",\n                \"lat\": 47.697436,\n                \"lon\": 8.63201,\n                \"address\": \"Bahnhofstrasse 21\",\n                \"region_id\": \"98dca2fc-4104-442c-e5b7-22edf006f6c2\",\n                \"post_code\": \"8200\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2ae7b09c-4c17-43bd-febb-325424adbb79&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2ae7b09c-4c17-43bd-febb-325424adbb79&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2ae7b09c-4c17-43bd-febb-325424adbb79&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"eef3291f-8352-4f0d-935b-5227555bfdb3\",\n                \"name\": \"TopPharm Apotheke Kunz\",\n                \"lat\": 47.469854072619,\n                \"lon\": 7.5967321159729,\n                \"address\": \"Haupstrasse 105\",\n                \"region_id\": \"e459cb86-3f4a-40d4-ecd0-ca9822f57d69\",\n                \"post_code\": \"4147\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=eef3291f-8352-4f0d-935b-5227555bfdb3&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=eef3291f-8352-4f0d-935b-5227555bfdb3&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=eef3291f-8352-4f0d-935b-5227555bfdb3&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"176e9171-0123-43dd-f12a-10ecf4199117\",\n                \"name\": \"TopPharm Rathaus Apotheke\",\n                \"lat\": 46.948162,\n                \"lon\": 7.452159,\n                \"address\": \"Kramgasse 2\",\n                \"region_id\": \"b33b7cef-c74d-4789-9a31-8586dcf47e11\",\n                \"post_code\": \"3011\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=176e9171-0123-43dd-f12a-10ecf4199117&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=176e9171-0123-43dd-f12a-10ecf4199117&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=176e9171-0123-43dd-f12a-10ecf4199117&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"7cdecff7-3e84-4ede-9633-49085b2f17dc\",\n                \"name\": \"TopPharm Rathaus Apotheke\",\n                \"lat\": 47.466936,\n                \"lon\": 8.324535,\n                \"address\": \"Landstrasse 77\",\n                \"region_id\": \"908707bf-9235-4fa6-848b-ca7d4c0b1878\",\n                \"post_code\": \"5430\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7cdecff7-3e84-4ede-9633-49085b2f17dc&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7cdecff7-3e84-4ede-9633-49085b2f17dc&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7cdecff7-3e84-4ede-9633-49085b2f17dc&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"7bf3abbe-856b-4f5b-887a-c89cf4b952f1\",\n                \"name\": \"TopShop Echallens\",\n                \"lat\": 46.644216001136,\n                \"lon\": 6.6365275722748,\n                \"address\": \"Rte d'Yverdon 9\",\n                \"region_id\": \"ec8f5371-406b-4210-c145-dd666622d86b\",\n                \"post_code\": \"1040\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7bf3abbe-856b-4f5b-887a-c89cf4b952f1&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7bf3abbe-856b-4f5b-887a-c89cf4b952f1&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7bf3abbe-856b-4f5b-887a-c89cf4b952f1&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"50d551aa-cdcc-4e39-d00a-ee0fb114c9bb\",\n                \"name\": \"Touring Club Suisse\",\n                \"lat\": 46.220308,\n                \"lon\": 6.097452,\n                \"address\": \"Chemin de Blandonnet 4\",\n                \"region_id\": \"d61af4ab-13b7-4c41-f744-c3208ca17e96\",\n                \"post_code\": \"1214\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=50d551aa-cdcc-4e39-d00a-ee0fb114c9bb&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=50d551aa-cdcc-4e39-d00a-ee0fb114c9bb&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=50d551aa-cdcc-4e39-d00a-ee0fb114c9bb&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"230eed99-7554-40ef-a527-154880253d2d\",\n                \"name\": \"Tourist Information\",\n                \"lat\": 47.225108,\n                \"lon\": 8.815598,\n                \"address\": \"Fischmarktplatz 1\",\n                \"region_id\": \"262298b5-3221-4091-8cf1-268eb3ca6059\",\n                \"post_code\": \"8640\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=230eed99-7554-40ef-a527-154880253d2d&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=230eed99-7554-40ef-a527-154880253d2d&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=230eed99-7554-40ef-a527-154880253d2d&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"96767b8b-4d8a-4aae-f438-216ba2ce3049\",\n                \"name\": \"Tuchlaube Café/Bar\",\n                \"lat\": 47.393763,\n                \"lon\": 8.043805,\n                \"address\": \"Metzgergasse 18\",\n                \"region_id\": \"956d196e-765b-4bfa-e01f-0db4c2a4876d\",\n                \"post_code\": \"5000\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=96767b8b-4d8a-4aae-f438-216ba2ce3049&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=96767b8b-4d8a-4aae-f438-216ba2ce3049&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=96767b8b-4d8a-4aae-f438-216ba2ce3049&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"b3572ed9-8f9c-445e-97cb-86d2ed4f224b\",\n                \"name\": \"Turnhalle Tellenmatt Carvelobox\",\n                \"lat\": 46.957180383257,\n                \"lon\": 8.3687664556808,\n                \"address\": \"Engelbergstrasse 15\",\n                \"region_id\": \"16ddca50-e7a5-4b08-8cb0-f12f0fbd35ec\",\n                \"post_code\": \"6370\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b3572ed9-8f9c-445e-97cb-86d2ed4f224b&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b3572ed9-8f9c-445e-97cb-86d2ed4f224b&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b3572ed9-8f9c-445e-97cb-86d2ed4f224b&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"173fdaa0-b6d8-44c5-e36e-b69391550d44\",\n                \"name\": \"UM Unternehmen Mitte\",\n                \"lat\": 47.556797,\n                \"lon\": 7.588357,\n                \"address\": \"Eingang links an der Bar Gerbergasse 30\",\n                \"region_id\": \"a174c4dd-bcc6-47bf-e7a7-51efb4594ff1\",\n                \"post_code\": \"4001\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=173fdaa0-b6d8-44c5-e36e-b69391550d44&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=173fdaa0-b6d8-44c5-e36e-b69391550d44&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=173fdaa0-b6d8-44c5-e36e-b69391550d44&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"a1b83f0e-596d-4498-fa3e-179e456c77ab\",\n                \"name\": \"Unik Playground\",\n                \"lat\": 46.95728,\n                \"lon\": 7.47409,\n                \"address\": \"Zentweg 11\",\n                \"region_id\": \"b33b7cef-c74d-4789-9a31-8586dcf47e11\",\n                \"post_code\": \"3006\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a1b83f0e-596d-4498-fa3e-179e456c77ab&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a1b83f0e-596d-4498-fa3e-179e456c77ab&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a1b83f0e-596d-4498-fa3e-179e456c77ab&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"52b794aa-310b-463d-e2db-61a7a8b994a6\",\n                \"name\": \"UNIL / Service UniSEP\",\n                \"lat\": 46.525812,\n                \"lon\": 6.580694,\n                \"address\": \"Annexe de la Mouline, Rue de la Mouline 40\",\n                \"region_id\": \"6dca8350-0c11-40b5-de3a-6628bf2469da\",\n                \"post_code\": \"1015\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=52b794aa-310b-463d-e2db-61a7a8b994a6&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=52b794aa-310b-463d-e2db-61a7a8b994a6&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=52b794aa-310b-463d-e2db-61a7a8b994a6&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"e9b0440a-3cd6-418a-aa84-b5f79777ff17\",\n                \"name\": \"UrsDrogerie Apotheke mit Biolade\",\n                \"lat\": 47.196901,\n                \"lon\": 8.485886,\n                \"address\": \"Blickensdorferstrasse 4\",\n                \"region_id\": \"bacd102d-33dc-4263-e7b0-32ea3ee8d19f\",\n                \"post_code\": \"6312\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e9b0440a-3cd6-418a-aa84-b5f79777ff17&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e9b0440a-3cd6-418a-aa84-b5f79777ff17&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e9b0440a-3cd6-418a-aa84-b5f79777ff17&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"50101d06-8269-4f63-b3e3-697aa0d41b11\",\n                \"name\": \"Utopia coffee shop St-Jean\",\n                \"lat\": 46.205327130868,\n                \"lon\": 6.132279698026,\n                \"address\": \"Rue de Saint-Jean 58\",\n                \"region_id\": \"870e340b-1953-428e-d2dc-1c24eaf56b4a\",\n                \"post_code\": \"1203\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=50101d06-8269-4f63-b3e3-697aa0d41b11&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=50101d06-8269-4f63-b3e3-697aa0d41b11&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=50101d06-8269-4f63-b3e3-697aa0d41b11&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"aeb8783e-2309-4116-a817-07bd7a069ebd\",\n                \"name\": \"Varian Medical Systems Imaging Lab\",\n                \"lat\": 47.449471462845,\n                \"lon\": 8.2932577038056,\n                \"address\": \"Täfernstrasse 7\",\n                \"region_id\": \"908707bf-9235-4fa6-848b-ca7d4c0b1878\",\n                \"post_code\": \"5405\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=aeb8783e-2309-4116-a817-07bd7a069ebd&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=aeb8783e-2309-4116-a817-07bd7a069ebd&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=aeb8783e-2309-4116-a817-07bd7a069ebd&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"6a246b98-d42b-45a7-ef0f-d17189ea41df\",\n                \"name\": \"Velo Cafè Bar\",\n                \"lat\": 46.173935960841,\n                \"lon\": 8.9988160284739,\n                \"address\": \"Via al Ticino 23\",\n                \"region_id\": \"6efa6dad-6fd4-4d43-9cf3-c1bdf6be014a\",\n                \"post_code\": \"6512 \",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6a246b98-d42b-45a7-ef0f-d17189ea41df&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6a246b98-d42b-45a7-ef0f-d17189ea41df&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6a246b98-d42b-45a7-ef0f-d17189ea41df&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"7f3eeed2-db65-4269-990e-2830630012ab\",\n                \"name\": \"Velo Lang Romanshorn\",\n                \"lat\": 47.565278040578,\n                \"lon\": 9.3670347270386,\n                \"address\": \"Bahnhofstrasse 65\",\n                \"region_id\": \"cda66726-d9e7-406e-fe70-96bc7c146743\",\n                \"post_code\": \"8590 \",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7f3eeed2-db65-4269-990e-2830630012ab&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7f3eeed2-db65-4269-990e-2830630012ab&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7f3eeed2-db65-4269-990e-2830630012ab&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"3a255092-9203-43a9-8bd1-3a5a99b66219\",\n                \"name\": \"Velo Lukas GmbH\",\n                \"lat\": 47.407632,\n                \"lon\": 8.548559,\n                \"address\": \"Schwamendingenstrasse 25\",\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"post_code\": \"8050\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3a255092-9203-43a9-8bd1-3a5a99b66219&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3a255092-9203-43a9-8bd1-3a5a99b66219&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3a255092-9203-43a9-8bd1-3a5a99b66219&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"d4477a46-56ff-462c-e144-aff6a3c0c1a8\",\n                \"name\": \"Velociped\",\n                \"lat\": 47.033654,\n                \"lon\": 8.278094,\n                \"address\": \"Luzernerstrasse 4\",\n                \"region_id\": \"404c3386-19d5-4931-b999-4f90fa9c9184\",\n                \"post_code\": \"6010\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d4477a46-56ff-462c-e144-aff6a3c0c1a8&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d4477a46-56ff-462c-e144-aff6a3c0c1a8&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d4477a46-56ff-462c-e144-aff6a3c0c1a8&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"e877c186-79f3-448c-c968-20b4bcf0d515\",\n                \"name\": \"vélocité Lausanne\",\n                \"lat\": 46.52372,\n                \"lon\": 6.638514,\n                \"address\": \"Rue Dr César-Roux 29\",\n                \"region_id\": \"6dca8350-0c11-40b5-de3a-6628bf2469da\",\n                \"post_code\": \"1005\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e877c186-79f3-448c-c968-20b4bcf0d515&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e877c186-79f3-448c-c968-20b4bcf0d515&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e877c186-79f3-448c-c968-20b4bcf0d515&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"c9c38b7c-1b66-41db-d03c-5b5b549509bc\",\n                \"name\": \"Velocité Valais\",\n                \"lat\": 46.22856645876,\n                \"lon\": 7.3682782653282,\n                \"address\": \"Rue de l'industrie 10\",\n                \"region_id\": \"f1761752-4bda-43a6-be3e-8d120c8c291a\",\n                \"post_code\": \"1950\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c9c38b7c-1b66-41db-d03c-5b5b549509bc&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c9c38b7c-1b66-41db-d03c-5b5b549509bc&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c9c38b7c-1b66-41db-d03c-5b5b549509bc&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"bf5badc8-1c9c-4a47-9590-94d629d0c0f7\",\n                \"name\": \"Velokurier Biel / Bienne\",\n                \"lat\": 47.141865,\n                \"lon\": 7.246282,\n                \"address\": \"Ring 13\",\n                \"region_id\": \"9e101bd8-7f9a-4cfe-9708-4922daf8266a\",\n                \"post_code\": \"2502\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=bf5badc8-1c9c-4a47-9590-94d629d0c0f7&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=bf5badc8-1c9c-4a47-9590-94d629d0c0f7&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=bf5badc8-1c9c-4a47-9590-94d629d0c0f7&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"33f27d6a-e5f6-4f24-c23d-5c728f9d3a91\",\n                \"name\": \"Velokurierladen Bern\",\n                \"lat\": 46.957045,\n                \"lon\": 7.444755,\n                \"address\": \"Lorrainestrasse 21\",\n                \"region_id\": \"b33b7cef-c74d-4789-9a31-8586dcf47e11\",\n                \"post_code\": \"3013\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=33f27d6a-e5f6-4f24-c23d-5c728f9d3a91&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=33f27d6a-e5f6-4f24-c23d-5c728f9d3a91&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=33f27d6a-e5f6-4f24-c23d-5c728f9d3a91&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"c6ea0cae-7f3f-4e2b-98a2-1fb6800d2f94\",\n                \"name\": \"Velolounge Kloten\",\n                \"lat\": 47.45347,\n                \"lon\": 8.57922,\n                \"address\": \"Flughafenstrasse 7\",\n                \"region_id\": \"460db108-a3d6-4bce-a207-90385d2dcda7\",\n                \"post_code\": \"8302\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c6ea0cae-7f3f-4e2b-98a2-1fb6800d2f94&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c6ea0cae-7f3f-4e2b-98a2-1fb6800d2f94&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c6ea0cae-7f3f-4e2b-98a2-1fb6800d2f94&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"bf0f68cf-30c9-4438-f6b4-af37d45bfcc3\",\n                \"name\": \"Velostation Bern Welle7\",\n                \"lat\": 46.947713495956,\n                \"lon\": 7.4364419122817,\n                \"address\": \"Im Merkurgässli, Deck 0 der Welle7\",\n                \"region_id\": \"b33b7cef-c74d-4789-9a31-8586dcf47e11\",\n                \"post_code\": \"3012\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=bf0f68cf-30c9-4438-f6b4-af37d45bfcc3&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=bf0f68cf-30c9-4438-f6b4-af37d45bfcc3&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=bf0f68cf-30c9-4438-f6b4-af37d45bfcc3&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"3d9e891d-1d03-445d-a29a-cdef04ef23b0\",\n                \"name\": \"Velostation Bulle\",\n                \"lat\": 46.619884927953,\n                \"lon\": 7.052422266309,\n                \"address\": \"Place de la Gare 16 (nouvelle gare)\",\n                \"region_id\": \"478b1931-b70f-47d7-beb2-3401ad4e30ed\",\n                \"post_code\": \"1630\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3d9e891d-1d03-445d-a29a-cdef04ef23b0&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3d9e891d-1d03-445d-a29a-cdef04ef23b0&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3d9e891d-1d03-445d-a29a-cdef04ef23b0&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"7e7f7cab-769a-4ed2-e2ec-6f7226d10eb9\",\n                \"name\": \"Velostation Burgdorf\",\n                \"lat\": 47.060537110766,\n                \"lon\": 7.6199491212012,\n                \"address\": \"Bucherstrasse 6\",\n                \"region_id\": \"04647e72-6e03-4974-8892-f0f113c9ff8e\",\n                \"post_code\": \"3400\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7e7f7cab-769a-4ed2-e2ec-6f7226d10eb9&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7e7f7cab-769a-4ed2-e2ec-6f7226d10eb9&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7e7f7cab-769a-4ed2-e2ec-6f7226d10eb9&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"6134aa36-7579-45a0-aacd-0e3a2ce2452e\",\n                \"name\": \"Velostation Carvelobox\",\n                \"lat\": 47.369188508253,\n                \"lon\": 8.6868343034157,\n                \"address\": \"Stationsstrasse 54\",\n                \"region_id\": \"45e68dfe-7a45-4fbf-ad44-6b3faa28169c\",\n                \"post_code\": \"8606\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6134aa36-7579-45a0-aacd-0e3a2ce2452e&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6134aa36-7579-45a0-aacd-0e3a2ce2452e&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6134aa36-7579-45a0-aacd-0e3a2ce2452e&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"86bc7e19-60af-4135-d678-d2ca3c323758\",\n                \"name\": \"Velostation Solothurn | ProWork AG\",\n                \"lat\": 47.20438997598,\n                \"lon\": 7.5423719283022,\n                \"address\": \"Dornacherstrasse 54\",\n                \"region_id\": \"bfafc160-5f9c-457c-cfa4-31cab72ef14f\",\n                \"post_code\": \"4500\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=86bc7e19-60af-4135-d678-d2ca3c323758&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=86bc7e19-60af-4135-d678-d2ca3c323758&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=86bc7e19-60af-4135-d678-d2ca3c323758&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"bcfa8777-c9be-4272-879d-a3e2e369a860\",\n                \"name\": \"Velove\",\n                \"lat\": 47.562466,\n                \"lon\": 7.569574,\n                \"address\": \"Strassburgerallee 76\",\n                \"region_id\": \"a174c4dd-bcc6-47bf-e7a7-51efb4594ff1\",\n                \"post_code\": \"4055\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=bcfa8777-c9be-4272-879d-a3e2e369a860&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=bcfa8777-c9be-4272-879d-a3e2e369a860&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=bcfa8777-c9be-4272-879d-a3e2e369a860&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"7e19c5ce-bced-44e5-e764-9b1dcbb001b4\",\n                \"name\": \"Vita Drogerie AG\",\n                \"lat\": 47.473652,\n                \"lon\": 8.308096,\n                \"address\": \"Theaterplatz 1\",\n                \"region_id\": \"908707bf-9235-4fa6-848b-ca7d4c0b1878\",\n                \"post_code\": \"5400\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7e19c5ce-bced-44e5-e764-9b1dcbb001b4&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7e19c5ce-bced-44e5-e764-9b1dcbb001b4&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7e19c5ce-bced-44e5-e764-9b1dcbb001b4&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"094bec9a-a77d-4287-b504-8ff49b52db93\",\n                \"name\": \"VOI Spiegel\",\n                \"lat\": 46.92642,\n                \"lon\": 7.433654,\n                \"address\": \"Chasseralstrasse 156\",\n                \"region_id\": \"8c024719-4721-4f9f-9553-fda1f121a141\",\n                \"post_code\": \"3095\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=094bec9a-a77d-4287-b504-8ff49b52db93&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=094bec9a-a77d-4287-b504-8ff49b52db93&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=094bec9a-a77d-4287-b504-8ff49b52db93&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"ad9e6b1e-9fea-4f9a-dd80-626d84edbecd\",\n                \"name\": \"Voirie de Collex-Bossy Carvelobox\",\n                \"lat\": 46.272253234312,\n                \"lon\": 6.1246192900218,\n                \"address\": \"Rte de Collex 205\",\n                \"region_id\": \"d7402011-9381-47cd-e34d-3c31560720e7\",\n                \"post_code\": \"1239\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ad9e6b1e-9fea-4f9a-dd80-626d84edbecd&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ad9e6b1e-9fea-4f9a-dd80-626d84edbecd&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ad9e6b1e-9fea-4f9a-dd80-626d84edbecd&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"642c5af6-c960-4f50-e01e-984716510805\",\n                \"name\": \"Volg Muttenz\",\n                \"lat\": 47.523513,\n                \"lon\": 7.645207,\n                \"address\": \"Hauptstrasse 11\",\n                \"region_id\": \"f5260efc-88d5-4af3-88a9-cb2eb541cbcb\",\n                \"post_code\": \"4132\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=642c5af6-c960-4f50-e01e-984716510805&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=642c5af6-c960-4f50-e01e-984716510805&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=642c5af6-c960-4f50-e01e-984716510805&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"cac96d24-e373-47e8-d9d3-4b02eff04e0c\",\n                \"name\": \"Vom Fass Zug\",\n                \"lat\": 47.167722718687,\n                \"lon\": 8.5153973683533,\n                \"address\": \"Neugasse 14\",\n                \"region_id\": \"12a72002-4ae3-423e-cefc-34acfdf670c3\",\n                \"post_code\": \"6300\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=cac96d24-e373-47e8-d9d3-4b02eff04e0c&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=cac96d24-e373-47e8-d9d3-4b02eff04e0c&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=cac96d24-e373-47e8-d9d3-4b02eff04e0c&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"e3b561bb-182d-495a-ca6a-b866a9bd782a\",\n                \"name\": \"Vom Fass Zürich\",\n                \"lat\": 47.378572,\n                \"lon\": 8.533483,\n                \"address\": \"Europaallee 17\",\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"post_code\": \"8004\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e3b561bb-182d-495a-ca6a-b866a9bd782a&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e3b561bb-182d-495a-ca6a-b866a9bd782a&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e3b561bb-182d-495a-ca6a-b866a9bd782a&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"71904c80-8902-41f8-f261-3f939b9c2d14\",\n                \"name\": \"Wacker Beck\",\n                \"lat\": 47.351174269642,\n                \"lon\": 7.9122309924663,\n                \"address\": \"Martin Disteli-Strasse 49\",\n                \"region_id\": \"cf10cd2a-4f22-4c01-d82b-404f7537918b\",\n                \"post_code\": \"4600\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=71904c80-8902-41f8-f261-3f939b9c2d14&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=71904c80-8902-41f8-f261-3f939b9c2d14&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=71904c80-8902-41f8-f261-3f939b9c2d14&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"101a104e-4421-448e-d810-12ef6bb55266\",\n                \"name\": \"wartsaal | kaffee bar bücher\",\n                \"lat\": 46.956663,\n                \"lon\": 7.444791,\n                \"address\": \"Lorrainestrasse 15\",\n                \"region_id\": \"b33b7cef-c74d-4789-9a31-8586dcf47e11\",\n                \"post_code\": \"3013\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=101a104e-4421-448e-d810-12ef6bb55266&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=101a104e-4421-448e-d810-12ef6bb55266&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=101a104e-4421-448e-d810-12ef6bb55266&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"1b7b81c7-757a-4a43-a684-2a3f17fa3b07\",\n                \"name\": \"Werk- und Technologiezentrum Linthgebiet\",\n                \"lat\": 47.224270288066,\n                \"lon\": 8.8431740510066,\n                \"address\": \"Schachenstrasse 82\",\n                \"region_id\": \"262298b5-3221-4091-8cf1-268eb3ca6059\",\n                \"post_code\": \"8645\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1b7b81c7-757a-4a43-a684-2a3f17fa3b07&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1b7b81c7-757a-4a43-a684-2a3f17fa3b07&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1b7b81c7-757a-4a43-a684-2a3f17fa3b07&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"affe1fcd-5867-40ef-c2ae-c17914e128d4\",\n                \"name\": \"Wilde Möhre\",\n                \"lat\": 47.417688,\n                \"lon\": 9.363375,\n                \"address\": \"Güterbahnhofstrasse 7\",\n                \"region_id\": \"4886ff58-4bba-4109-a876-cdad14cd089a\",\n                \"post_code\": \"9000\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=affe1fcd-5867-40ef-c2ae-c17914e128d4&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=affe1fcd-5867-40ef-c2ae-c17914e128d4&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=affe1fcd-5867-40ef-c2ae-c17914e128d4&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"3e8f02aa-bc6a-4210-f4f8-1bbba4ec5f70\",\n                \"name\": \"Wortschatz Bibliothek und Erlebniskaffee\",\n                \"lat\": 47.65591,\n                \"lon\": 9.12918,\n                \"address\": \"Hauptstrasse 54\",\n                \"region_id\": \"efd5cc8f-5db1-402d-e667-20fdf5b2903a\",\n                \"post_code\": \"8274\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3e8f02aa-bc6a-4210-f4f8-1bbba4ec5f70&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3e8f02aa-bc6a-4210-f4f8-1bbba4ec5f70&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3e8f02aa-bc6a-4210-f4f8-1bbba4ec5f70&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"6c4f89b7-b3d8-4be5-cb33-cc10d2d5cb86\",\n                \"name\": \"Zentral- und Hochschulbibliothek\",\n                \"lat\": 47.048378620842,\n                \"lon\": 8.3074572711901,\n                \"address\": \"Sempacherstrasse 10\",\n                \"region_id\": \"404c3386-19d5-4931-b999-4f90fa9c9184\",\n                \"post_code\": \"6002\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6c4f89b7-b3d8-4be5-cb33-cc10d2d5cb86&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6c4f89b7-b3d8-4be5-cb33-cc10d2d5cb86&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6c4f89b7-b3d8-4be5-cb33-cc10d2d5cb86&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"c93fc4b5-b918-40f3-8611-f59aed3b98ed\",\n                \"name\": \"Zentrum Paul Klee\",\n                \"lat\": 46.949872,\n                \"lon\": 7.474431,\n                \"address\": \"Monument im Fruchtland 3\",\n                \"region_id\": \"b33b7cef-c74d-4789-9a31-8586dcf47e11\",\n                \"post_code\": \"3000\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c93fc4b5-b918-40f3-8611-f59aed3b98ed&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c93fc4b5-b918-40f3-8611-f59aed3b98ed&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c93fc4b5-b918-40f3-8611-f59aed3b98ed&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"a841fc38-deca-4f25-dde8-90d36ec51d86\",\n                \"name\": \"Zentrum Regensdorf\",\n                \"lat\": 47.431486801889,\n                \"lon\": 8.468269599213,\n                \"address\": \"Im Zentrum 1\",\n                \"region_id\": \"222c61a7-cdba-415f-a663-16e870c00ddc\",\n                \"post_code\": \"8105\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a841fc38-deca-4f25-dde8-90d36ec51d86&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a841fc38-deca-4f25-dde8-90d36ec51d86&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a841fc38-deca-4f25-dde8-90d36ec51d86&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"fba838c6-eb5d-4237-a1b4-45c0f3d1162a\",\n                \"name\": \"ZOLLFREI SPAR Supermarkt\",\n                \"lat\": 47.380045424315,\n                \"lon\": 8.4896585999988,\n                \"address\": \"Freilagerstrasse 51\",\n                \"region_id\": \"f71546e4-4556-4462-eeb8-f01c89f38076\",\n                \"post_code\": \"8047\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fba838c6-eb5d-4237-a1b4-45c0f3d1162a&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fba838c6-eb5d-4237-a1b4-45c0f3d1162a&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fba838c6-eb5d-4237-a1b4-45c0f3d1162a&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"cd478108-5ed6-4168-e420-b850faca3ba2\",\n                \"name\": \"Zooburger Mon-Loisir\",\n                \"lat\": 46.511385,\n                \"lon\": 6.630901,\n                \"address\": \"Avenue Mon-Loisir 16\",\n                \"region_id\": \"6dca8350-0c11-40b5-de3a-6628bf2469da\",\n                \"post_code\": \"1006\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=cd478108-5ed6-4168-e420-b850faca3ba2&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=cd478108-5ed6-4168-e420-b850faca3ba2&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=cd478108-5ed6-4168-e420-b850faca3ba2&start=1724938200&end=1724940000\"\n                }\n            },\n            {\n                \"station_id\": \"7444f41a-071a-453b-84c5-51458b4eaf47\",\n                \"name\": \"Zweiradwerkstatt\",\n                \"lat\": 47.06187,\n                \"lon\": 7.62239,\n                \"address\": \"Kirchbergstrasse 16\",\n                \"region_id\": \"04647e72-6e03-4974-8892-f0f113c9ff8e\",\n                \"post_code\": \"3400\",\n                \"rental_uris\": {\n                    \"web\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7444f41a-071a-453b-84c5-51458b4eaf47&start=1724938200&end=1724940000\",\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7444f41a-071a-453b-84c5-51458b4eaf47&start=1724938200&end=1724940000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7444f41a-071a-453b-84c5-51458b4eaf47&start=1724938200&end=1724940000\"\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"38976c5b-d854-4572-9945-776f51f7e1df"},{"name":"station status","id":"a0a2d298-ddc0-4c61-a438-9c13550ecc8a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.carvelo.ch/v2/gbfs/station_status.json","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{Auth Key}}"},{"key":"password","value":"{{Auth Pwd}}"}]},"isInherited":true,"source":{"_postman_id":"b826b5ce-c9b3-4eeb-9338-b7699f0b4880","id":"b826b5ce-c9b3-4eeb-9338-b7699f0b4880","name":"GBFS","type":"folder"}},"urlObject":{"path":["v2","gbfs","station_status.json"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[{"id":"ee18e6d6-10b8-4f26-9475-d7173496e30c","name":"station_status.json","originalRequest":{"method":"GET","header":[],"url":"https://api.carvelo.ch/v2/gbfs/station_status.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 29 Nov 2024 13:10:37 GMT"},{"key":"Server","value":"Apache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"6"},{"key":"Access-Control-Expose-Headers","value":"X-Pagination-Per-Page, X-Pagination-Total-Count, X-Pagination-Current-Page, X-Pagination-Page-Count"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"https://www.carvelo.ch"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, X-Requested-With"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"last_updated\": 1732885838,\n    \"ttl\": 60,\n    \"version\": \"2.3\",\n    \"data\": {\n        \"stations\": [\n            {\n                \"station_id\": \"9515c94a-2622-4693-9f6a-fa021f25b05c\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": false,\n                \"is_returning\": false,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9515c94a-2622-4693-9f6a-fa021f25b05c&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9515c94a-2622-4693-9f6a-fa021f25b05c&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"9de45fe3-649f-4f28-8457-a8a821db7047\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9de45fe3-649f-4f28-8457-a8a821db7047&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9de45fe3-649f-4f28-8457-a8a821db7047&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"105b803e-24ba-4724-87d7-d63b421e2ddc\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": false,\n                \"is_returning\": false,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=105b803e-24ba-4724-87d7-d63b421e2ddc&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=105b803e-24ba-4724-87d7-d63b421e2ddc&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"d5e6b008-bddf-4994-cae1-916e843a297d\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 0\n                    }\n                ],\n                \"num_docks_available\": 1,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 1\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d5e6b008-bddf-4994-cae1-916e843a297d&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d5e6b008-bddf-4994-cae1-916e843a297d&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"9f238bd6-07fe-492e-d242-5c2a92bcc60e\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9f238bd6-07fe-492e-d242-5c2a92bcc60e&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9f238bd6-07fe-492e-d242-5c2a92bcc60e&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"f148aa4c-2ae4-43d6-8483-debf32e0cc84\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f148aa4c-2ae4-43d6-8483-debf32e0cc84&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f148aa4c-2ae4-43d6-8483-debf32e0cc84&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"aee71808-3655-455e-97fb-bbe7bd717998\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=aee71808-3655-455e-97fb-bbe7bd717998&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=aee71808-3655-455e-97fb-bbe7bd717998&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"1f20dbbd-a186-4ae4-ae0b-0236e4770a0f\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"716d9b9e-b835-4737-efe4-c18589b80440\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"716d9b9e-b835-4737-efe4-c18589b80440\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1f20dbbd-a186-4ae4-ae0b-0236e4770a0f&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1f20dbbd-a186-4ae4-ae0b-0236e4770a0f&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"8b99f70f-4bb3-48b0-f323-654792e3685c\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8b99f70f-4bb3-48b0-f323-654792e3685c&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8b99f70f-4bb3-48b0-f323-654792e3685c&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"031e5eaa-f836-426b-ce3d-aafa7607517e\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=031e5eaa-f836-426b-ce3d-aafa7607517e&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=031e5eaa-f836-426b-ce3d-aafa7607517e&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"b32ca1fa-8d7c-42e0-8dfc-11235c4a326a\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"b852b7a7-170e-4730-8732-d8291c29cc6e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"b852b7a7-170e-4730-8732-d8291c29cc6e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b32ca1fa-8d7c-42e0-8dfc-11235c4a326a&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b32ca1fa-8d7c-42e0-8dfc-11235c4a326a&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"23b4cc9a-756c-49ea-9ade-b30171e7491b\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=23b4cc9a-756c-49ea-9ade-b30171e7491b&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=23b4cc9a-756c-49ea-9ade-b30171e7491b&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"9a8bfea2-71b6-4dfe-fbce-b68566ea3a05\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9a8bfea2-71b6-4dfe-fbce-b68566ea3a05&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9a8bfea2-71b6-4dfe-fbce-b68566ea3a05&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"cac4ea23-b695-47ac-8010-c063c1b45393\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=cac4ea23-b695-47ac-8010-c063c1b45393&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=cac4ea23-b695-47ac-8010-c063c1b45393&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"e25779fb-7a4e-4072-c5fd-afa26a303c72\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e25779fb-7a4e-4072-c5fd-afa26a303c72&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e25779fb-7a4e-4072-c5fd-afa26a303c72&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"a823daba-7b5b-4064-ed79-758e01702f00\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a823daba-7b5b-4064-ed79-758e01702f00&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a823daba-7b5b-4064-ed79-758e01702f00&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"e2cf5d2c-3b58-4ff6-f29d-ff5ed92cdc1f\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e2cf5d2c-3b58-4ff6-f29d-ff5ed92cdc1f&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e2cf5d2c-3b58-4ff6-f29d-ff5ed92cdc1f&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"981b26a7-ceeb-4d31-e62d-febce2d721bd\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=981b26a7-ceeb-4d31-e62d-febce2d721bd&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=981b26a7-ceeb-4d31-e62d-febce2d721bd&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"6234aae3-4d9d-4461-b71e-2d5efd087a67\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6234aae3-4d9d-4461-b71e-2d5efd087a67&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6234aae3-4d9d-4461-b71e-2d5efd087a67&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"de300947-26dc-4ebc-b776-7876a52dae25\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=de300947-26dc-4ebc-b776-7876a52dae25&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=de300947-26dc-4ebc-b776-7876a52dae25&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"bad61a41-ac99-4599-9547-db31f318fe1b\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=bad61a41-ac99-4599-9547-db31f318fe1b&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=bad61a41-ac99-4599-9547-db31f318fe1b&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"500e34c7-116a-49b5-fdbe-6778de034d06\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=500e34c7-116a-49b5-fdbe-6778de034d06&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=500e34c7-116a-49b5-fdbe-6778de034d06&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"fde57824-0476-4774-f251-421795af1dd8\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fde57824-0476-4774-f251-421795af1dd8&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fde57824-0476-4774-f251-421795af1dd8&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"43a33698-13f7-418f-bc51-08de03dac894\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 0\n                    }\n                ],\n                \"num_docks_available\": 1,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 1\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=43a33698-13f7-418f-bc51-08de03dac894&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=43a33698-13f7-418f-bc51-08de03dac894&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"52c39c1d-e886-43f7-dbe2-40efe7648c9e\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 0\n                    }\n                ],\n                \"num_docks_available\": 1,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 1\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=52c39c1d-e886-43f7-dbe2-40efe7648c9e&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=52c39c1d-e886-43f7-dbe2-40efe7648c9e&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"aa8bd583-1bfb-4ab6-de45-744f98111f47\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=aa8bd583-1bfb-4ab6-de45-744f98111f47&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=aa8bd583-1bfb-4ab6-de45-744f98111f47&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"ef85ec2d-4648-4fe4-bd5b-6edbee9b7ae6\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 0\n                    }\n                ],\n                \"num_docks_available\": 1,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 1\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ef85ec2d-4648-4fe4-bd5b-6edbee9b7ae6&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ef85ec2d-4648-4fe4-bd5b-6edbee9b7ae6&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"d963f025-a8cc-49e6-d948-d118c69fabfe\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 0\n                    }\n                ],\n                \"num_docks_available\": 1,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 1\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d963f025-a8cc-49e6-d948-d118c69fabfe&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d963f025-a8cc-49e6-d948-d118c69fabfe&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"ca0d8b01-1acc-45be-b54f-917b685c466f\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 0\n                    }\n                ],\n                \"num_docks_available\": 1,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 1\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ca0d8b01-1acc-45be-b54f-917b685c466f&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ca0d8b01-1acc-45be-b54f-917b685c466f&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"22f1ef80-108f-4d92-a4dc-57b6b6f62bb0\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=22f1ef80-108f-4d92-a4dc-57b6b6f62bb0&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=22f1ef80-108f-4d92-a4dc-57b6b6f62bb0&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"73b94390-42f9-4596-e43b-17a9676c8eb1\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": false,\n                \"is_returning\": false,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=73b94390-42f9-4596-e43b-17a9676c8eb1&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=73b94390-42f9-4596-e43b-17a9676c8eb1&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"403c6dac-37ad-42b2-e2b5-eecd3f3d8b3e\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=403c6dac-37ad-42b2-e2b5-eecd3f3d8b3e&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=403c6dac-37ad-42b2-e2b5-eecd3f3d8b3e&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"3026d39d-cca0-4e61-d911-482b6aa21a02\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"8e2dbacd-485e-485b-cc85-6dd08bd1ac59\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"8e2dbacd-485e-485b-cc85-6dd08bd1ac59\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3026d39d-cca0-4e61-d911-482b6aa21a02&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3026d39d-cca0-4e61-d911-482b6aa21a02&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"5b1081d6-6bc0-4bf0-eb0e-0eaea01e064f\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=5b1081d6-6bc0-4bf0-eb0e-0eaea01e064f&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=5b1081d6-6bc0-4bf0-eb0e-0eaea01e064f&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"1c741450-02ed-412e-ce4d-bfd470da7281\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1c741450-02ed-412e-ce4d-bfd470da7281&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1c741450-02ed-412e-ce4d-bfd470da7281&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"ef26b3fa-8fc4-44ab-9021-790b2f3447e7\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"651f1ba2-2e3c-4f97-8ed9-988327c16db0\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"651f1ba2-2e3c-4f97-8ed9-988327c16db0\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ef26b3fa-8fc4-44ab-9021-790b2f3447e7&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ef26b3fa-8fc4-44ab-9021-790b2f3447e7&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"8b01a0c3-c47e-4e0e-cc68-027f2cb001ff\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": false,\n                \"is_returning\": false,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8b01a0c3-c47e-4e0e-cc68-027f2cb001ff&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8b01a0c3-c47e-4e0e-cc68-027f2cb001ff&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"600a2400-89dd-47fd-ec65-1718fa831c23\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 0\n                    }\n                ],\n                \"num_docks_available\": 1,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 1\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=600a2400-89dd-47fd-ec65-1718fa831c23&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=600a2400-89dd-47fd-ec65-1718fa831c23&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"b05eaf10-b1c1-4ac5-c26f-8083faf33c4d\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b05eaf10-b1c1-4ac5-c26f-8083faf33c4d&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b05eaf10-b1c1-4ac5-c26f-8083faf33c4d&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"4ac34b62-b8c2-47ed-db8d-bfab6e9cdaf6\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"1a9891f2-6fe8-49b9-b445-f51aadfbbcb6\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"1a9891f2-6fe8-49b9-b445-f51aadfbbcb6\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=4ac34b62-b8c2-47ed-db8d-bfab6e9cdaf6&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=4ac34b62-b8c2-47ed-db8d-bfab6e9cdaf6&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"27d33783-6f1b-4781-d740-fd27c5ca7c83\",\n                \"num_bikes_available\": 2,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"716d9b9e-b835-4737-efe4-c18589b80440\",\n                        \"count\": 1\n                    },\n                    {\n                        \"vehicle_type_id\": \"d36ea486-19c4-4ba7-e01a-84fba632220f\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"716d9b9e-b835-4737-efe4-c18589b80440\",\n                            \"d36ea486-19c4-4ba7-e01a-84fba632220f\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": false,\n                \"is_returning\": false,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=27d33783-6f1b-4781-d740-fd27c5ca7c83&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=27d33783-6f1b-4781-d740-fd27c5ca7c83&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"670018f0-0cc7-4d31-8235-79cdcd344d40\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"8e4b6626-26b1-48c0-cc51-f83000decb88\",\n                        \"count\": 1\n                    },\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 0\n                    }\n                ],\n                \"num_docks_available\": 1,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"8e4b6626-26b1-48c0-cc51-f83000decb88\",\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 1\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": false,\n                \"is_returning\": false,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=670018f0-0cc7-4d31-8235-79cdcd344d40&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=670018f0-0cc7-4d31-8235-79cdcd344d40&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"14f2639f-bb29-4d9e-a9dd-07f0e89fad0c\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=14f2639f-bb29-4d9e-a9dd-07f0e89fad0c&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=14f2639f-bb29-4d9e-a9dd-07f0e89fad0c&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"7a1be946-2636-4409-9d42-385463505bc9\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7a1be946-2636-4409-9d42-385463505bc9&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7a1be946-2636-4409-9d42-385463505bc9&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"a841dcc1-d37f-4e16-a616-c569422e6ee9\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a841dcc1-d37f-4e16-a616-c569422e6ee9&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a841dcc1-d37f-4e16-a616-c569422e6ee9&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"edb06700-c3a8-475f-ee9c-554833c17eb7\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=edb06700-c3a8-475f-ee9c-554833c17eb7&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=edb06700-c3a8-475f-ee9c-554833c17eb7&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"60ab1802-f301-4a20-fb5b-cc94d4d2eacc\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"d36ea486-19c4-4ba7-e01a-84fba632220f\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"d36ea486-19c4-4ba7-e01a-84fba632220f\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=60ab1802-f301-4a20-fb5b-cc94d4d2eacc&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=60ab1802-f301-4a20-fb5b-cc94d4d2eacc&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"67a13624-12b3-4070-de9e-07d21f7a9187\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=67a13624-12b3-4070-de9e-07d21f7a9187&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=67a13624-12b3-4070-de9e-07d21f7a9187&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"8422c5de-973e-4aff-9b41-0d2165c66248\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8422c5de-973e-4aff-9b41-0d2165c66248&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8422c5de-973e-4aff-9b41-0d2165c66248&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"88146cb0-8e53-4e0a-c45b-1bebf3a9320c\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=88146cb0-8e53-4e0a-c45b-1bebf3a9320c&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=88146cb0-8e53-4e0a-c45b-1bebf3a9320c&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"98c0dadf-cbe8-486e-f679-2a909a4cda0f\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 0\n                    }\n                ],\n                \"num_docks_available\": 1,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 1\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=98c0dadf-cbe8-486e-f679-2a909a4cda0f&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=98c0dadf-cbe8-486e-f679-2a909a4cda0f&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"c85c26bc-1039-4698-a6cf-20ba49f25d43\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c85c26bc-1039-4698-a6cf-20ba49f25d43&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c85c26bc-1039-4698-a6cf-20ba49f25d43&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"09c85d07-298a-4618-8049-ce77a2eadfba\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=09c85d07-298a-4618-8049-ce77a2eadfba&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=09c85d07-298a-4618-8049-ce77a2eadfba&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"f80bbc39-6071-4756-c596-2c124d54ebfd\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"651f1ba2-2e3c-4f97-8ed9-988327c16db0\",\n                        \"count\": 1\n                    },\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 0\n                    }\n                ],\n                \"num_docks_available\": 1,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"651f1ba2-2e3c-4f97-8ed9-988327c16db0\",\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 1\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f80bbc39-6071-4756-c596-2c124d54ebfd&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f80bbc39-6071-4756-c596-2c124d54ebfd&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"3b44f691-d805-4804-8014-5a5db1ac0875\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3b44f691-d805-4804-8014-5a5db1ac0875&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3b44f691-d805-4804-8014-5a5db1ac0875&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"3b4ef726-df80-4a2f-cf81-4db8ac65a00e\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"8e2dbacd-485e-485b-cc85-6dd08bd1ac59\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"8e2dbacd-485e-485b-cc85-6dd08bd1ac59\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3b4ef726-df80-4a2f-cf81-4db8ac65a00e&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3b4ef726-df80-4a2f-cf81-4db8ac65a00e&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"75e5e9f7-bafa-42f8-804c-347b78e63753\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=75e5e9f7-bafa-42f8-804c-347b78e63753&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=75e5e9f7-bafa-42f8-804c-347b78e63753&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"fa052bae-4eb5-42f3-fde6-80130d3223f2\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fa052bae-4eb5-42f3-fde6-80130d3223f2&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fa052bae-4eb5-42f3-fde6-80130d3223f2&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"760ad2f1-d1f4-4a03-daf7-55c1a81437eb\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 0\n                    }\n                ],\n                \"num_docks_available\": 1,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 1\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=760ad2f1-d1f4-4a03-daf7-55c1a81437eb&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=760ad2f1-d1f4-4a03-daf7-55c1a81437eb&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"5f3d8a96-d7e7-44bb-d2dd-5cecd126a347\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=5f3d8a96-d7e7-44bb-d2dd-5cecd126a347&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=5f3d8a96-d7e7-44bb-d2dd-5cecd126a347&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"712cfb73-6684-4b46-cb1d-a80749634349\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=712cfb73-6684-4b46-cb1d-a80749634349&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=712cfb73-6684-4b46-cb1d-a80749634349&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"d62233f1-c8f3-4540-d69a-d73f60eb791e\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d62233f1-c8f3-4540-d69a-d73f60eb791e&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d62233f1-c8f3-4540-d69a-d73f60eb791e&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"13107577-87b9-4d69-cabd-48ad693a4eb4\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=13107577-87b9-4d69-cabd-48ad693a4eb4&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=13107577-87b9-4d69-cabd-48ad693a4eb4&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"b8a61a5d-70c4-4e8e-cee0-6cc471c82c52\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b8a61a5d-70c4-4e8e-cee0-6cc471c82c52&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b8a61a5d-70c4-4e8e-cee0-6cc471c82c52&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"f4266936-a9a4-4cba-af4a-4bf6c7bb4a80\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f4266936-a9a4-4cba-af4a-4bf6c7bb4a80&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f4266936-a9a4-4cba-af4a-4bf6c7bb4a80&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"517b6f69-c2e8-4fcb-f362-8afe71bad3fa\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=517b6f69-c2e8-4fcb-f362-8afe71bad3fa&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=517b6f69-c2e8-4fcb-f362-8afe71bad3fa&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"c26f86aa-4267-4057-a5df-c40493ff1ea7\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c26f86aa-4267-4057-a5df-c40493ff1ea7&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c26f86aa-4267-4057-a5df-c40493ff1ea7&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"8ad07fb6-f16f-4476-c5d6-730a7d2ff6cc\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8ad07fb6-f16f-4476-c5d6-730a7d2ff6cc&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8ad07fb6-f16f-4476-c5d6-730a7d2ff6cc&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"9797c7c0-6f61-490b-dc04-9c837ce024b8\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9797c7c0-6f61-490b-dc04-9c837ce024b8&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9797c7c0-6f61-490b-dc04-9c837ce024b8&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"a8124640-5852-4b57-b031-7a46e0ab7ef7\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 0\n                    }\n                ],\n                \"num_docks_available\": 1,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 1\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a8124640-5852-4b57-b031-7a46e0ab7ef7&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a8124640-5852-4b57-b031-7a46e0ab7ef7&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"0e0eb1a0-001d-4af1-d939-5ebfcea032af\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=0e0eb1a0-001d-4af1-d939-5ebfcea032af&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=0e0eb1a0-001d-4af1-d939-5ebfcea032af&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"1893daa8-b6ec-491e-e060-1d8b5d603109\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1893daa8-b6ec-491e-e060-1d8b5d603109&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1893daa8-b6ec-491e-e060-1d8b5d603109&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"763f5527-3907-4609-9d80-8d7ed31d3eb5\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=763f5527-3907-4609-9d80-8d7ed31d3eb5&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=763f5527-3907-4609-9d80-8d7ed31d3eb5&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"7ac00e73-7685-4586-c89e-44b7d3e1aa85\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7ac00e73-7685-4586-c89e-44b7d3e1aa85&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7ac00e73-7685-4586-c89e-44b7d3e1aa85&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"0858de34-448f-43ee-f6ec-3727dc3db2d1\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=0858de34-448f-43ee-f6ec-3727dc3db2d1&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=0858de34-448f-43ee-f6ec-3727dc3db2d1&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"2aa7d212-f7da-4712-df85-c486ce1d1e64\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2aa7d212-f7da-4712-df85-c486ce1d1e64&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2aa7d212-f7da-4712-df85-c486ce1d1e64&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"a3e2c5ab-3990-4f8b-b438-c513946fdb39\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a3e2c5ab-3990-4f8b-b438-c513946fdb39&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a3e2c5ab-3990-4f8b-b438-c513946fdb39&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"398f5f13-fe83-4b3f-d2f1-e6396c0372ed\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"d36ea486-19c4-4ba7-e01a-84fba632220f\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"d36ea486-19c4-4ba7-e01a-84fba632220f\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": false,\n                \"is_returning\": false,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=398f5f13-fe83-4b3f-d2f1-e6396c0372ed&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=398f5f13-fe83-4b3f-d2f1-e6396c0372ed&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"69fe598a-6058-4b2e-e6b9-8817bad0ec9b\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=69fe598a-6058-4b2e-e6b9-8817bad0ec9b&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=69fe598a-6058-4b2e-e6b9-8817bad0ec9b&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"9b5ff999-7edc-4794-8d4e-d4c37981bd40\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": false,\n                \"is_returning\": false,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9b5ff999-7edc-4794-8d4e-d4c37981bd40&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9b5ff999-7edc-4794-8d4e-d4c37981bd40&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"15dfe347-f272-4af0-a375-3f97625eb297\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=15dfe347-f272-4af0-a375-3f97625eb297&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=15dfe347-f272-4af0-a375-3f97625eb297&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"d1815b12-dcaa-49ab-93fd-6994817312c5\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"0e74f40b-3d2d-4a4f-95ab-be60103bd532\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"0e74f40b-3d2d-4a4f-95ab-be60103bd532\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d1815b12-dcaa-49ab-93fd-6994817312c5&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d1815b12-dcaa-49ab-93fd-6994817312c5&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"2bdd77a2-6a53-4d83-825c-2b405b25d849\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2bdd77a2-6a53-4d83-825c-2b405b25d849&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2bdd77a2-6a53-4d83-825c-2b405b25d849&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"f9084b02-337d-4b19-e785-2936f029d3d9\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f9084b02-337d-4b19-e785-2936f029d3d9&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f9084b02-337d-4b19-e785-2936f029d3d9&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"b2befbfd-804d-445e-f634-4dcc9b7790de\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b2befbfd-804d-445e-f634-4dcc9b7790de&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b2befbfd-804d-445e-f634-4dcc9b7790de&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"fdd4bc8c-69c9-49b2-8b7b-28e8feae191b\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fdd4bc8c-69c9-49b2-8b7b-28e8feae191b&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fdd4bc8c-69c9-49b2-8b7b-28e8feae191b&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"cd7bb762-991c-411c-a294-81a7b7b8e6d9\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=cd7bb762-991c-411c-a294-81a7b7b8e6d9&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=cd7bb762-991c-411c-a294-81a7b7b8e6d9&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"7809d97c-40a0-4fc7-c891-725f336425a6\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7809d97c-40a0-4fc7-c891-725f336425a6&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7809d97c-40a0-4fc7-c891-725f336425a6&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"9deb07b3-2708-4389-a73f-e94f2cced642\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 0\n                    }\n                ],\n                \"num_docks_available\": 1,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 1\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9deb07b3-2708-4389-a73f-e94f2cced642&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9deb07b3-2708-4389-a73f-e94f2cced642&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"794409bc-ceba-42a6-98ea-d514804e1e36\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=794409bc-ceba-42a6-98ea-d514804e1e36&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=794409bc-ceba-42a6-98ea-d514804e1e36&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"d9aed8d3-2f44-4fb5-f446-2bd1afb50d8d\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d9aed8d3-2f44-4fb5-f446-2bd1afb50d8d&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d9aed8d3-2f44-4fb5-f446-2bd1afb50d8d&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"ee290b92-ca87-476c-91fa-8c78829e7b68\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ee290b92-ca87-476c-91fa-8c78829e7b68&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ee290b92-ca87-476c-91fa-8c78829e7b68&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"c1ba97c6-494c-4fdf-abaa-7450862a6820\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 0\n                    }\n                ],\n                \"num_docks_available\": 1,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 1\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c1ba97c6-494c-4fdf-abaa-7450862a6820&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c1ba97c6-494c-4fdf-abaa-7450862a6820&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"443def35-bdd0-4303-b941-a671b6d51178\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=443def35-bdd0-4303-b941-a671b6d51178&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=443def35-bdd0-4303-b941-a671b6d51178&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"27c72c0f-9b48-4578-c336-5fedb4c3a7c0\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=27c72c0f-9b48-4578-c336-5fedb4c3a7c0&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=27c72c0f-9b48-4578-c336-5fedb4c3a7c0&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"b5a91d79-8013-4207-fda8-ab8fd2f9c0fc\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b5a91d79-8013-4207-fda8-ab8fd2f9c0fc&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b5a91d79-8013-4207-fda8-ab8fd2f9c0fc&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"795bdbdf-473e-418f-e1e5-325b3320cbc2\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=795bdbdf-473e-418f-e1e5-325b3320cbc2&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=795bdbdf-473e-418f-e1e5-325b3320cbc2&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"961f7bf3-c30b-43a2-ba06-86fcd36d507f\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 0\n                    }\n                ],\n                \"num_docks_available\": 1,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 1\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": false,\n                \"is_returning\": false,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=961f7bf3-c30b-43a2-ba06-86fcd36d507f&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=961f7bf3-c30b-43a2-ba06-86fcd36d507f&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"3e68870a-c1c0-4382-dc67-396d002b31fa\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3e68870a-c1c0-4382-dc67-396d002b31fa&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3e68870a-c1c0-4382-dc67-396d002b31fa&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"7b6106e6-2ede-402f-97f0-5f5200e8eb84\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7b6106e6-2ede-402f-97f0-5f5200e8eb84&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7b6106e6-2ede-402f-97f0-5f5200e8eb84&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"7031f761-30fa-4284-945e-6aae2651c337\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7031f761-30fa-4284-945e-6aae2651c337&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7031f761-30fa-4284-945e-6aae2651c337&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"1306694a-1c3a-4ef6-83fd-5c909a932de0\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1306694a-1c3a-4ef6-83fd-5c909a932de0&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1306694a-1c3a-4ef6-83fd-5c909a932de0&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"a89495e3-6b95-4f20-f519-3e5f93016fc4\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a89495e3-6b95-4f20-f519-3e5f93016fc4&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a89495e3-6b95-4f20-f519-3e5f93016fc4&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"9c911bcb-d649-4d8d-b06c-1c767cbbe741\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"34cb33d7-9dc0-4c06-a914-aae04441661d\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"34cb33d7-9dc0-4c06-a914-aae04441661d\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9c911bcb-d649-4d8d-b06c-1c767cbbe741&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9c911bcb-d649-4d8d-b06c-1c767cbbe741&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"2b2ada80-e70e-4937-aa07-b6c0f3e3fbf5\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"651f1ba2-2e3c-4f97-8ed9-988327c16db0\",\n                        \"count\": 0\n                    },\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 1,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"651f1ba2-2e3c-4f97-8ed9-988327c16db0\",\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 1\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2b2ada80-e70e-4937-aa07-b6c0f3e3fbf5&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2b2ada80-e70e-4937-aa07-b6c0f3e3fbf5&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"316f245a-3308-481c-8f04-8d7da1f518cc\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=316f245a-3308-481c-8f04-8d7da1f518cc&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=316f245a-3308-481c-8f04-8d7da1f518cc&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"943ce659-3ddf-415d-b9e2-95227b6fe0ba\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=943ce659-3ddf-415d-b9e2-95227b6fe0ba&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=943ce659-3ddf-415d-b9e2-95227b6fe0ba&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"d65d3779-a418-4fdb-ff9b-3540960cb4f5\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d65d3779-a418-4fdb-ff9b-3540960cb4f5&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d65d3779-a418-4fdb-ff9b-3540960cb4f5&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"1578c87c-63ac-4107-914a-59f6d99c54c3\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": false,\n                \"is_returning\": false,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1578c87c-63ac-4107-914a-59f6d99c54c3&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1578c87c-63ac-4107-914a-59f6d99c54c3&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"dbbae631-160a-4729-d179-110bf012a9bd\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": false,\n                \"is_returning\": false,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=dbbae631-160a-4729-d179-110bf012a9bd&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=dbbae631-160a-4729-d179-110bf012a9bd&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"e1450218-ecf3-4dd8-bd9c-ff455d78b96d\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e1450218-ecf3-4dd8-bd9c-ff455d78b96d&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e1450218-ecf3-4dd8-bd9c-ff455d78b96d&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"f5738791-1941-404f-a1ca-a82a63a6eaab\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 0\n                    }\n                ],\n                \"num_docks_available\": 1,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 1\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f5738791-1941-404f-a1ca-a82a63a6eaab&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f5738791-1941-404f-a1ca-a82a63a6eaab&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"1218054a-7b4b-40fd-c398-780130a1a12a\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1218054a-7b4b-40fd-c398-780130a1a12a&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1218054a-7b4b-40fd-c398-780130a1a12a&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"08f6c5f7-a5d7-4a45-9814-d210296e9c15\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=08f6c5f7-a5d7-4a45-9814-d210296e9c15&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=08f6c5f7-a5d7-4a45-9814-d210296e9c15&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"1ca43100-6508-494f-e967-56cb23cb5da9\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1ca43100-6508-494f-e967-56cb23cb5da9&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1ca43100-6508-494f-e967-56cb23cb5da9&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"562dc09b-3ee0-4370-aeca-d92e42d4f8f7\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=562dc09b-3ee0-4370-aeca-d92e42d4f8f7&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=562dc09b-3ee0-4370-aeca-d92e42d4f8f7&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"6afe859e-5cce-435c-c462-05b8d15e10fb\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6afe859e-5cce-435c-c462-05b8d15e10fb&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6afe859e-5cce-435c-c462-05b8d15e10fb&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"fa2c0a07-3985-4322-c88d-239f96eec52b\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fa2c0a07-3985-4322-c88d-239f96eec52b&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fa2c0a07-3985-4322-c88d-239f96eec52b&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"e708e132-6ea2-447f-a6c5-2e7d03f76a68\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e708e132-6ea2-447f-a6c5-2e7d03f76a68&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e708e132-6ea2-447f-a6c5-2e7d03f76a68&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"8fa33e18-6420-4352-855d-532b5dbac6a2\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8fa33e18-6420-4352-855d-532b5dbac6a2&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8fa33e18-6420-4352-855d-532b5dbac6a2&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"9c146574-1b7a-49d7-bcf9-68cd7408af73\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9c146574-1b7a-49d7-bcf9-68cd7408af73&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9c146574-1b7a-49d7-bcf9-68cd7408af73&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"060b94c9-16e8-4ab7-a071-56983a7b0bcb\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 0\n                    }\n                ],\n                \"num_docks_available\": 1,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 1\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=060b94c9-16e8-4ab7-a071-56983a7b0bcb&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=060b94c9-16e8-4ab7-a071-56983a7b0bcb&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"a8fad01f-fecb-4f57-c5c5-05f3857c9f01\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a8fad01f-fecb-4f57-c5c5-05f3857c9f01&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a8fad01f-fecb-4f57-c5c5-05f3857c9f01&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"2fcb8e03-eadb-4179-ad5e-24b2de081dd5\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"a3c200ac-5aa6-4dd7-c8ba-0d8b570291b8\",\n                        \"count\": 0\n                    }\n                ],\n                \"num_docks_available\": 1,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"a3c200ac-5aa6-4dd7-c8ba-0d8b570291b8\"\n                        ],\n                        \"count\": 1\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2fcb8e03-eadb-4179-ad5e-24b2de081dd5&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2fcb8e03-eadb-4179-ad5e-24b2de081dd5&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"f5455ac6-fee5-4966-c0e2-c5d0e15d548c\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"b6fda5ab-0e44-4cf9-c5fa-729706b21c98\",\n                        \"count\": 0\n                    }\n                ],\n                \"num_docks_available\": 1,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"b6fda5ab-0e44-4cf9-c5fa-729706b21c98\"\n                        ],\n                        \"count\": 1\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f5455ac6-fee5-4966-c0e2-c5d0e15d548c&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f5455ac6-fee5-4966-c0e2-c5d0e15d548c&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"042be932-bf74-4f8e-fcb9-8664711ca4d5\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=042be932-bf74-4f8e-fcb9-8664711ca4d5&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=042be932-bf74-4f8e-fcb9-8664711ca4d5&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"6a03bbbb-1197-49ea-a4e4-76e35fe45e54\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6a03bbbb-1197-49ea-a4e4-76e35fe45e54&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6a03bbbb-1197-49ea-a4e4-76e35fe45e54&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"f0fdf1bd-0f9f-4655-efe0-f10c625d1755\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f0fdf1bd-0f9f-4655-efe0-f10c625d1755&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f0fdf1bd-0f9f-4655-efe0-f10c625d1755&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"845ce861-995f-48ed-95e1-8004f2e2e2b6\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=845ce861-995f-48ed-95e1-8004f2e2e2b6&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=845ce861-995f-48ed-95e1-8004f2e2e2b6&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"5acaa2fe-7398-4394-b389-8bc8a7c8fc2b\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=5acaa2fe-7398-4394-b389-8bc8a7c8fc2b&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=5acaa2fe-7398-4394-b389-8bc8a7c8fc2b&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"aec33b62-73c7-4365-ed82-faa31eebf005\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=aec33b62-73c7-4365-ed82-faa31eebf005&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=aec33b62-73c7-4365-ed82-faa31eebf005&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"291e34d1-a0c4-41a1-e2e5-54cdba748b01\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=291e34d1-a0c4-41a1-e2e5-54cdba748b01&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=291e34d1-a0c4-41a1-e2e5-54cdba748b01&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"4e6c35b2-2b83-4199-c8be-4f9d6823c45c\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=4e6c35b2-2b83-4199-c8be-4f9d6823c45c&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=4e6c35b2-2b83-4199-c8be-4f9d6823c45c&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"5efc7cda-8172-4c14-ab29-a4db298bdc0c\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=5efc7cda-8172-4c14-ab29-a4db298bdc0c&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=5efc7cda-8172-4c14-ab29-a4db298bdc0c&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"24e2de51-4871-4720-992c-48abfb7dfff9\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 0\n                    }\n                ],\n                \"num_docks_available\": 1,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 1\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=24e2de51-4871-4720-992c-48abfb7dfff9&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=24e2de51-4871-4720-992c-48abfb7dfff9&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"488c9201-654a-4758-bcbc-921c05f19046\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=488c9201-654a-4758-bcbc-921c05f19046&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=488c9201-654a-4758-bcbc-921c05f19046&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"fd027e71-3762-4a4a-9ba2-f0fb13649e4b\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fd027e71-3762-4a4a-9ba2-f0fb13649e4b&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fd027e71-3762-4a4a-9ba2-f0fb13649e4b&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"363e5f7e-1140-40d8-82cb-9afcac4c86e4\",\n                \"num_bikes_available\": 2,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"651f1ba2-2e3c-4f97-8ed9-988327c16db0\",\n                        \"count\": 1\n                    },\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"651f1ba2-2e3c-4f97-8ed9-988327c16db0\",\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=363e5f7e-1140-40d8-82cb-9afcac4c86e4&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=363e5f7e-1140-40d8-82cb-9afcac4c86e4&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"a829723f-4826-45ef-8050-0f2eef29a4ac\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a829723f-4826-45ef-8050-0f2eef29a4ac&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a829723f-4826-45ef-8050-0f2eef29a4ac&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"65ac88d7-4a78-48e0-a9a0-eba4a23d62e7\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"d36ea486-19c4-4ba7-e01a-84fba632220f\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"d36ea486-19c4-4ba7-e01a-84fba632220f\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=65ac88d7-4a78-48e0-a9a0-eba4a23d62e7&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=65ac88d7-4a78-48e0-a9a0-eba4a23d62e7&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"209eefda-65ef-4eb7-e0df-518b22529abe\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=209eefda-65ef-4eb7-e0df-518b22529abe&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=209eefda-65ef-4eb7-e0df-518b22529abe&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"824a1542-4a12-4764-a527-44c54bed68e0\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=824a1542-4a12-4764-a527-44c54bed68e0&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=824a1542-4a12-4764-a527-44c54bed68e0&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"ef03d485-8462-4b84-ee22-9d8f5c5fe317\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"abd7bfa8-b746-4c87-c82e-feec4d9852b2\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"abd7bfa8-b746-4c87-c82e-feec4d9852b2\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ef03d485-8462-4b84-ee22-9d8f5c5fe317&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ef03d485-8462-4b84-ee22-9d8f5c5fe317&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"701a9390-afca-41fc-dc4a-c509da2bbb55\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=701a9390-afca-41fc-dc4a-c509da2bbb55&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=701a9390-afca-41fc-dc4a-c509da2bbb55&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"c1e64523-d511-4c64-c1c5-90737867f793\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c1e64523-d511-4c64-c1c5-90737867f793&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c1e64523-d511-4c64-c1c5-90737867f793&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"87a8a850-b79c-4a6e-c296-83d0b6bcee7d\",\n                \"num_bikes_available\": 2,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"7402e01d-f4f5-46a1-a0ef-03063d3cb4c4\",\n                        \"count\": 1\n                    },\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"7402e01d-f4f5-46a1-a0ef-03063d3cb4c4\",\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=87a8a850-b79c-4a6e-c296-83d0b6bcee7d&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=87a8a850-b79c-4a6e-c296-83d0b6bcee7d&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"111fc0a4-c947-4825-df79-4c238179ca74\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=111fc0a4-c947-4825-df79-4c238179ca74&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=111fc0a4-c947-4825-df79-4c238179ca74&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"17283d12-3d51-47c2-fd1d-16c06d3625f5\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=17283d12-3d51-47c2-fd1d-16c06d3625f5&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=17283d12-3d51-47c2-fd1d-16c06d3625f5&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"ac064fdc-dfac-45cc-e6a2-b5eca5aed9be\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ac064fdc-dfac-45cc-e6a2-b5eca5aed9be&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ac064fdc-dfac-45cc-e6a2-b5eca5aed9be&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"d05285f9-06dc-4d7d-d794-6448cd3df378\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d05285f9-06dc-4d7d-d794-6448cd3df378&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d05285f9-06dc-4d7d-d794-6448cd3df378&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"b2c876e2-c0e4-4fe4-a882-86cb9dc4568d\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b2c876e2-c0e4-4fe4-a882-86cb9dc4568d&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b2c876e2-c0e4-4fe4-a882-86cb9dc4568d&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"1a33f90d-85ee-4889-bed7-fef20626aae0\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"651f1ba2-2e3c-4f97-8ed9-988327c16db0\",\n                        \"count\": 0\n                    }\n                ],\n                \"num_docks_available\": 1,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"651f1ba2-2e3c-4f97-8ed9-988327c16db0\"\n                        ],\n                        \"count\": 1\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1a33f90d-85ee-4889-bed7-fef20626aae0&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1a33f90d-85ee-4889-bed7-fef20626aae0&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"6b62a87a-b03a-4e75-9d6b-5ac7c867d2ee\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6b62a87a-b03a-4e75-9d6b-5ac7c867d2ee&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6b62a87a-b03a-4e75-9d6b-5ac7c867d2ee&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"6848241f-1913-4632-ff16-8125a59600d4\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6848241f-1913-4632-ff16-8125a59600d4&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6848241f-1913-4632-ff16-8125a59600d4&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"d82ed950-0cd3-4a94-8f73-64997ae0ded9\",\n                \"num_bikes_available\": 2,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 2\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d82ed950-0cd3-4a94-8f73-64997ae0ded9&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d82ed950-0cd3-4a94-8f73-64997ae0ded9&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"2845f01a-1dc1-493f-a636-a0cbe23461f7\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2845f01a-1dc1-493f-a636-a0cbe23461f7&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2845f01a-1dc1-493f-a636-a0cbe23461f7&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"ba989f96-40b4-4c75-8218-c9ec8b873032\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ba989f96-40b4-4c75-8218-c9ec8b873032&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ba989f96-40b4-4c75-8218-c9ec8b873032&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"46563bba-02fe-4254-d85d-06d478385a2c\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 0\n                    }\n                ],\n                \"num_docks_available\": 1,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 1\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=46563bba-02fe-4254-d85d-06d478385a2c&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=46563bba-02fe-4254-d85d-06d478385a2c&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"918da1af-355e-4523-ee6f-538e9620638d\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=918da1af-355e-4523-ee6f-538e9620638d&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=918da1af-355e-4523-ee6f-538e9620638d&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"d6ff65e7-7093-437e-8176-4a898fac2322\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d6ff65e7-7093-437e-8176-4a898fac2322&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d6ff65e7-7093-437e-8176-4a898fac2322&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"c33e32bb-ca88-4a4b-99ea-06678a3309f3\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": false,\n                \"is_returning\": false,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c33e32bb-ca88-4a4b-99ea-06678a3309f3&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c33e32bb-ca88-4a4b-99ea-06678a3309f3&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"f68e2806-27a3-42fc-ad41-ee00b59c2cab\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f68e2806-27a3-42fc-ad41-ee00b59c2cab&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f68e2806-27a3-42fc-ad41-ee00b59c2cab&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"6994ee0b-e472-44a3-c010-43f7cbbb95af\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": false,\n                \"is_returning\": false,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6994ee0b-e472-44a3-c010-43f7cbbb95af&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6994ee0b-e472-44a3-c010-43f7cbbb95af&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"ff0ee751-360f-474b-a82c-8e3f53faf1da\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ff0ee751-360f-474b-a82c-8e3f53faf1da&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ff0ee751-360f-474b-a82c-8e3f53faf1da&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"cbe6bf28-ff3a-4731-875f-cddd17b22391\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=cbe6bf28-ff3a-4731-875f-cddd17b22391&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=cbe6bf28-ff3a-4731-875f-cddd17b22391&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"92f2e98d-2d83-47d4-f813-cc17520c25de\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=92f2e98d-2d83-47d4-f813-cc17520c25de&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=92f2e98d-2d83-47d4-f813-cc17520c25de&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"12069524-253b-4302-c81b-65d7b5bdc5d3\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 0\n                    }\n                ],\n                \"num_docks_available\": 1,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 1\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=12069524-253b-4302-c81b-65d7b5bdc5d3&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=12069524-253b-4302-c81b-65d7b5bdc5d3&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"b317fc86-b71e-4f6a-f7f1-0208bc001893\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b317fc86-b71e-4f6a-f7f1-0208bc001893&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b317fc86-b71e-4f6a-f7f1-0208bc001893&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"f3616568-cede-4f0f-8fb6-ffc20dd40591\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f3616568-cede-4f0f-8fb6-ffc20dd40591&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f3616568-cede-4f0f-8fb6-ffc20dd40591&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"6c24920f-3ffc-4b58-81f2-374011749218\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 0\n                    }\n                ],\n                \"num_docks_available\": 1,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 1\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6c24920f-3ffc-4b58-81f2-374011749218&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6c24920f-3ffc-4b58-81f2-374011749218&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"fb0f2044-50c4-4700-da1b-db7a2aba4bc5\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fb0f2044-50c4-4700-da1b-db7a2aba4bc5&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fb0f2044-50c4-4700-da1b-db7a2aba4bc5&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"b62022fe-dbbe-4ca1-cf0e-bfb673641c6c\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b62022fe-dbbe-4ca1-cf0e-bfb673641c6c&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b62022fe-dbbe-4ca1-cf0e-bfb673641c6c&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"990fffb7-307d-4aa9-cb40-76b2492b40eb\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=990fffb7-307d-4aa9-cb40-76b2492b40eb&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=990fffb7-307d-4aa9-cb40-76b2492b40eb&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"6d82c5fe-0d4d-4cae-857d-191f3623e05f\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6d82c5fe-0d4d-4cae-857d-191f3623e05f&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6d82c5fe-0d4d-4cae-857d-191f3623e05f&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"1aeffddf-4896-48e3-9d3f-3e60ae21d152\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": false,\n                \"is_returning\": false,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1aeffddf-4896-48e3-9d3f-3e60ae21d152&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1aeffddf-4896-48e3-9d3f-3e60ae21d152&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"4c95c020-669b-4f08-a133-afff75b0bc0f\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=4c95c020-669b-4f08-a133-afff75b0bc0f&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=4c95c020-669b-4f08-a133-afff75b0bc0f&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"8e3ef169-e049-47fb-eff5-1f251254287e\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8e3ef169-e049-47fb-eff5-1f251254287e&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8e3ef169-e049-47fb-eff5-1f251254287e&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"082c2439-81b0-4e23-e1e6-f502b5b9e670\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=082c2439-81b0-4e23-e1e6-f502b5b9e670&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=082c2439-81b0-4e23-e1e6-f502b5b9e670&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"f17755c7-d7e1-4f86-fd6e-ea3c40da729f\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f17755c7-d7e1-4f86-fd6e-ea3c40da729f&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f17755c7-d7e1-4f86-fd6e-ea3c40da729f&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"a74929ea-b893-4342-ea44-a1d3278e06ff\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": false,\n                \"is_returning\": false,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a74929ea-b893-4342-ea44-a1d3278e06ff&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a74929ea-b893-4342-ea44-a1d3278e06ff&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"71fc1b08-1353-452e-842e-6b124db5caac\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": false,\n                \"is_returning\": false,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=71fc1b08-1353-452e-842e-6b124db5caac&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=71fc1b08-1353-452e-842e-6b124db5caac&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"a20ca4fa-a884-4b5e-9527-f0010d6ccd57\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a20ca4fa-a884-4b5e-9527-f0010d6ccd57&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a20ca4fa-a884-4b5e-9527-f0010d6ccd57&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"b1fe6c61-11a0-4a89-a1b7-f42da9d6eddb\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b1fe6c61-11a0-4a89-a1b7-f42da9d6eddb&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b1fe6c61-11a0-4a89-a1b7-f42da9d6eddb&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"9cd6bb97-029c-4b9c-92b3-213a5ec1b065\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"7402e01d-f4f5-46a1-a0ef-03063d3cb4c4\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"7402e01d-f4f5-46a1-a0ef-03063d3cb4c4\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9cd6bb97-029c-4b9c-92b3-213a5ec1b065&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9cd6bb97-029c-4b9c-92b3-213a5ec1b065&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"0fe969e6-c297-4574-d6e1-23e148e2bb8d\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": false,\n                \"is_returning\": false,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=0fe969e6-c297-4574-d6e1-23e148e2bb8d&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=0fe969e6-c297-4574-d6e1-23e148e2bb8d&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"a7875333-557c-4c51-e78b-ad9de1558c6a\",\n                \"num_bikes_available\": 2,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    },\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a7875333-557c-4c51-e78b-ad9de1558c6a&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a7875333-557c-4c51-e78b-ad9de1558c6a&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"ad67f4c8-21c1-4690-f4a0-bdd4bd4c99bb\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ad67f4c8-21c1-4690-f4a0-bdd4bd4c99bb&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ad67f4c8-21c1-4690-f4a0-bdd4bd4c99bb&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"2272f787-d3f1-4e7d-d2c3-de5ceb47cba2\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2272f787-d3f1-4e7d-d2c3-de5ceb47cba2&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2272f787-d3f1-4e7d-d2c3-de5ceb47cba2&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"372ab003-80f4-46d0-e877-22e9f4cb3839\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=372ab003-80f4-46d0-e877-22e9f4cb3839&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=372ab003-80f4-46d0-e877-22e9f4cb3839&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"2eb95dcc-ca2d-448a-9f3b-fef4610cacd0\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [],\n                \"is_installed\": true,\n                \"is_renting\": false,\n                \"is_returning\": false,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2eb95dcc-ca2d-448a-9f3b-fef4610cacd0&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2eb95dcc-ca2d-448a-9f3b-fef4610cacd0&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"874cdd04-fd7c-47d6-cfec-3fb0a61528a5\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=874cdd04-fd7c-47d6-cfec-3fb0a61528a5&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=874cdd04-fd7c-47d6-cfec-3fb0a61528a5&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"30311784-2ff9-41c8-9231-486e761c29a2\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=30311784-2ff9-41c8-9231-486e761c29a2&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=30311784-2ff9-41c8-9231-486e761c29a2&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"4660103a-5c94-4e68-edaa-842389dbc128\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=4660103a-5c94-4e68-edaa-842389dbc128&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=4660103a-5c94-4e68-edaa-842389dbc128&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"7aa4f730-e6ff-4372-deea-ad92781bf53b\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7aa4f730-e6ff-4372-deea-ad92781bf53b&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7aa4f730-e6ff-4372-deea-ad92781bf53b&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"1e9d5616-814f-43aa-cb64-ef835e5f4b2d\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1e9d5616-814f-43aa-cb64-ef835e5f4b2d&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1e9d5616-814f-43aa-cb64-ef835e5f4b2d&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"b6059105-16cf-42f4-a258-790d1b72c5ec\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b6059105-16cf-42f4-a258-790d1b72c5ec&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b6059105-16cf-42f4-a258-790d1b72c5ec&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"4d9f1dfd-9788-442a-e0f5-11d89361b3b0\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=4d9f1dfd-9788-442a-e0f5-11d89361b3b0&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=4d9f1dfd-9788-442a-e0f5-11d89361b3b0&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"a4cb9de6-bdfb-4627-bdab-ee8bb04fc1ff\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a4cb9de6-bdfb-4627-bdab-ee8bb04fc1ff&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a4cb9de6-bdfb-4627-bdab-ee8bb04fc1ff&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"7494ee67-ca47-4dd4-d8c3-067c9202cd01\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7494ee67-ca47-4dd4-d8c3-067c9202cd01&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7494ee67-ca47-4dd4-d8c3-067c9202cd01&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"e1f995ea-6218-40f0-a1de-b134765443df\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 0\n                    }\n                ],\n                \"num_docks_available\": 1,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 1\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": false,\n                \"is_returning\": false,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e1f995ea-6218-40f0-a1de-b134765443df&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e1f995ea-6218-40f0-a1de-b134765443df&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"81055bc0-f830-4401-b136-7bfac80c569f\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=81055bc0-f830-4401-b136-7bfac80c569f&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=81055bc0-f830-4401-b136-7bfac80c569f&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"839fc2fa-ef7d-471b-a962-bd57697b3fa9\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=839fc2fa-ef7d-471b-a962-bd57697b3fa9&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=839fc2fa-ef7d-471b-a962-bd57697b3fa9&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"0a705e5a-e091-4691-d63a-2f6af077d054\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=0a705e5a-e091-4691-d63a-2f6af077d054&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=0a705e5a-e091-4691-d63a-2f6af077d054&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"193d8061-b236-48ce-c927-a66fe3aba0dc\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=193d8061-b236-48ce-c927-a66fe3aba0dc&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=193d8061-b236-48ce-c927-a66fe3aba0dc&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"6f2d44c6-3cc3-4277-aee6-6c7688530cfe\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6f2d44c6-3cc3-4277-aee6-6c7688530cfe&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6f2d44c6-3cc3-4277-aee6-6c7688530cfe&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"ce94e341-c2c8-4533-88c2-267d85282a18\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"5ced8ca7-ac01-494b-aa91-8e66bad1ed42\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"5ced8ca7-ac01-494b-aa91-8e66bad1ed42\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ce94e341-c2c8-4533-88c2-267d85282a18&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ce94e341-c2c8-4533-88c2-267d85282a18&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"9dc1524e-73a2-4d3a-cb2a-4dcdc06cd5c3\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 0\n                    }\n                ],\n                \"num_docks_available\": 1,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 1\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9dc1524e-73a2-4d3a-cb2a-4dcdc06cd5c3&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9dc1524e-73a2-4d3a-cb2a-4dcdc06cd5c3&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"6b0e189d-058b-441d-9c39-70a006f3b44f\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6b0e189d-058b-441d-9c39-70a006f3b44f&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6b0e189d-058b-441d-9c39-70a006f3b44f&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"6161d3a0-8f19-4ebd-d42f-4110882fd80a\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6161d3a0-8f19-4ebd-d42f-4110882fd80a&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6161d3a0-8f19-4ebd-d42f-4110882fd80a&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"fd52e097-9b55-4da1-9137-d608126f71ed\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fd52e097-9b55-4da1-9137-d608126f71ed&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fd52e097-9b55-4da1-9137-d608126f71ed&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"eddf4283-e6f0-4851-971c-5bc30011671b\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=eddf4283-e6f0-4851-971c-5bc30011671b&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=eddf4283-e6f0-4851-971c-5bc30011671b&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"44fd918f-bb07-406f-d145-dc0ba540f78b\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=44fd918f-bb07-406f-d145-dc0ba540f78b&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=44fd918f-bb07-406f-d145-dc0ba540f78b&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"cc76a389-210f-45b1-8413-21ee40f59ba0\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=cc76a389-210f-45b1-8413-21ee40f59ba0&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=cc76a389-210f-45b1-8413-21ee40f59ba0&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"d9054eaf-170f-4b44-9d9f-c06cea050b4e\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d9054eaf-170f-4b44-9d9f-c06cea050b4e&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d9054eaf-170f-4b44-9d9f-c06cea050b4e&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"8bbc4eb6-c79c-44bd-eaac-c6f5140706ba\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8bbc4eb6-c79c-44bd-eaac-c6f5140706ba&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8bbc4eb6-c79c-44bd-eaac-c6f5140706ba&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"068b7f30-17c4-4784-8212-9a789662d0aa\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=068b7f30-17c4-4784-8212-9a789662d0aa&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=068b7f30-17c4-4784-8212-9a789662d0aa&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"8e62b149-4ba9-41a8-fff0-e5fda0e81ae8\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8e62b149-4ba9-41a8-fff0-e5fda0e81ae8&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8e62b149-4ba9-41a8-fff0-e5fda0e81ae8&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"6d430471-73f6-4457-b312-35009a2dd29f\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6d430471-73f6-4457-b312-35009a2dd29f&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6d430471-73f6-4457-b312-35009a2dd29f&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"55c286c5-38e9-4b90-f76b-991bf32f9b75\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=55c286c5-38e9-4b90-f76b-991bf32f9b75&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=55c286c5-38e9-4b90-f76b-991bf32f9b75&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"ddb3d0d3-587a-498e-ee63-67fdf0e3da62\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ddb3d0d3-587a-498e-ee63-67fdf0e3da62&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ddb3d0d3-587a-498e-ee63-67fdf0e3da62&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"4aa704c9-e4aa-4124-ab90-9517cea32751\",\n                \"num_bikes_available\": 2,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 2\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": false,\n                \"is_returning\": false,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=4aa704c9-e4aa-4124-ab90-9517cea32751&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=4aa704c9-e4aa-4124-ab90-9517cea32751&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"f4841f3e-1eb8-45a1-dcbb-ab428b7d91b9\",\n                \"num_bikes_available\": 3,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"7402e01d-f4f5-46a1-a0ef-03063d3cb4c4\",\n                        \"count\": 1\n                    },\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 2\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"7402e01d-f4f5-46a1-a0ef-03063d3cb4c4\",\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f4841f3e-1eb8-45a1-dcbb-ab428b7d91b9&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f4841f3e-1eb8-45a1-dcbb-ab428b7d91b9&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"aa2626fd-c296-41e5-af2d-33e7135e3126\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=aa2626fd-c296-41e5-af2d-33e7135e3126&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=aa2626fd-c296-41e5-af2d-33e7135e3126&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"f6d9c7b6-f7f4-454e-e83a-45eb014c33e7\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f6d9c7b6-f7f4-454e-e83a-45eb014c33e7&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f6d9c7b6-f7f4-454e-e83a-45eb014c33e7&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"de5b96b3-28c3-42de-803f-3190ff9652df\",\n                \"num_bikes_available\": 2,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"8e4b6626-26b1-48c0-cc51-f83000decb88\",\n                        \"count\": 1\n                    },\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"8e4b6626-26b1-48c0-cc51-f83000decb88\",\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=de5b96b3-28c3-42de-803f-3190ff9652df&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=de5b96b3-28c3-42de-803f-3190ff9652df&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"1ba17c42-3c73-4b8c-be64-d04e518e2441\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1ba17c42-3c73-4b8c-be64-d04e518e2441&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1ba17c42-3c73-4b8c-be64-d04e518e2441&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"1c22ce38-d3a4-482e-9ed9-b1fef6a40f6a\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1c22ce38-d3a4-482e-9ed9-b1fef6a40f6a&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1c22ce38-d3a4-482e-9ed9-b1fef6a40f6a&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"00cac9b4-6279-41fc-c4c9-7cbfce1c8773\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 0\n                    }\n                ],\n                \"num_docks_available\": 1,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 1\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=00cac9b4-6279-41fc-c4c9-7cbfce1c8773&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=00cac9b4-6279-41fc-c4c9-7cbfce1c8773&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"ed9d095d-7a80-45f2-b128-cc0e0281bb1b\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ed9d095d-7a80-45f2-b128-cc0e0281bb1b&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ed9d095d-7a80-45f2-b128-cc0e0281bb1b&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"d78cb52b-ab64-49c3-ac55-2fd9cd443a29\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d78cb52b-ab64-49c3-ac55-2fd9cd443a29&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d78cb52b-ab64-49c3-ac55-2fd9cd443a29&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"604c8db4-7387-46b8-aede-56991a19bd26\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=604c8db4-7387-46b8-aede-56991a19bd26&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=604c8db4-7387-46b8-aede-56991a19bd26&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"c9d9a068-e6b1-42fd-8e0b-afd2a4bcd971\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c9d9a068-e6b1-42fd-8e0b-afd2a4bcd971&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c9d9a068-e6b1-42fd-8e0b-afd2a4bcd971&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"4e5869c6-6803-41ac-b6f1-98fec4f6a64a\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=4e5869c6-6803-41ac-b6f1-98fec4f6a64a&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=4e5869c6-6803-41ac-b6f1-98fec4f6a64a&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"ae2dddc6-7c85-4d4a-8cde-86ddcff6e41d\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ae2dddc6-7c85-4d4a-8cde-86ddcff6e41d&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ae2dddc6-7c85-4d4a-8cde-86ddcff6e41d&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"745ea964-e4ee-48c7-c337-ee88f91ee90a\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=745ea964-e4ee-48c7-c337-ee88f91ee90a&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=745ea964-e4ee-48c7-c337-ee88f91ee90a&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"1f30daa2-c433-42d1-e78f-7704bc3a2f2c\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"73a010ad-0131-4c1f-bf9f-d7d2daac38b0\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"73a010ad-0131-4c1f-bf9f-d7d2daac38b0\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1f30daa2-c433-42d1-e78f-7704bc3a2f2c&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1f30daa2-c433-42d1-e78f-7704bc3a2f2c&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"8599e782-7a4d-4f9b-f513-d9747567dc5e\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8599e782-7a4d-4f9b-f513-d9747567dc5e&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8599e782-7a4d-4f9b-f513-d9747567dc5e&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"a5f4dc4a-e2e4-45f1-e7d5-71c6d31b04cc\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a5f4dc4a-e2e4-45f1-e7d5-71c6d31b04cc&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a5f4dc4a-e2e4-45f1-e7d5-71c6d31b04cc&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"7fda0744-1d84-4818-d079-7c3f899e107d\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": false,\n                \"is_returning\": false,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7fda0744-1d84-4818-d079-7c3f899e107d&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7fda0744-1d84-4818-d079-7c3f899e107d&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"bff53f0d-dc47-4603-c485-7ad063985c45\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=bff53f0d-dc47-4603-c485-7ad063985c45&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=bff53f0d-dc47-4603-c485-7ad063985c45&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"deb3054f-3fa8-4305-ffc2-1df68d2506a6\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 0\n                    }\n                ],\n                \"num_docks_available\": 1,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 1\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=deb3054f-3fa8-4305-ffc2-1df68d2506a6&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=deb3054f-3fa8-4305-ffc2-1df68d2506a6&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"5ba5a1cf-4331-42f1-f0a6-696280e21c4d\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": false,\n                \"is_returning\": false,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=5ba5a1cf-4331-42f1-f0a6-696280e21c4d&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=5ba5a1cf-4331-42f1-f0a6-696280e21c4d&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"b1a662c7-4a95-46c2-f4f8-6ac4f120c861\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": false,\n                \"is_returning\": false,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b1a662c7-4a95-46c2-f4f8-6ac4f120c861&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b1a662c7-4a95-46c2-f4f8-6ac4f120c861&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"fb5091b3-fbf6-49af-cfa6-fcff8bd46366\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fb5091b3-fbf6-49af-cfa6-fcff8bd46366&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fb5091b3-fbf6-49af-cfa6-fcff8bd46366&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"bfe8a5b5-e13e-44a2-a64d-75bdad483c30\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": false,\n                \"is_returning\": false,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=bfe8a5b5-e13e-44a2-a64d-75bdad483c30&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=bfe8a5b5-e13e-44a2-a64d-75bdad483c30&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"a318c884-1cd9-4fa3-917a-e59a61b60e53\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 0\n                    }\n                ],\n                \"num_docks_available\": 1,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 1\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a318c884-1cd9-4fa3-917a-e59a61b60e53&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a318c884-1cd9-4fa3-917a-e59a61b60e53&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"ffdf77f4-0809-4782-faf5-5d48baa8e48c\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ffdf77f4-0809-4782-faf5-5d48baa8e48c&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ffdf77f4-0809-4782-faf5-5d48baa8e48c&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"effe5164-3406-4ba2-80c1-0b4e52210d94\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"716d9b9e-b835-4737-efe4-c18589b80440\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"716d9b9e-b835-4737-efe4-c18589b80440\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=effe5164-3406-4ba2-80c1-0b4e52210d94&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=effe5164-3406-4ba2-80c1-0b4e52210d94&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"9ea4357d-9456-4b77-dd43-9b50b5ae0d76\",\n                \"num_bikes_available\": 2,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 2\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": false,\n                \"is_returning\": false,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9ea4357d-9456-4b77-dd43-9b50b5ae0d76&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9ea4357d-9456-4b77-dd43-9b50b5ae0d76&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"f2f5ae4b-3a02-4e06-944c-4f288161a48f\",\n                \"num_bikes_available\": 2,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 2\n                    }\n                ],\n                \"num_docks_available\": 1,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 1\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f2f5ae4b-3a02-4e06-944c-4f288161a48f&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f2f5ae4b-3a02-4e06-944c-4f288161a48f&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"aec5527f-fbfd-4bfd-9d45-fdbf351d5f22\",\n                \"num_bikes_available\": 2,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 2\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=aec5527f-fbfd-4bfd-9d45-fdbf351d5f22&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=aec5527f-fbfd-4bfd-9d45-fdbf351d5f22&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"d969da96-f089-4503-ffd4-0be95cc7548d\",\n                \"num_bikes_available\": 2,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 2\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d969da96-f089-4503-ffd4-0be95cc7548d&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d969da96-f089-4503-ffd4-0be95cc7548d&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"b08e6c22-ca2c-431d-9144-7fba04eda10f\",\n                \"num_bikes_available\": 2,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    },\n                    {\n                        \"vehicle_type_id\": \"f756ea72-540f-483b-897f-5dc27dc0ba82\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                            \"f756ea72-540f-483b-897f-5dc27dc0ba82\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b08e6c22-ca2c-431d-9144-7fba04eda10f&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b08e6c22-ca2c-431d-9144-7fba04eda10f&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"af37e635-9f2d-4e0f-f0df-ea1fe3d97032\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"ec740063-bf40-493b-dfad-4339b3303c7c\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"ec740063-bf40-493b-dfad-4339b3303c7c\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=af37e635-9f2d-4e0f-f0df-ea1fe3d97032&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=af37e635-9f2d-4e0f-f0df-ea1fe3d97032&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"9b89d6d7-1c11-4352-b9fa-fbec0eb20d3c\",\n                \"num_bikes_available\": 2,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 2\n                    },\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 0\n                    }\n                ],\n                \"num_docks_available\": 1,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 1\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9b89d6d7-1c11-4352-b9fa-fbec0eb20d3c&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9b89d6d7-1c11-4352-b9fa-fbec0eb20d3c&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"f444b034-a4a3-4454-f182-f5b1f73905b8\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f444b034-a4a3-4454-f182-f5b1f73905b8&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f444b034-a4a3-4454-f182-f5b1f73905b8&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"20de1d5f-8f8a-4bc1-d8d1-6635d6c3813f\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=20de1d5f-8f8a-4bc1-d8d1-6635d6c3813f&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=20de1d5f-8f8a-4bc1-d8d1-6635d6c3813f&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"29e843cc-14e9-4f0c-dae0-502f01dd2cdf\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"4ffca237-0c60-4cec-c54e-28b50c56aefe\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"4ffca237-0c60-4cec-c54e-28b50c56aefe\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=29e843cc-14e9-4f0c-dae0-502f01dd2cdf&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=29e843cc-14e9-4f0c-dae0-502f01dd2cdf&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"6ae7f10d-9b1d-411d-9a25-43e2aae9a3b6\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"716d9b9e-b835-4737-efe4-c18589b80440\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"716d9b9e-b835-4737-efe4-c18589b80440\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6ae7f10d-9b1d-411d-9a25-43e2aae9a3b6&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6ae7f10d-9b1d-411d-9a25-43e2aae9a3b6&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"880417db-22a8-4c25-c597-b64ec73dbfcc\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 0\n                    }\n                ],\n                \"num_docks_available\": 1,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 1\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=880417db-22a8-4c25-c597-b64ec73dbfcc&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=880417db-22a8-4c25-c597-b64ec73dbfcc&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"65ca09f2-2f61-4404-c2c6-caffdbba04ed\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=65ca09f2-2f61-4404-c2c6-caffdbba04ed&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=65ca09f2-2f61-4404-c2c6-caffdbba04ed&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"948eb147-fd35-4c4f-9d8b-3a14f9feace8\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=948eb147-fd35-4c4f-9d8b-3a14f9feace8&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=948eb147-fd35-4c4f-9d8b-3a14f9feace8&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"39950ab2-1120-4be8-afb6-7c1c9c216243\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=39950ab2-1120-4be8-afb6-7c1c9c216243&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=39950ab2-1120-4be8-afb6-7c1c9c216243&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"52726ec5-ca69-4766-f886-9f12b1456836\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=52726ec5-ca69-4766-f886-9f12b1456836&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=52726ec5-ca69-4766-f886-9f12b1456836&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"0b6eda7d-7578-403b-a15d-85c7bf4082c2\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=0b6eda7d-7578-403b-a15d-85c7bf4082c2&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=0b6eda7d-7578-403b-a15d-85c7bf4082c2&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"ab33411e-44ca-4b28-a905-1985d7efb42c\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 0\n                    }\n                ],\n                \"num_docks_available\": 1,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 1\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ab33411e-44ca-4b28-a905-1985d7efb42c&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ab33411e-44ca-4b28-a905-1985d7efb42c&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"6bbf59a3-959b-42dc-faf4-0a9c1407b416\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6bbf59a3-959b-42dc-faf4-0a9c1407b416&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6bbf59a3-959b-42dc-faf4-0a9c1407b416&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"83c4b5f4-0716-4ce0-9f88-1351caccaaf0\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=83c4b5f4-0716-4ce0-9f88-1351caccaaf0&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=83c4b5f4-0716-4ce0-9f88-1351caccaaf0&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"04ce7cd2-1218-48cb-d92f-a9eb995c3554\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=04ce7cd2-1218-48cb-d92f-a9eb995c3554&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=04ce7cd2-1218-48cb-d92f-a9eb995c3554&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"c43437ae-e918-46b3-a984-95c5bc58e4fa\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": false,\n                \"is_returning\": false,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c43437ae-e918-46b3-a984-95c5bc58e4fa&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c43437ae-e918-46b3-a984-95c5bc58e4fa&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"26aa531d-76b4-4d55-ff02-8782db1c9975\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": false,\n                \"is_returning\": false,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=26aa531d-76b4-4d55-ff02-8782db1c9975&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=26aa531d-76b4-4d55-ff02-8782db1c9975&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"75c7036e-2bcd-4678-9ea3-b62a152ad3dc\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": false,\n                \"is_returning\": false,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=75c7036e-2bcd-4678-9ea3-b62a152ad3dc&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=75c7036e-2bcd-4678-9ea3-b62a152ad3dc&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"64c3e072-e72a-452e-8567-3012ed5f326b\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": false,\n                \"is_returning\": false,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=64c3e072-e72a-452e-8567-3012ed5f326b&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=64c3e072-e72a-452e-8567-3012ed5f326b&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"3e56f526-f0b7-49a3-a4e7-13c568a12921\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": false,\n                \"is_returning\": false,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3e56f526-f0b7-49a3-a4e7-13c568a12921&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3e56f526-f0b7-49a3-a4e7-13c568a12921&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"619d6305-6e20-4739-e7cb-a5ca1a62fc57\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": false,\n                \"is_returning\": false,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=619d6305-6e20-4739-e7cb-a5ca1a62fc57&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=619d6305-6e20-4739-e7cb-a5ca1a62fc57&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"750634a8-05b6-4346-ae74-2f661184ea3a\",\n                \"num_bikes_available\": 3,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"327901d2-9127-41e1-af81-85c488154d6b\",\n                        \"count\": 2\n                    },\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"327901d2-9127-41e1-af81-85c488154d6b\",\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=750634a8-05b6-4346-ae74-2f661184ea3a&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=750634a8-05b6-4346-ae74-2f661184ea3a&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"9031be03-35af-4655-fb33-41f612652f12\",\n                \"num_bikes_available\": 2,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    },\n                    {\n                        \"vehicle_type_id\": \"d36ea486-19c4-4ba7-e01a-84fba632220f\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\",\n                            \"d36ea486-19c4-4ba7-e01a-84fba632220f\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": false,\n                \"is_returning\": false,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9031be03-35af-4655-fb33-41f612652f12&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9031be03-35af-4655-fb33-41f612652f12&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"93dc08b5-2a83-4a23-a074-bac283181071\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=93dc08b5-2a83-4a23-a074-bac283181071&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=93dc08b5-2a83-4a23-a074-bac283181071&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"8fcf2a57-55d1-45ec-cc2c-89e8c3716351\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8fcf2a57-55d1-45ec-cc2c-89e8c3716351&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8fcf2a57-55d1-45ec-cc2c-89e8c3716351&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"ba7912b1-1c5a-42ee-d6b4-3550ae219c8e\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ba7912b1-1c5a-42ee-d6b4-3550ae219c8e&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ba7912b1-1c5a-42ee-d6b4-3550ae219c8e&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"98ee3d9d-be52-475d-dbac-b2ca7b303d52\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=98ee3d9d-be52-475d-dbac-b2ca7b303d52&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=98ee3d9d-be52-475d-dbac-b2ca7b303d52&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"1d6d4b3b-aea9-4f2a-e538-ea13154db072\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"d36ea486-19c4-4ba7-e01a-84fba632220f\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"d36ea486-19c4-4ba7-e01a-84fba632220f\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1d6d4b3b-aea9-4f2a-e538-ea13154db072&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1d6d4b3b-aea9-4f2a-e538-ea13154db072&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"2ae7b09c-4c17-43bd-febb-325424adbb79\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2ae7b09c-4c17-43bd-febb-325424adbb79&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2ae7b09c-4c17-43bd-febb-325424adbb79&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"eef3291f-8352-4f0d-935b-5227555bfdb3\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=eef3291f-8352-4f0d-935b-5227555bfdb3&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=eef3291f-8352-4f0d-935b-5227555bfdb3&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"176e9171-0123-43dd-f12a-10ecf4199117\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=176e9171-0123-43dd-f12a-10ecf4199117&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=176e9171-0123-43dd-f12a-10ecf4199117&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"7cdecff7-3e84-4ede-9633-49085b2f17dc\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7cdecff7-3e84-4ede-9633-49085b2f17dc&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7cdecff7-3e84-4ede-9633-49085b2f17dc&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"7bf3abbe-856b-4f5b-887a-c89cf4b952f1\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7bf3abbe-856b-4f5b-887a-c89cf4b952f1&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7bf3abbe-856b-4f5b-887a-c89cf4b952f1&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"50d551aa-cdcc-4e39-d00a-ee0fb114c9bb\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=50d551aa-cdcc-4e39-d00a-ee0fb114c9bb&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=50d551aa-cdcc-4e39-d00a-ee0fb114c9bb&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"230eed99-7554-40ef-a527-154880253d2d\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=230eed99-7554-40ef-a527-154880253d2d&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=230eed99-7554-40ef-a527-154880253d2d&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"96767b8b-4d8a-4aae-f438-216ba2ce3049\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=96767b8b-4d8a-4aae-f438-216ba2ce3049&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=96767b8b-4d8a-4aae-f438-216ba2ce3049&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"b3572ed9-8f9c-445e-97cb-86d2ed4f224b\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b3572ed9-8f9c-445e-97cb-86d2ed4f224b&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b3572ed9-8f9c-445e-97cb-86d2ed4f224b&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"24d1df6f-86ff-438b-f599-73d49665322c\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"34cb33d7-9dc0-4c06-a914-aae04441661d\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"34cb33d7-9dc0-4c06-a914-aae04441661d\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=24d1df6f-86ff-438b-f599-73d49665322c&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=24d1df6f-86ff-438b-f599-73d49665322c&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"173fdaa0-b6d8-44c5-e36e-b69391550d44\",\n                \"num_bikes_available\": 2,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 2\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=173fdaa0-b6d8-44c5-e36e-b69391550d44&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=173fdaa0-b6d8-44c5-e36e-b69391550d44&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"a1b83f0e-596d-4498-fa3e-179e456c77ab\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a1b83f0e-596d-4498-fa3e-179e456c77ab&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a1b83f0e-596d-4498-fa3e-179e456c77ab&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"52b794aa-310b-463d-e2db-61a7a8b994a6\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 0\n                    }\n                ],\n                \"num_docks_available\": 1,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 1\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=52b794aa-310b-463d-e2db-61a7a8b994a6&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=52b794aa-310b-463d-e2db-61a7a8b994a6&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"e9b0440a-3cd6-418a-aa84-b5f79777ff17\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e9b0440a-3cd6-418a-aa84-b5f79777ff17&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e9b0440a-3cd6-418a-aa84-b5f79777ff17&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"50101d06-8269-4f63-b3e3-697aa0d41b11\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=50101d06-8269-4f63-b3e3-697aa0d41b11&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=50101d06-8269-4f63-b3e3-697aa0d41b11&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"aeb8783e-2309-4116-a817-07bd7a069ebd\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=aeb8783e-2309-4116-a817-07bd7a069ebd&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=aeb8783e-2309-4116-a817-07bd7a069ebd&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"6a246b98-d42b-45a7-ef0f-d17189ea41df\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6a246b98-d42b-45a7-ef0f-d17189ea41df&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6a246b98-d42b-45a7-ef0f-d17189ea41df&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"7f3eeed2-db65-4269-990e-2830630012ab\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7f3eeed2-db65-4269-990e-2830630012ab&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7f3eeed2-db65-4269-990e-2830630012ab&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"3a255092-9203-43a9-8bd1-3a5a99b66219\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3a255092-9203-43a9-8bd1-3a5a99b66219&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3a255092-9203-43a9-8bd1-3a5a99b66219&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"d4477a46-56ff-462c-e144-aff6a3c0c1a8\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d4477a46-56ff-462c-e144-aff6a3c0c1a8&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d4477a46-56ff-462c-e144-aff6a3c0c1a8&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"e877c186-79f3-448c-c968-20b4bcf0d515\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e877c186-79f3-448c-c968-20b4bcf0d515&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e877c186-79f3-448c-c968-20b4bcf0d515&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"c9c38b7c-1b66-41db-d03c-5b5b549509bc\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c9c38b7c-1b66-41db-d03c-5b5b549509bc&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c9c38b7c-1b66-41db-d03c-5b5b549509bc&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"bf5badc8-1c9c-4a47-9590-94d629d0c0f7\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=bf5badc8-1c9c-4a47-9590-94d629d0c0f7&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=bf5badc8-1c9c-4a47-9590-94d629d0c0f7&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"33f27d6a-e5f6-4f24-c23d-5c728f9d3a91\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"fc2da109-7aab-4d28-8b9d-153bc7c535ff\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"fc2da109-7aab-4d28-8b9d-153bc7c535ff\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=33f27d6a-e5f6-4f24-c23d-5c728f9d3a91&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=33f27d6a-e5f6-4f24-c23d-5c728f9d3a91&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"c6ea0cae-7f3f-4e2b-98a2-1fb6800d2f94\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c6ea0cae-7f3f-4e2b-98a2-1fb6800d2f94&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c6ea0cae-7f3f-4e2b-98a2-1fb6800d2f94&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"bf0f68cf-30c9-4438-f6b4-af37d45bfcc3\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"40198dbc-125e-4254-80ce-c93feceb3813\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"40198dbc-125e-4254-80ce-c93feceb3813\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=bf0f68cf-30c9-4438-f6b4-af37d45bfcc3&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=bf0f68cf-30c9-4438-f6b4-af37d45bfcc3&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"3d9e891d-1d03-445d-a29a-cdef04ef23b0\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3d9e891d-1d03-445d-a29a-cdef04ef23b0&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3d9e891d-1d03-445d-a29a-cdef04ef23b0&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"7e7f7cab-769a-4ed2-e2ec-6f7226d10eb9\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"dbbff2b0-4ddd-4aef-eb71-b00c01d4763f\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"dbbff2b0-4ddd-4aef-eb71-b00c01d4763f\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7e7f7cab-769a-4ed2-e2ec-6f7226d10eb9&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7e7f7cab-769a-4ed2-e2ec-6f7226d10eb9&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"6134aa36-7579-45a0-aacd-0e3a2ce2452e\",\n                \"num_bikes_available\": 2,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 2\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6134aa36-7579-45a0-aacd-0e3a2ce2452e&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6134aa36-7579-45a0-aacd-0e3a2ce2452e&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"86bc7e19-60af-4135-d678-d2ca3c323758\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=86bc7e19-60af-4135-d678-d2ca3c323758&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=86bc7e19-60af-4135-d678-d2ca3c323758&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"bcfa8777-c9be-4272-879d-a3e2e369a860\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 0\n                    },\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 0\n                    }\n                ],\n                \"num_docks_available\": 2,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 2\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=bcfa8777-c9be-4272-879d-a3e2e369a860&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=bcfa8777-c9be-4272-879d-a3e2e369a860&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"7e19c5ce-bced-44e5-e764-9b1dcbb001b4\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7e19c5ce-bced-44e5-e764-9b1dcbb001b4&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7e19c5ce-bced-44e5-e764-9b1dcbb001b4&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"094bec9a-a77d-4287-b504-8ff49b52db93\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=094bec9a-a77d-4287-b504-8ff49b52db93&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=094bec9a-a77d-4287-b504-8ff49b52db93&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"ad9e6b1e-9fea-4f9a-dd80-626d84edbecd\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ad9e6b1e-9fea-4f9a-dd80-626d84edbecd&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ad9e6b1e-9fea-4f9a-dd80-626d84edbecd&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"642c5af6-c960-4f50-e01e-984716510805\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=642c5af6-c960-4f50-e01e-984716510805&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=642c5af6-c960-4f50-e01e-984716510805&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"cac96d24-e373-47e8-d9d3-4b02eff04e0c\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=cac96d24-e373-47e8-d9d3-4b02eff04e0c&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=cac96d24-e373-47e8-d9d3-4b02eff04e0c&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"e3b561bb-182d-495a-ca6a-b866a9bd782a\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e3b561bb-182d-495a-ca6a-b866a9bd782a&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e3b561bb-182d-495a-ca6a-b866a9bd782a&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"71904c80-8902-41f8-f261-3f939b9c2d14\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [],\n                \"is_installed\": true,\n                \"is_renting\": false,\n                \"is_returning\": false,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=71904c80-8902-41f8-f261-3f939b9c2d14&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=71904c80-8902-41f8-f261-3f939b9c2d14&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"101a104e-4421-448e-d810-12ef6bb55266\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=101a104e-4421-448e-d810-12ef6bb55266&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=101a104e-4421-448e-d810-12ef6bb55266&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"1b7b81c7-757a-4a43-a684-2a3f17fa3b07\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"d36ea486-19c4-4ba7-e01a-84fba632220f\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"d36ea486-19c4-4ba7-e01a-84fba632220f\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1b7b81c7-757a-4a43-a684-2a3f17fa3b07&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1b7b81c7-757a-4a43-a684-2a3f17fa3b07&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"affe1fcd-5867-40ef-c2ae-c17914e128d4\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"73a010ad-0131-4c1f-bf9f-d7d2daac38b0\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"73a010ad-0131-4c1f-bf9f-d7d2daac38b0\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": false,\n                \"is_returning\": false,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=affe1fcd-5867-40ef-c2ae-c17914e128d4&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=affe1fcd-5867-40ef-c2ae-c17914e128d4&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"3e8f02aa-bc6a-4210-f4f8-1bbba4ec5f70\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 0\n                    }\n                ],\n                \"num_docks_available\": 1,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 1\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3e8f02aa-bc6a-4210-f4f8-1bbba4ec5f70&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3e8f02aa-bc6a-4210-f4f8-1bbba4ec5f70&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"6c4f89b7-b3d8-4be5-cb33-cc10d2d5cb86\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6c4f89b7-b3d8-4be5-cb33-cc10d2d5cb86&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6c4f89b7-b3d8-4be5-cb33-cc10d2d5cb86&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"c93fc4b5-b918-40f3-8611-f59aed3b98ed\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c93fc4b5-b918-40f3-8611-f59aed3b98ed&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c93fc4b5-b918-40f3-8611-f59aed3b98ed&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"a841fc38-deca-4f25-dde8-90d36ec51d86\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a841fc38-deca-4f25-dde8-90d36ec51d86&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a841fc38-deca-4f25-dde8-90d36ec51d86&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"fba838c6-eb5d-4237-a1b4-45c0f3d1162a\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 0\n                    }\n                ],\n                \"num_docks_available\": 1,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 1\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fba838c6-eb5d-4237-a1b4-45c0f3d1162a&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fba838c6-eb5d-4237-a1b4-45c0f3d1162a&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"cd478108-5ed6-4168-e420-b850faca3ba2\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"c3664999-818b-4758-d5a9-027a73f98367\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": false,\n                \"is_returning\": false,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=cd478108-5ed6-4168-e420-b850faca3ba2&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=cd478108-5ed6-4168-e420-b850faca3ba2&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"2dc2905c-b7d9-4fa2-d186-f7bc82c35a9b\",\n                \"num_bikes_available\": 0,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 0\n                    }\n                ],\n                \"num_docks_available\": 1,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 1\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2dc2905c-b7d9-4fa2-d186-f7bc82c35a9b&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2dc2905c-b7d9-4fa2-d186-f7bc82c35a9b&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"station_id\": \"7444f41a-071a-453b-84c5-51458b4eaf47\",\n                \"num_bikes_available\": 1,\n                \"vehicle_types_available\": [\n                    {\n                        \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                        \"count\": 1\n                    }\n                ],\n                \"num_docks_available\": 0,\n                \"vehicle_docks_available\": [\n                    {\n                        \"vehicle_type_ids\": [\n                            \"98aac148-47b8-47df-a6e0-804a4da5f27e\"\n                        ],\n                        \"count\": 0\n                    }\n                ],\n                \"is_installed\": true,\n                \"is_renting\": true,\n                \"is_returning\": true,\n                \"last_reported\": 1732885838,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7444f41a-071a-453b-84c5-51458b4eaf47&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7444f41a-071a-453b-84c5-51458b4eaf47&start=1732885200&end=1732887000\"\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"a0a2d298-ddc0-4c61-a438-9c13550ecc8a"},{"name":"free bike status","id":"3d36950c-21be-4f55-8f98-c63b56f02ed5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.carvelo.ch/v2/gbfs/free_bike_status.json","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{Auth Key}}"},{"key":"password","value":"{{Auth Pwd}}"}]},"isInherited":true,"source":{"_postman_id":"b826b5ce-c9b3-4eeb-9338-b7699f0b4880","id":"b826b5ce-c9b3-4eeb-9338-b7699f0b4880","name":"GBFS","type":"folder"}},"urlObject":{"path":["v2","gbfs","free_bike_status.json"],"host":["https://api.carvelo.ch"],"query":[],"variable":[]}},"response":[{"id":"3784f8b5-a510-4ac7-ab0d-e66c3123ccc6","name":"free_bike_status.json","originalRequest":{"method":"GET","header":[],"url":"https://api.carvelo.ch/v2/gbfs/free_bike_status.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 29 Nov 2024 13:11:41 GMT"},{"key":"Server","value":"Apache"},{"key":"X-Rate-Limit-Limit","value":"100"},{"key":"X-Rate-Limit-Remaining","value":"99"},{"key":"X-Rate-Limit-Reset","value":"6"},{"key":"Access-Control-Expose-Headers","value":"X-Pagination-Per-Page, X-Pagination-Total-Count, X-Pagination-Current-Page, X-Pagination-Page-Count"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"https://www.carvelo.ch"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, X-Requested-With"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"last_updated\": 1732885902,\n    \"ttl\": 60,\n    \"version\": \"2.3\",\n    \"data\": {\n        \"bikes\": [\n            {\n                \"bike_id\": \"cc243ad3-956a-4617-8757-0ab76f09a2d1\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.567725348676,\n                \"lon\": 7.5768770329205,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"0e74f40b-3d2d-4a4f-95ab-be60103bd532\",\n                \"current_range_meters\": 0,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=cc243ad3-956a-4617-8757-0ab76f09a2d1&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=cc243ad3-956a-4617-8757-0ab76f09a2d1&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"04690e4a-10d9-4ef4-b4a0-cc5468d16d16\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.096734575195,\n                \"lon\": 7.0686263078996,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"1a9891f2-6fe8-49b9-b445-f51aadfbbcb6\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=04690e4a-10d9-4ef4-b4a0-cc5468d16d16&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=04690e4a-10d9-4ef4-b4a0-cc5468d16d16&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"6d116d44-3716-4518-b74e-5b800b747f0f\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.956570082106,\n                \"lon\": 7.4826129144466,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"327901d2-9127-41e1-af81-85c488154d6b\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6d116d44-3716-4518-b74e-5b800b747f0f&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6d116d44-3716-4518-b74e-5b800b747f0f&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"aaed834c-fec3-485a-ae4f-7a8ae0f42295\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.956570082106,\n                \"lon\": 7.4826129144466,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"327901d2-9127-41e1-af81-85c488154d6b\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=aaed834c-fec3-485a-ae4f-7a8ae0f42295&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=aaed834c-fec3-485a-ae4f-7a8ae0f42295&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"5cfb7e62-ea56-4deb-baf2-2ff078d95539\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.418561815249,\n                \"lon\": 8.3983149133743,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"34cb33d7-9dc0-4c06-a914-aae04441661d\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=5cfb7e62-ea56-4deb-baf2-2ff078d95539&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=5cfb7e62-ea56-4deb-baf2-2ff078d95539&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"2434ebec-20b5-4d4e-c413-c8729f6624ee\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.424674,\n                \"lon\": 9.372437,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"34cb33d7-9dc0-4c06-a914-aae04441661d\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2434ebec-20b5-4d4e-c413-c8729f6624ee&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2434ebec-20b5-4d4e-c413-c8729f6624ee&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"289864c3-7b98-47a4-887e-60833e83719b\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.947713495956,\n                \"lon\": 7.4364419122817,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"40198dbc-125e-4254-80ce-c93feceb3813\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=289864c3-7b98-47a4-887e-60833e83719b&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=289864c3-7b98-47a4-887e-60833e83719b&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"24a92c22-d89d-4e04-d47e-d09a284da02c\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.505446878176,\n                \"lon\": 8.6886368240638,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"4ffca237-0c60-4cec-c54e-28b50c56aefe\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=24a92c22-d89d-4e04-d47e-d09a284da02c&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=24a92c22-d89d-4e04-d47e-d09a284da02c&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"3f625cd5-9e1b-4eaa-bac0-6cdc02f47f56\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.946910458432,\n                \"lon\": 7.4566270643125,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"5ced8ca7-ac01-494b-aa91-8e66bad1ed42\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3f625cd5-9e1b-4eaa-bac0-6cdc02f47f56&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3f625cd5-9e1b-4eaa-bac0-6cdc02f47f56&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"c2229d07-9e4f-4d3a-a4be-e7621518fea2\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.385250737493,\n                \"lon\": 8.5187188797619,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"651f1ba2-2e3c-4f97-8ed9-988327c16db0\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c2229d07-9e4f-4d3a-a4be-e7621518fea2&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c2229d07-9e4f-4d3a-a4be-e7621518fea2&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"ef2977e6-c9b6-4ced-fa11-41002df82c7f\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.944507868839,\n                \"lon\": 7.4235994766832,\n                \"is_reserved\": true,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"651f1ba2-2e3c-4f97-8ed9-988327c16db0\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ef2977e6-c9b6-4ced-fa11-41002df82c7f&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ef2977e6-c9b6-4ced-fa11-41002df82c7f&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"7aea7c37-2116-4bfb-e5d5-e383a7a490a5\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.698021546079,\n                \"lon\": 8.6368822472406,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"651f1ba2-2e3c-4f97-8ed9-988327c16db0\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7aea7c37-2116-4bfb-e5d5-e383a7a490a5&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7aea7c37-2116-4bfb-e5d5-e383a7a490a5&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"42ac4d1e-ad1f-41f0-d9d2-463a0f598002\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.21874996246,\n                \"lon\": 6.1022386203146,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"716d9b9e-b835-4737-efe4-c18589b80440\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=42ac4d1e-ad1f-41f0-d9d2-463a0f598002&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=42ac4d1e-ad1f-41f0-d9d2-463a0f598002&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"233854ef-3439-4180-9e7e-5db693b05939\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.0488505,\n                \"lon\": 8.3003656,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"716d9b9e-b835-4737-efe4-c18589b80440\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=233854ef-3439-4180-9e7e-5db693b05939&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=233854ef-3439-4180-9e7e-5db693b05939&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"e8c1e013-5cfe-43c3-d7eb-9d24bcf48d86\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.179994394426,\n                \"lon\": 6.0799919973522,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"716d9b9e-b835-4737-efe4-c18589b80440\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e8c1e013-5cfe-43c3-d7eb-9d24bcf48d86&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e8c1e013-5cfe-43c3-d7eb-9d24bcf48d86&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"6f36ea5a-1a6c-44dd-a1ad-e824cdd0e5d2\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.959264,\n                \"lon\": 7.446948,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"73a010ad-0131-4c1f-bf9f-d7d2daac38b0\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6f36ea5a-1a6c-44dd-a1ad-e824cdd0e5d2&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6f36ea5a-1a6c-44dd-a1ad-e824cdd0e5d2&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"e8fb32a1-9c32-48cf-e544-3769f97f9778\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.524247654285,\n                \"lon\": 6.6374783210478,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"7402e01d-f4f5-46a1-a0ef-03063d3cb4c4\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e8fb32a1-9c32-48cf-e544-3769f97f9778&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e8fb32a1-9c32-48cf-e544-3769f97f9778&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"a115146c-e895-4be9-a60a-6f550dceb6fe\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.518474,\n                \"lon\": 6.630067,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"7402e01d-f4f5-46a1-a0ef-03063d3cb4c4\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a115146c-e895-4be9-a60a-6f550dceb6fe&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a115146c-e895-4be9-a60a-6f550dceb6fe&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"80d5bd9b-58ee-49b9-f4a5-1d12c63dcc0f\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.963149,\n                \"lon\": 7.431884,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"7402e01d-f4f5-46a1-a0ef-03063d3cb4c4\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=80d5bd9b-58ee-49b9-f4a5-1d12c63dcc0f&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=80d5bd9b-58ee-49b9-f4a5-1d12c63dcc0f&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"49f139eb-35dd-46c1-9201-a83ab7c1ac9e\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.192691,\n                \"lon\": 7.396655,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"8e2dbacd-485e-485b-cc85-6dd08bd1ac59\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=49f139eb-35dd-46c1-9201-a83ab7c1ac9e&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=49f139eb-35dd-46c1-9201-a83ab7c1ac9e&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"319d1ea2-f4c3-43c0-e273-09674a7ead40\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.39330128695,\n                \"lon\": 8.5284335241812,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"8e2dbacd-485e-485b-cc85-6dd08bd1ac59\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=319d1ea2-f4c3-43c0-e273-09674a7ead40&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=319d1ea2-f4c3-43c0-e273-09674a7ead40&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"73e18a3d-21b7-4741-9d1d-f82801c8e828\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.522132956441,\n                \"lon\": 6.6263395066455,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"8e4b6626-26b1-48c0-cc51-f83000decb88\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=73e18a3d-21b7-4741-9d1d-f82801c8e828&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=73e18a3d-21b7-4741-9d1d-f82801c8e828&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"c600433b-2714-4d8f-f257-25eedd02ec22\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.569731,\n                \"lon\": 7.633337,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c600433b-2714-4d8f-f257-25eedd02ec22&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c600433b-2714-4d8f-f257-25eedd02ec22&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"9db0ed4f-8e95-4cd0-d9c7-409824094d80\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.427669002718,\n                \"lon\": 8.5464403509258,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9db0ed4f-8e95-4cd0-d9c7-409824094d80&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9db0ed4f-8e95-4cd0-d9c7-409824094d80&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"38c17833-5057-4b76-9a6c-5f37ed149a10\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.466936,\n                \"lon\": 8.324535,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=38c17833-5057-4b76-9a6c-5f37ed149a10&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=38c17833-5057-4b76-9a6c-5f37ed149a10&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"3cc218cd-33c0-492e-cd19-199d35df55cb\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.172474,\n                \"lon\": 8.514878,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3cc218cd-33c0-492e-cd19-199d35df55cb&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3cc218cd-33c0-492e-cd19-199d35df55cb&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"59d06774-2bde-4f05-961c-c7897d0cfbaf\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.338875,\n                \"lon\": 8.519383,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=59d06774-2bde-4f05-961c-c7897d0cfbaf&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=59d06774-2bde-4f05-961c-c7897d0cfbaf&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"06f8962d-3692-42a8-b31d-864bc275b12b\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.379788426771,\n                \"lon\": 8.5144126189438,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=06f8962d-3692-42a8-b31d-864bc275b12b&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=06f8962d-3692-42a8-b31d-864bc275b12b&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"a9fb1c19-712f-4aa1-902a-aea5655dc46e\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.370138,\n                \"lon\": 8.510515,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a9fb1c19-712f-4aa1-902a-aea5655dc46e&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a9fb1c19-712f-4aa1-902a-aea5655dc46e&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"055997f7-3e4b-45d4-e2b7-90c5f5f2ec17\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.92642,\n                \"lon\": 7.433654,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=055997f7-3e4b-45d4-e2b7-90c5f5f2ec17&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=055997f7-3e4b-45d4-e2b7-90c5f5f2ec17&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"0540c855-88d2-4ea8-e71a-b5cf1e67d5c2\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.212486833519,\n                \"lon\": 7.6191790104153,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=0540c855-88d2-4ea8-e71a-b5cf1e67d5c2&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=0540c855-88d2-4ea8-e71a-b5cf1e67d5c2&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"e49ab2ab-8426-43f3-9e78-3009e57091ae\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.67935,\n                \"lon\": 7.85032,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e49ab2ab-8426-43f3-9e78-3009e57091ae&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e49ab2ab-8426-43f3-9e78-3009e57091ae&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"0f428eb2-8414-4c2f-eb3b-4c07154d2d27\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.367214804609,\n                \"lon\": 8.5036775256874,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=0f428eb2-8414-4c2f-eb3b-4c07154d2d27&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=0f428eb2-8414-4c2f-eb3b-4c07154d2d27&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"e0cde699-2b6e-4ab5-a7a8-722e2f69c26f\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.25336,\n                \"lon\": 8.69229,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e0cde699-2b6e-4ab5-a7a8-722e2f69c26f&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e0cde699-2b6e-4ab5-a7a8-722e2f69c26f&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"c79b8b61-b598-4fb7-bcf9-ee388c062d41\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.394719028332,\n                \"lon\": 8.5362788256651,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c79b8b61-b598-4fb7-bcf9-ee388c062d41&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c79b8b61-b598-4fb7-bcf9-ee388c062d41&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"c04b9958-4b8d-4c12-871f-26ca0c2d0cb4\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.375833674698,\n                \"lon\": 8.5174548749834,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c04b9958-4b8d-4c12-871f-26ca0c2d0cb4&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c04b9958-4b8d-4c12-871f-26ca0c2d0cb4&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"fa7e6db4-4a4e-4c67-b751-45bd399055f8\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.368908,\n                \"lon\": 8.537668,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fa7e6db4-4a4e-4c67-b751-45bd399055f8&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fa7e6db4-4a4e-4c67-b751-45bd399055f8&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"aa3aa224-ac1a-470b-f14c-680ea9211d60\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.472654,\n                \"lon\": 8.308002,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=aa3aa224-ac1a-470b-f14c-680ea9211d60&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=aa3aa224-ac1a-470b-f14c-680ea9211d60&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"56ca58d2-640b-4abd-9e6f-cbc3e00ccfee\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.794922,\n                \"lon\": 7.15685,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=56ca58d2-640b-4abd-9e6f-cbc3e00ccfee&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=56ca58d2-640b-4abd-9e6f-cbc3e00ccfee&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"eaa7be48-8f89-4e0e-8356-16ef820f45d5\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.333312631272,\n                \"lon\": 8.5348516840541,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=eaa7be48-8f89-4e0e-8356-16ef820f45d5&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=eaa7be48-8f89-4e0e-8356-16ef820f45d5&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"d8766def-79e7-41ba-dcc0-2657694a443b\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.005985054362,\n                \"lon\": 8.9673756187103,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d8766def-79e7-41ba-dcc0-2657694a443b&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d8766def-79e7-41ba-dcc0-2657694a443b&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"0a36ba82-eeda-4f03-f5b2-1987f7164d31\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.45347,\n                \"lon\": 8.57922,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=0a36ba82-eeda-4f03-f5b2-1987f7164d31&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=0a36ba82-eeda-4f03-f5b2-1987f7164d31&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"1374955c-e98f-4aed-ac8a-78579adf8c1f\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.387891,\n                \"lon\": 8.545596,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1374955c-e98f-4aed-ac8a-78579adf8c1f&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1374955c-e98f-4aed-ac8a-78579adf8c1f&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"c27da2ec-ff9b-4bb3-bede-319d72454bbe\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.378123942359,\n                \"lon\": 8.5328332833848,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c27da2ec-ff9b-4bb3-bede-319d72454bbe&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c27da2ec-ff9b-4bb3-bede-319d72454bbe&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"fb0aa516-c231-47d5-f0b9-079420891bd5\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.469854072619,\n                \"lon\": 7.5967321159729,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fb0aa516-c231-47d5-f0b9-079420891bd5&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fb0aa516-c231-47d5-f0b9-079420891bd5&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"289693d7-dbe0-43a5-a0f8-2f6130aa6a65\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.515594593217,\n                \"lon\": 9.4361124682183,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=289693d7-dbe0-43a5-a0f8-2f6130aa6a65&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=289693d7-dbe0-43a5-a0f8-2f6130aa6a65&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"e1f61396-b95e-4e85-81c4-34314a023bb0\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.272253234312,\n                \"lon\": 6.1246192900218,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e1f61396-b95e-4e85-81c4-34314a023bb0&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e1f61396-b95e-4e85-81c4-34314a023bb0&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"d7bfc0cf-b066-439e-a8e8-5721a0406b1e\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.418663,\n                \"lon\": 8.561407,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d7bfc0cf-b066-439e-a8e8-5721a0406b1e&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d7bfc0cf-b066-439e-a8e8-5721a0406b1e&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"2ea73011-fdae-4e3c-f0f8-18c23179dd0c\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.518474,\n                \"lon\": 6.630067,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2ea73011-fdae-4e3c-f0f8-18c23179dd0c&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2ea73011-fdae-4e3c-f0f8-18c23179dd0c&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"dd98f430-7dab-4421-a39e-d25db3c7fbf6\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.336823545576,\n                \"lon\": 8.5182126588957,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=dd98f430-7dab-4421-a39e-d25db3c7fbf6&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=dd98f430-7dab-4421-a39e-d25db3c7fbf6&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"6fdfb08b-46b4-47a1-89ac-669d7c7949f5\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.379788426771,\n                \"lon\": 8.5144126189438,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6fdfb08b-46b4-47a1-89ac-669d7c7949f5&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6fdfb08b-46b4-47a1-89ac-669d7c7949f5&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"7037731e-5dcc-49b3-dccc-9173e5183e76\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.525982,\n                \"lon\": 6.60313,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7037731e-5dcc-49b3-dccc-9173e5183e76&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7037731e-5dcc-49b3-dccc-9173e5183e76&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"67b1ce55-f52d-40af-dbd1-07307b8af17b\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.556743503127,\n                \"lon\": 6.6349657169924,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=67b1ce55-f52d-40af-dbd1-07307b8af17b&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=67b1ce55-f52d-40af-dbd1-07307b8af17b&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"e9130647-1ad9-4fd6-922b-bf56cf0fa257\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.167722718687,\n                \"lon\": 8.5153973683533,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e9130647-1ad9-4fd6-922b-bf56cf0fa257&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e9130647-1ad9-4fd6-922b-bf56cf0fa257&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"37ed689b-8c2c-4ba4-e748-5a3936de2379\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.958860140981,\n                \"lon\": 7.4572866564322,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=37ed689b-8c2c-4ba4-e748-5a3936de2379&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=37ed689b-8c2c-4ba4-e748-5a3936de2379&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"12610f7f-0c4e-4439-8d8e-564957cb7ab1\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.37541,\n                \"lon\": 8.543648,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=12610f7f-0c4e-4439-8d8e-564957cb7ab1&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=12610f7f-0c4e-4439-8d8e-564957cb7ab1&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"a4eff069-4f57-4570-e7a3-a2185763211c\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.449471462845,\n                \"lon\": 8.2932577038056,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a4eff069-4f57-4570-e7a3-a2185763211c&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a4eff069-4f57-4570-e7a3-a2185763211c&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"9699a2eb-8f15-49f2-b815-a65c2eb39e5a\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.033654,\n                \"lon\": 8.278094,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9699a2eb-8f15-49f2-b815-a65c2eb39e5a&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9699a2eb-8f15-49f2-b815-a65c2eb39e5a&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"11d9b4e1-ed24-4aff-d7a4-738a6d6b9006\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.056894,\n                \"lon\": 8.311329,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=11d9b4e1-ed24-4aff-d7a4-738a6d6b9006&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=11d9b4e1-ed24-4aff-d7a4-738a6d6b9006&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"b71c8b60-84a2-4b1a-938a-b75e74618fbb\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.393338,\n                \"lon\": 8.529448,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b71c8b60-84a2-4b1a-938a-b75e74618fbb&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b71c8b60-84a2-4b1a-938a-b75e74618fbb&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"e19e42d3-46d0-4c49-ae07-678ae17b0c0d\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.369218,\n                \"lon\": 8.551188,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e19e42d3-46d0-4c49-ae07-678ae17b0c0d&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e19e42d3-46d0-4c49-ae07-678ae17b0c0d&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"adbe3102-106b-4cf3-a8e2-f73797d74245\",\n                \"last_reported\": 1732885902,\n                \"lat\": 45.87009,\n                \"lon\": 8.988609,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=adbe3102-106b-4cf3-a8e2-f73797d74245&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=adbe3102-106b-4cf3-a8e2-f73797d74245&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"530d25d3-4bbc-44c7-b1c0-70adbe91a6da\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.458348,\n                \"lon\": 6.858134,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=530d25d3-4bbc-44c7-b1c0-70adbe91a6da&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=530d25d3-4bbc-44c7-b1c0-70adbe91a6da&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"a1525efc-991c-4c19-9314-a4f220ad4790\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.08280343325,\n                \"lon\": 8.3119796338474,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a1525efc-991c-4c19-9314-a4f220ad4790&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a1525efc-991c-4c19-9314-a4f220ad4790&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"aa81d69a-6019-4222-8a59-5001b337b557\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.164561,\n                \"lon\": 8.515106,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=aa81d69a-6019-4222-8a59-5001b337b557&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=aa81d69a-6019-4222-8a59-5001b337b557&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"398a15a7-22f3-4c00-cce4-00f57074ce82\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.364972,\n                \"lon\": 8.566491,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=398a15a7-22f3-4c00-cce4-00f57074ce82&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=398a15a7-22f3-4c00-cce4-00f57074ce82&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"dfc2c753-13c9-4ab7-ffea-b48e78ae51f5\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.956663,\n                \"lon\": 7.444791,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=dfc2c753-13c9-4ab7-ffea-b48e78ae51f5&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=dfc2c753-13c9-4ab7-ffea-b48e78ae51f5&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"d4b2aa4a-e610-46ed-ac00-aa2ae6033ffa\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.377675,\n                \"lon\": 8.499055,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d4b2aa4a-e610-46ed-ac00-aa2ae6033ffa&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d4b2aa4a-e610-46ed-ac00-aa2ae6033ffa&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"5d16bf17-bf3c-4729-b762-cbaf83f9eb03\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.545253310578,\n                \"lon\": 7.5994933496774,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=5d16bf17-bf3c-4729-b762-cbaf83f9eb03&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=5d16bf17-bf3c-4729-b762-cbaf83f9eb03&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"e20405e2-3a99-47df-b7ca-37792145d14d\",\n                \"last_reported\": 1732885902,\n                \"lat\": 45.867370800587,\n                \"lon\": 8.9848146681914,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e20405e2-3a99-47df-b7ca-37792145d14d&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e20405e2-3a99-47df-b7ca-37792145d14d&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"a2db0bc6-4378-494b-c3dd-6d9f44380d8c\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.508324,\n                \"lon\": 6.623121,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a2db0bc6-4378-494b-c3dd-6d9f44380d8c&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a2db0bc6-4378-494b-c3dd-6d9f44380d8c&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"a8926804-a228-4b15-b04d-68baf7d5e12e\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.3889,\n                \"lon\": 8.51779,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a8926804-a228-4b15-b04d-68baf7d5e12e&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a8926804-a228-4b15-b04d-68baf7d5e12e&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"33893fe1-6d04-4b6b-a1bd-74e92b7af84f\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.346082,\n                \"lon\": 8.69705,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=33893fe1-6d04-4b6b-a1bd-74e92b7af84f&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=33893fe1-6d04-4b6b-a1bd-74e92b7af84f&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"577ac876-a299-4bf1-fa08-98f2bf3946ff\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.392280276316,\n                \"lon\": 8.0583906000017,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=577ac876-a299-4bf1-fa08-98f2bf3946ff&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=577ac876-a299-4bf1-fa08-98f2bf3946ff&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"1737b95a-8568-4fcf-c226-3a928f5954a9\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.043321,\n                \"lon\": 8.306244,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1737b95a-8568-4fcf-c226-3a928f5954a9&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1737b95a-8568-4fcf-c226-3a928f5954a9&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"e5be470d-18c1-4943-f110-c060bab7b418\",\n                \"last_reported\": 1732885902,\n                \"lat\": 45.991339156703,\n                \"lon\": 8.9429913443159,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e5be470d-18c1-4943-f110-c060bab7b418&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e5be470d-18c1-4943-f110-c060bab7b418&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"7c8aa530-cd31-4521-99b4-fc54fee4bff0\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.497065,\n                \"lon\": 8.727119,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7c8aa530-cd31-4521-99b4-fc54fee4bff0&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7c8aa530-cd31-4521-99b4-fc54fee4bff0&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"11759781-3163-411f-997f-d0a46203770b\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.210486,\n                \"lon\": 6.141205,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=11759781-3163-411f-997f-d0a46203770b&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=11759781-3163-411f-997f-d0a46203770b&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"449df939-0739-4241-b73a-39cb047d9e1e\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.40062,\n                \"lon\": 8.6223,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=449df939-0739-4241-b73a-39cb047d9e1e&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=449df939-0739-4241-b73a-39cb047d9e1e&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"b7017aff-3961-4611-e025-6e5f0b33732a\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.427669002718,\n                \"lon\": 8.5464403509258,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b7017aff-3961-4611-e025-6e5f0b33732a&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b7017aff-3961-4611-e025-6e5f0b33732a&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"3d9fb896-85f4-4abd-e572-f4a6b356fea2\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.963149,\n                \"lon\": 7.431884,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3d9fb896-85f4-4abd-e572-f4a6b356fea2&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3d9fb896-85f4-4abd-e572-f4a6b356fea2&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"bc85a31e-6f4b-4952-fe03-57470763c5be\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.956570082106,\n                \"lon\": 7.4826129144466,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=bc85a31e-6f4b-4952-fe03-57470763c5be&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=bc85a31e-6f4b-4952-fe03-57470763c5be&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"128586ce-d166-4904-8a50-afb3d3bf9da3\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.204586,\n                \"lon\": 7.538845,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=128586ce-d166-4904-8a50-afb3d3bf9da3&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=128586ce-d166-4904-8a50-afb3d3bf9da3&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"1f187b9c-d0c1-43b0-9f79-51019a169b8f\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.565807368681,\n                \"lon\": 7.5888604461238,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1f187b9c-d0c1-43b0-9f79-51019a169b8f&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1f187b9c-d0c1-43b0-9f79-51019a169b8f&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"1e6fa8d3-becd-44d1-e79c-df30194ed02f\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.83537,\n                \"lon\": 9.45068,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1e6fa8d3-becd-44d1-e79c-df30194ed02f&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1e6fa8d3-becd-44d1-e79c-df30194ed02f&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"2f8f2846-344e-43b5-9bc1-df5265077b74\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.556797,\n                \"lon\": 7.588357,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2f8f2846-344e-43b5-9bc1-df5265077b74&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2f8f2846-344e-43b5-9bc1-df5265077b74&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"93e394c6-a7e7-4aed-81ea-18dadcb8bfc6\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.350958,\n                \"lon\": 8.71664,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=93e394c6-a7e7-4aed-81ea-18dadcb8bfc6&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=93e394c6-a7e7-4aed-81ea-18dadcb8bfc6&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"33d3fbe8-6b56-4f1e-a36d-ad7786ec3f31\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.046785,\n                \"lon\": 8.316486,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=33d3fbe8-6b56-4f1e-a36d-ad7786ec3f31&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=33d3fbe8-6b56-4f1e-a36d-ad7786ec3f31&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"b55715e7-959e-4901-fe6e-9512181835c8\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.369188508253,\n                \"lon\": 8.6868343034157,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b55715e7-959e-4901-fe6e-9512181835c8&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b55715e7-959e-4901-fe6e-9512181835c8&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"f410625f-47ae-4293-afd1-7458f07a5b41\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.49777675389,\n                \"lon\": 8.7411328787452,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f410625f-47ae-4293-afd1-7458f07a5b41&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f410625f-47ae-4293-afd1-7458f07a5b41&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"ab104aed-c16c-4014-9ed3-7ad2f69ff30b\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.06187,\n                \"lon\": 7.62239,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ab104aed-c16c-4014-9ed3-7ad2f69ff30b&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ab104aed-c16c-4014-9ed3-7ad2f69ff30b&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"690693f1-c212-4792-e463-d8a6c931fa26\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.949872,\n                \"lon\": 7.474431,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=690693f1-c212-4792-e463-d8a6c931fa26&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=690693f1-c212-4792-e463-d8a6c931fa26&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"98050cc3-f01b-4466-df24-8a9a334d045f\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.556797,\n                \"lon\": 7.588357,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=98050cc3-f01b-4466-df24-8a9a334d045f&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=98050cc3-f01b-4466-df24-8a9a334d045f&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"8856705b-ccf9-4594-f106-cd162352293b\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.44699,\n                \"lon\": 8.58071,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8856705b-ccf9-4594-f106-cd162352293b&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8856705b-ccf9-4594-f106-cd162352293b&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"7b7b7ac4-0ec1-4c8f-ff09-30edc3eaee32\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.129174,\n                \"lon\": 7.23772,\n                \"is_reserved\": true,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7b7b7ac4-0ec1-4c8f-ff09-30edc3eaee32&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7b7b7ac4-0ec1-4c8f-ff09-30edc3eaee32&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"174477ed-6179-49ff-9fb2-63264cd2c121\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.377258,\n                \"lon\": 8.522989,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=174477ed-6179-49ff-9fb2-63264cd2c121&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=174477ed-6179-49ff-9fb2-63264cd2c121&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"d074e3dc-dce4-4fa2-e6a1-bce3a46fa628\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.957180383257,\n                \"lon\": 8.3687664556808,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d074e3dc-dce4-4fa2-e6a1-bce3a46fa628&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d074e3dc-dce4-4fa2-e6a1-bce3a46fa628&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"7c353879-ff93-4747-840f-b63ca6909c48\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.389779,\n                \"lon\": 8.521133,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7c353879-ff93-4747-840f-b63ca6909c48&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7c353879-ff93-4747-840f-b63ca6909c48&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"6a745ff5-0702-42b5-8012-3e0ffa2a6c7a\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.169587,\n                \"lon\": 8.792249,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6a745ff5-0702-42b5-8012-3e0ffa2a6c7a&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6a745ff5-0702-42b5-8012-3e0ffa2a6c7a&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"d5bbb971-8360-4681-f196-07805473bde7\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.532527,\n                \"lon\": 6.646982,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d5bbb971-8360-4681-f196-07805473bde7&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d5bbb971-8360-4681-f196-07805473bde7&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"0c0f31a8-ac61-4bf7-f356-c2bcf39f7c6b\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.041277,\n                \"lon\": 8.307179,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=0c0f31a8-ac61-4bf7-f356-c2bcf39f7c6b&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=0c0f31a8-ac61-4bf7-f356-c2bcf39f7c6b&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"c3e3b2fc-de3c-48ba-ee8d-ea3ceb2a357a\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.362444,\n                \"lon\": 8.518835,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c3e3b2fc-de3c-48ba-ee8d-ea3ceb2a357a&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c3e3b2fc-de3c-48ba-ee8d-ea3ceb2a357a&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"50c81fc3-6d8a-47fa-f6e9-ef84d2912145\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.051145,\n                \"lon\": 8.301234,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=50c81fc3-6d8a-47fa-f6e9-ef84d2912145&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=50c81fc3-6d8a-47fa-f6e9-ef84d2912145&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"6b8954e3-2930-4895-efcf-dd92af2d95a0\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.393763,\n                \"lon\": 8.043805,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6b8954e3-2930-4895-efcf-dd92af2d95a0&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6b8954e3-2930-4895-efcf-dd92af2d95a0&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"bbed19ab-748c-4e10-aa1b-becd858df0e3\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.803487,\n                \"lon\": 7.167881,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=bbed19ab-748c-4e10-aa1b-becd858df0e3&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=bbed19ab-748c-4e10-aa1b-becd858df0e3&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"c4705f9e-6fe2-4e86-b35b-46ad0892dade\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.258023073523,\n                \"lon\": 8.8492476151281,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c4705f9e-6fe2-4e86-b35b-46ad0892dade&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c4705f9e-6fe2-4e86-b35b-46ad0892dade&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"27dffce4-a9e7-4a1f-cc94-4a78134bf355\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.395964275845,\n                \"lon\": 8.5987304207514,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=27dffce4-a9e7-4a1f-cc94-4a78134bf355&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=27dffce4-a9e7-4a1f-cc94-4a78134bf355&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"8594a063-ea1d-4093-d2d2-8c59281df876\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.392532,\n                \"lon\": 8.051504,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8594a063-ea1d-4093-d2d2-8c59281df876&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8594a063-ea1d-4093-d2d2-8c59281df876&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"2a4f3766-38c4-42e7-e4bf-ce7d1b76d256\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.431486801889,\n                \"lon\": 8.468269599213,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2a4f3766-38c4-42e7-e4bf-ce7d1b76d256&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2a4f3766-38c4-42e7-e4bf-ce7d1b76d256&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"391b9409-d2a2-4329-beb4-2eca584db5ba\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.52381,\n                \"lon\": 6.629851,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=391b9409-d2a2-4329-beb4-2eca584db5ba&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=391b9409-d2a2-4329-beb4-2eca584db5ba&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"447e291e-3270-4c09-a3c7-3fdb02cb0fe8\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.385636,\n                \"lon\": 8.180798,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=447e291e-3270-4c09-a3c7-3fdb02cb0fe8&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=447e291e-3270-4c09-a3c7-3fdb02cb0fe8&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"d9f664ce-b55a-4258-9c4b-3a0f747535f1\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.401733192269,\n                \"lon\": 8.4996451588861,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d9f664ce-b55a-4258-9c4b-3a0f747535f1&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d9f664ce-b55a-4258-9c4b-3a0f747535f1&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"ee9cce6a-8b08-440d-f10a-8e753261acfa\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.212217,\n                \"lon\": 7.78746,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ee9cce6a-8b08-440d-f10a-8e753261acfa&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ee9cce6a-8b08-440d-f10a-8e753261acfa&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"ba9457ab-13d7-4dde-ee2b-5372e538b013\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.377461418225,\n                \"lon\": 9.5392035830991,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ba9457ab-13d7-4dde-ee2b-5372e538b013&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ba9457ab-13d7-4dde-ee2b-5372e538b013&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"9dd0a906-bc2b-4faf-b7d6-1b3474840080\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.94863919554,\n                \"lon\": 7.4493467133109,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9dd0a906-bc2b-4faf-b7d6-1b3474840080&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9dd0a906-bc2b-4faf-b7d6-1b3474840080&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"c201cff6-040c-409c-fcd0-e726609b2592\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.80359,\n                \"lon\": 7.151729,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c201cff6-040c-409c-fcd0-e726609b2592&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c201cff6-040c-409c-fcd0-e726609b2592&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"ebb6fa19-f944-41a4-eb86-5c746254074e\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.08280343325,\n                \"lon\": 8.3119796338474,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ebb6fa19-f944-41a4-eb86-5c746254074e&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ebb6fa19-f944-41a4-eb86-5c746254074e&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"6d3859ab-81f9-47a1-cfd5-0de59e86c39e\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.519403,\n                \"lon\": 6.637083,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6d3859ab-81f9-47a1-cfd5-0de59e86c39e&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6d3859ab-81f9-47a1-cfd5-0de59e86c39e&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"899c1ec8-0220-49fe-e769-4fdadf205fb8\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.194382082579,\n                \"lon\": 9.0276933323244,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=899c1ec8-0220-49fe-e769-4fdadf205fb8&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=899c1ec8-0220-49fe-e769-4fdadf205fb8&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"23c0bd2a-c147-4305-b5ab-5c4a4b952b66\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.55773878992,\n                \"lon\": 7.5806769588951,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=23c0bd2a-c147-4305-b5ab-5c4a4b952b66&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=23c0bd2a-c147-4305-b5ab-5c4a4b952b66&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"deb53396-1613-4425-ef64-cc33c2be19e8\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.552922,\n                \"lon\": 7.570653,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=deb53396-1613-4425-ef64-cc33c2be19e8&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=deb53396-1613-4425-ef64-cc33c2be19e8&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"6f9873e4-10bd-4aa6-f30d-96cd28285fa0\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.494061831487,\n                \"lon\": 8.7344061899046,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6f9873e4-10bd-4aa6-f30d-96cd28285fa0&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6f9873e4-10bd-4aa6-f30d-96cd28285fa0&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"974d7ae2-1d91-48dd-f3cb-35fd0de66eff\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.426397840135,\n                \"lon\": 9.3748969159782,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=974d7ae2-1d91-48dd-f3cb-35fd0de66eff&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=974d7ae2-1d91-48dd-f3cb-35fd0de66eff&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"aaf375a0-d127-4cfd-e615-abb900b09a90\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.395162,\n                \"lon\": 8.536534,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=aaf375a0-d127-4cfd-e615-abb900b09a90&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=aaf375a0-d127-4cfd-e615-abb900b09a90&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"d24efc71-47b3-477d-b758-4f6114ec787e\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.387891,\n                \"lon\": 8.545596,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d24efc71-47b3-477d-b758-4f6114ec787e&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d24efc71-47b3-477d-b758-4f6114ec787e&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"10c1ae87-5d3b-473f-afce-cc036468e51b\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.16774117582,\n                \"lon\": 8.796240932865,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=10c1ae87-5d3b-473f-afce-cc036468e51b&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=10c1ae87-5d3b-473f-afce-cc036468e51b&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"1d801b16-d5b6-4091-91d3-cbd70f6dde73\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.958036,\n                \"lon\": 7.436923,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1d801b16-d5b6-4091-91d3-cbd70f6dde73&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1d801b16-d5b6-4091-91d3-cbd70f6dde73&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"775d9aee-7631-44b9-8afb-63b13291cbea\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.963149,\n                \"lon\": 7.431884,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=775d9aee-7631-44b9-8afb-63b13291cbea&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=775d9aee-7631-44b9-8afb-63b13291cbea&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"41c66db1-7618-4113-83c4-d67171204e60\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.522132956441,\n                \"lon\": 6.6263395066455,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=41c66db1-7618-4113-83c4-d67171204e60&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=41c66db1-7618-4113-83c4-d67171204e60&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"3e7036c3-c15f-4c33-8a7c-a7b1555b28a2\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.389458,\n                \"lon\": 8.486505,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3e7036c3-c15f-4c33-8a7c-a7b1555b28a2&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3e7036c3-c15f-4c33-8a7c-a7b1555b28a2&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"0f4c3ff2-5da4-4d60-9c86-4cbda6ffc1c6\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.407632,\n                \"lon\": 8.548559,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=0f4c3ff2-5da4-4d60-9c86-4cbda6ffc1c6&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=0f4c3ff2-5da4-4d60-9c86-4cbda6ffc1c6&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"193d9c2c-3ed7-4eac-99aa-248b6088965c\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.473652,\n                \"lon\": 8.308096,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=193d9c2c-3ed7-4eac-99aa-248b6088965c&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=193d9c2c-3ed7-4eac-99aa-248b6088965c&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"7b3ce3f5-915f-46d0-c8ed-95267fd62c20\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.351486246155,\n                \"lon\": 8.561145258894,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7b3ce3f5-915f-46d0-c8ed-95267fd62c20&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7b3ce3f5-915f-46d0-c8ed-95267fd62c20&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"ab6f677e-9b59-48b8-a107-55f60589c47c\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.349591143576,\n                \"lon\": 8.7158465172508,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ab6f677e-9b59-48b8-a107-55f60589c47c&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ab6f677e-9b59-48b8-a107-55f60589c47c&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"8915838d-3a3a-41e7-dd79-1fd5e27c581b\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.525037,\n                \"lon\": 6.633741,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8915838d-3a3a-41e7-dd79-1fd5e27c581b&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8915838d-3a3a-41e7-dd79-1fd5e27c581b&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"11d6b8c4-7b3a-4262-dfe3-dce4f16d91be\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.369188508253,\n                \"lon\": 8.6868343034157,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=11d6b8c4-7b3a-4262-dfe3-dce4f16d91be&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=11d6b8c4-7b3a-4262-dfe3-dce4f16d91be&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"e6768d08-514f-4ac2-90f3-ae91b2cfd5e9\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.203827277832,\n                \"lon\": 7.5576633411405,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e6768d08-514f-4ac2-90f3-ae91b2cfd5e9&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e6768d08-514f-4ac2-90f3-ae91b2cfd5e9&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"af2e9f51-b056-48cc-e5bf-44c23be84212\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.954688,\n                \"lon\": 7.433766,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=af2e9f51-b056-48cc-e5bf-44c23be84212&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=af2e9f51-b056-48cc-e5bf-44c23be84212&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"888de639-756e-4aa5-fa31-53defe9990e2\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.385250737493,\n                \"lon\": 8.5187188797619,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=888de639-756e-4aa5-fa31-53defe9990e2&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=888de639-756e-4aa5-fa31-53defe9990e2&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"69163536-1afc-4eb3-da36-757e51066a6a\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.480169146811,\n                \"lon\": 8.3138680705578,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=69163536-1afc-4eb3-da36-757e51066a6a&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=69163536-1afc-4eb3-da36-757e51066a6a&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"465df45c-df6e-4121-ff8a-0248d615cf6c\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.395594347022,\n                \"lon\": 8.5057420355761,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=465df45c-df6e-4121-ff8a-0248d615cf6c&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=465df45c-df6e-4121-ff8a-0248d615cf6c&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"fd45b14b-8959-4557-81d1-dc84d198813c\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.137944,\n                \"lon\": 7.246314,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fd45b14b-8959-4557-81d1-dc84d198813c&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fd45b14b-8959-4557-81d1-dc84d198813c&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"0bf8a4c5-5cbc-4f4d-8dd6-8b205e1968fa\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.361059,\n                \"lon\": 8.506359,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=0bf8a4c5-5cbc-4f4d-8dd6-8b205e1968fa&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=0bf8a4c5-5cbc-4f4d-8dd6-8b205e1968fa&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"d162c754-22fc-45db-eba7-f60fb7bdfdab\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.562145257959,\n                \"lon\": 7.595731962385,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d162c754-22fc-45db-eba7-f60fb7bdfdab&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d162c754-22fc-45db-eba7-f60fb7bdfdab&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"04e154de-3d31-44df-ffb4-e681e2035ab9\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.390969736553,\n                \"lon\": 8.5095165426297,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"98aac148-47b8-47df-a6e0-804a4da5f27e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=04e154de-3d31-44df-ffb4-e681e2035ab9&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=04e154de-3d31-44df-ffb4-e681e2035ab9&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"cb25289d-2f05-4b66-e537-e0a9d15b37ce\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.358297278092,\n                \"lon\": 8.5178049864567,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"abd7bfa8-b746-4c87-c82e-feec4d9852b2\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=cb25289d-2f05-4b66-e537-e0a9d15b37ce&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=cb25289d-2f05-4b66-e537-e0a9d15b37ce&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"265eade1-06cc-4372-fe9d-1eef3171265a\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.963489,\n                \"lon\": 7.461865,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"b852b7a7-170e-4730-8732-d8291c29cc6e\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=265eade1-06cc-4372-fe9d-1eef3171265a&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=265eade1-06cc-4372-fe9d-1eef3171265a&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"b5093038-89da-4599-e8ef-e66ddc89cd91\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.208716,\n                \"lon\": 6.148521,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b5093038-89da-4599-e8ef-e66ddc89cd91&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b5093038-89da-4599-e8ef-e66ddc89cd91&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"db0b2982-df94-45ae-d1fe-a78ae96c6800\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.16271528925,\n                \"lon\": 8.7684703792578,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=db0b2982-df94-45ae-d1fe-a78ae96c6800&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=db0b2982-df94-45ae-d1fe-a78ae96c6800&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"cb262814-2dbd-49a8-fca4-94fd975e2d32\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.935931574002,\n                \"lon\": 7.4170291612417,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=cb262814-2dbd-49a8-fca4-94fd975e2d32&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=cb262814-2dbd-49a8-fca4-94fd975e2d32&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"3bd9e3a5-85cc-4995-e8ba-354ddbe8214b\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.947739,\n                \"lon\": 7.439382,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3bd9e3a5-85cc-4995-e8ba-354ddbe8214b&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3bd9e3a5-85cc-4995-e8ba-354ddbe8214b&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"a007b43f-bc26-4cf8-fdef-6fec3988058c\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.510648129843,\n                \"lon\": 6.5575171960219,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a007b43f-bc26-4cf8-fdef-6fec3988058c&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a007b43f-bc26-4cf8-fdef-6fec3988058c&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"e4ad96f4-c7a8-427b-8f9b-2f7c662bc950\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.948162,\n                \"lon\": 7.452159,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e4ad96f4-c7a8-427b-8f9b-2f7c662bc950&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e4ad96f4-c7a8-427b-8f9b-2f7c662bc950&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"bddf8e6b-0c48-49c3-c8a5-e5d414a5bad1\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.458497,\n                \"lon\": 9.03687,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=bddf8e6b-0c48-49c3-c8a5-e5d414a5bad1&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=bddf8e6b-0c48-49c3-c8a5-e5d414a5bad1&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"a02b9cf4-7008-4c7c-8296-eef96b663484\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.141865,\n                \"lon\": 7.246282,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a02b9cf4-7008-4c7c-8296-eef96b663484&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a02b9cf4-7008-4c7c-8296-eef96b663484&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"dfc4a699-02cd-4599-9fe2-b92c50e9d2d4\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.873366511636,\n                \"lon\": 7.5588705469664,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=dfc4a699-02cd-4599-9fe2-b92c50e9d2d4&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=dfc4a699-02cd-4599-9fe2-b92c50e9d2d4&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"df2a04fa-c08a-4da4-e173-b5cc094cd1ed\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.205327130868,\n                \"lon\": 6.132279698026,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=df2a04fa-c08a-4da4-e173-b5cc094cd1ed&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=df2a04fa-c08a-4da4-e173-b5cc094cd1ed&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"b60449b5-9f14-4908-abaf-e97c661f7adb\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.048378620842,\n                \"lon\": 8.3074572711901,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b60449b5-9f14-4908-abaf-e97c661f7adb&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b60449b5-9f14-4908-abaf-e97c661f7adb&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"a961f1e8-c1c3-48aa-f674-95be419bd1cb\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.951077,\n                \"lon\": 7.436197,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a961f1e8-c1c3-48aa-f674-95be419bd1cb&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a961f1e8-c1c3-48aa-f674-95be419bd1cb&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"8235da54-c042-4aec-95a2-a9f941a0b455\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.558213714934,\n                \"lon\": 8.8997624223259,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8235da54-c042-4aec-95a2-a9f941a0b455&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8235da54-c042-4aec-95a2-a9f941a0b455&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"58f48394-8fe5-4715-eef7-dacef4d9ffd0\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.944113378445,\n                \"lon\": 7.4486178934565,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=58f48394-8fe5-4715-eef7-dacef4d9ffd0&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=58f48394-8fe5-4715-eef7-dacef4d9ffd0&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"dcf43aa6-b228-4d80-ce42-36fbea2ece11\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.173571199649,\n                \"lon\": 6.1299777277975,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=dcf43aa6-b228-4d80-ce42-36fbea2ece11&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=dcf43aa6-b228-4d80-ce42-36fbea2ece11&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"af4892d2-a31e-416a-8f89-ddb9d35b880b\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.534853,\n                \"lon\": 6.590109,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=af4892d2-a31e-416a-8f89-ddb9d35b880b&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=af4892d2-a31e-416a-8f89-ddb9d35b880b&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"fc99538d-c927-49f4-9380-baed33b47f0a\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.219427,\n                \"lon\": 6.147151,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fc99538d-c927-49f4-9380-baed33b47f0a&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fc99538d-c927-49f4-9380-baed33b47f0a&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"77f7b2e0-7c6f-49b0-dcae-2544460c8ee9\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.644216001136,\n                \"lon\": 6.6365275722748,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=77f7b2e0-7c6f-49b0-dcae-2544460c8ee9&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=77f7b2e0-7c6f-49b0-dcae-2544460c8ee9&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"445f1efb-6013-453c-c4f8-59677a4c90f4\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.420770925272,\n                \"lon\": 8.5077829577339,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=445f1efb-6013-453c-c4f8-59677a4c90f4&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=445f1efb-6013-453c-c4f8-59677a4c90f4&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"b19ab122-c1bb-46a1-d76f-29451065c479\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.344613,\n                \"lon\": 7.901965,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b19ab122-c1bb-46a1-d76f-29451065c479&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b19ab122-c1bb-46a1-d76f-29451065c479&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"d807f1af-5aaf-415f-c33c-511989f79d0f\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.95728,\n                \"lon\": 7.47409,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d807f1af-5aaf-415f-c33c-511989f79d0f&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d807f1af-5aaf-415f-c33c-511989f79d0f&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"04b38389-d31f-4c58-949a-dc322bfb5cd6\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.61637,\n                \"lon\": 7.057434,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=04b38389-d31f-4c58-949a-dc322bfb5cd6&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=04b38389-d31f-4c58-949a-dc322bfb5cd6&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"56e4ef4b-ce11-449b-c125-0bf4d0b93447\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.160416381078,\n                \"lon\": 6.1487905411196,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=56e4ef4b-ce11-449b-c125-0bf4d0b93447&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=56e4ef4b-ce11-449b-c125-0bf4d0b93447&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"d3cb3bf5-5c25-45ba-f4b9-8d5d844540a4\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.815379930825,\n                \"lon\": 7.1553388557647,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d3cb3bf5-5c25-45ba-f4b9-8d5d844540a4&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d3cb3bf5-5c25-45ba-f4b9-8d5d844540a4&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"bd1bed29-e625-4d20-f72b-6af1778d68df\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.94374,\n                \"lon\": 7.46393,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=bd1bed29-e625-4d20-f72b-6af1778d68df&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=bd1bed29-e625-4d20-f72b-6af1778d68df&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"ba58e1c1-d9d2-4a2f-8de2-31eae2b1cdb1\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.549018,\n                \"lon\": 7.60175,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ba58e1c1-d9d2-4a2f-8de2-31eae2b1cdb1&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ba58e1c1-d9d2-4a2f-8de2-31eae2b1cdb1&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"b7ae4aa9-4d0a-4c91-fade-f754f1bbe99d\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.929879,\n                \"lon\": 7.448226,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b7ae4aa9-4d0a-4c91-fade-f754f1bbe99d&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b7ae4aa9-4d0a-4c91-fade-f754f1bbe99d&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"f77b7bda-97bf-4348-b81a-5029fc334008\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.387825060139,\n                \"lon\": 8.5263480959755,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f77b7bda-97bf-4348-b81a-5029fc334008&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f77b7bda-97bf-4348-b81a-5029fc334008&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"a389c8bd-efcc-440f-8ab1-afb438c2fbb3\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.797427432686,\n                \"lon\": 7.1471818640458,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a389c8bd-efcc-440f-8ab1-afb438c2fbb3&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a389c8bd-efcc-440f-8ab1-afb438c2fbb3&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"0ebab143-a7ab-43b4-930d-1fdea81b56e3\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.48589,\n                \"lon\": 7.73081,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=0ebab143-a7ab-43b4-930d-1fdea81b56e3&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=0ebab143-a7ab-43b4-930d-1fdea81b56e3&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"0afb68ea-fd1b-4b6e-9896-47317f86cdf5\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.568080767495,\n                \"lon\": 7.5787429476233,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=0afb68ea-fd1b-4b6e-9896-47317f86cdf5&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=0afb68ea-fd1b-4b6e-9896-47317f86cdf5&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"e2f20b2e-212f-4ff1-bb3d-bc53f4040b7f\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.543353722004,\n                \"lon\": 7.5857777470965,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e2f20b2e-212f-4ff1-bb3d-bc53f4040b7f&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e2f20b2e-212f-4ff1-bb3d-bc53f4040b7f&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"867f8677-04f2-4585-d204-d2f85b537f42\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.809297473988,\n                \"lon\": 7.1488146968993,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=867f8677-04f2-4585-d204-d2f85b537f42&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=867f8677-04f2-4585-d204-d2f85b537f42&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"0207495d-e550-471f-87e2-dc02d0871a89\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.201541283039,\n                \"lon\": 6.142054981989,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=0207495d-e550-471f-87e2-dc02d0871a89&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=0207495d-e550-471f-87e2-dc02d0871a89&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"a1132e66-288a-404a-f24a-25eb6dfcbf8b\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.70483,\n                \"lon\": 8.622909,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a1132e66-288a-404a-f24a-25eb6dfcbf8b&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a1132e66-288a-404a-f24a-25eb6dfcbf8b&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"8e575511-4001-4fc7-a173-19a05f99a92d\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.75609,\n                \"lon\": 7.633909,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8e575511-4001-4fc7-a173-19a05f99a92d&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8e575511-4001-4fc7-a173-19a05f99a92d&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"10709437-65f9-4e76-b50e-715ee7cbfb70\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.201803,\n                \"lon\": 6.140499,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=10709437-65f9-4e76-b50e-715ee7cbfb70&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=10709437-65f9-4e76-b50e-715ee7cbfb70&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"2a533359-5e6f-44f6-93b2-9c7d9cf1694d\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.482387,\n                \"lon\": 8.209191,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2a533359-5e6f-44f6-93b2-9c7d9cf1694d&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2a533359-5e6f-44f6-93b2-9c7d9cf1694d&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"fa2e0a9d-99cc-45bb-d2f0-1a61a581d1f0\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.30287,\n                \"lon\": 9.086738,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fa2e0a9d-99cc-45bb-d2f0-1a61a581d1f0&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fa2e0a9d-99cc-45bb-d2f0-1a61a581d1f0&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"cec272aa-b02f-454b-9c8c-71ae8c2da619\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.567458972983,\n                \"lon\": 9.0897781671182,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=cec272aa-b02f-454b-9c8c-71ae8c2da619&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=cec272aa-b02f-454b-9c8c-71ae8c2da619&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"49dc9e5e-b28c-44ac-e45f-d4aa2477aedb\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.458204,\n                \"lon\": 6.850752,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=49dc9e5e-b28c-44ac-e45f-d4aa2477aedb&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=49dc9e5e-b28c-44ac-e45f-d4aa2477aedb&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"d33fe061-d4c2-406b-e8ad-cc2a3d49bb91\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.202991903407,\n                \"lon\": 6.160065668697,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d33fe061-d4c2-406b-e8ad-cc2a3d49bb91&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=d33fe061-d4c2-406b-e8ad-cc2a3d49bb91&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"4c03ddd1-0c6a-405f-9e95-d9772dcf3f79\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.463209,\n                \"lon\": 9.041767,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=4c03ddd1-0c6a-405f-9e95-d9772dcf3f79&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=4c03ddd1-0c6a-405f-9e95-d9772dcf3f79&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"1c2c0b38-43bc-41b1-ce82-0d50e40ff08e\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.528673,\n                \"lon\": 6.566498,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1c2c0b38-43bc-41b1-ce82-0d50e40ff08e&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1c2c0b38-43bc-41b1-ce82-0d50e40ff08e&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"6d764ce8-107c-4bc6-e074-0dcb66a9291f\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.203167972422,\n                \"lon\": 6.135075733746,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6d764ce8-107c-4bc6-e074-0dcb66a9291f&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6d764ce8-107c-4bc6-e074-0dcb66a9291f&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"7487a702-a5da-4d86-a735-c07c432e33d1\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.221433860709,\n                \"lon\": 6.1479974917688,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7487a702-a5da-4d86-a735-c07c432e33d1&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7487a702-a5da-4d86-a735-c07c432e33d1&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"3a23aba7-1c7c-4e00-a975-db2f25c7bce9\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.169113522567,\n                \"lon\": 8.7688421445812,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3a23aba7-1c7c-4e00-a975-db2f25c7bce9&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3a23aba7-1c7c-4e00-a975-db2f25c7bce9&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"31e2470c-1a30-4a2f-a078-43095e86522c\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.875136,\n                \"lon\": 7.563332,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=31e2470c-1a30-4a2f-a078-43095e86522c&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=31e2470c-1a30-4a2f-a078-43095e86522c&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"438fb29b-a829-419e-b8eb-37fb88b4ec93\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.511095584541,\n                \"lon\": 6.6261117355272,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=438fb29b-a829-419e-b8eb-37fb88b4ec93&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=438fb29b-a829-419e-b8eb-37fb88b4ec93&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"4e00e514-676d-4500-e55f-56331023996b\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.173935960841,\n                \"lon\": 8.9988160284739,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=4e00e514-676d-4500-e55f-56331023996b&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=4e00e514-676d-4500-e55f-56331023996b&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"54dd5ce4-9e41-4195-f788-f2d98f8a2be3\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.533085,\n                \"lon\": 6.606335,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=54dd5ce4-9e41-4195-f788-f2d98f8a2be3&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=54dd5ce4-9e41-4195-f788-f2d98f8a2be3&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"989a7874-35bd-46e9-d00e-b9fa65f65361\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.697436,\n                \"lon\": 8.63201,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=989a7874-35bd-46e9-d00e-b9fa65f65361&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=989a7874-35bd-46e9-d00e-b9fa65f65361&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"3c93da5e-68b9-43df-9aad-ee01e652938a\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.458413,\n                \"lon\": 6.844941,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3c93da5e-68b9-43df-9aad-ee01e652938a&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3c93da5e-68b9-43df-9aad-ee01e652938a&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"7ca7d13c-9fd8-462b-cadc-65eb60fb2e0a\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.229008178171,\n                \"lon\": 6.1295726372418,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7ca7d13c-9fd8-462b-cadc-65eb60fb2e0a&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7ca7d13c-9fd8-462b-cadc-65eb60fb2e0a&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"aa6500bf-d116-4773-a763-12dd28072e86\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.460808,\n                \"lon\": 6.838842,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=aa6500bf-d116-4773-a763-12dd28072e86&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=aa6500bf-d116-4773-a763-12dd28072e86&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"f42de35f-9c3e-40f1-cf4d-1748431621ca\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.196901,\n                \"lon\": 8.485886,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f42de35f-9c3e-40f1-cf4d-1748431621ca&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f42de35f-9c3e-40f1-cf4d-1748431621ca&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"246a8d9d-cd2f-4ab3-8487-9b4eaf5c7c45\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.537855,\n                \"lon\": 6.654264,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=246a8d9d-cd2f-4ab3-8487-9b4eaf5c7c45&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=246a8d9d-cd2f-4ab3-8487-9b4eaf5c7c45&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"bab76bf6-9a4b-44c5-907d-8341449edd38\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.774711881221,\n                \"lon\": 6.6492865370509,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=bab76bf6-9a4b-44c5-907d-8341449edd38&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=bab76bf6-9a4b-44c5-907d-8341449edd38&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"b0aef0ef-a153-4b10-8dc8-a83646550339\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.186724434479,\n                \"lon\": 6.1244426542005,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b0aef0ef-a153-4b10-8dc8-a83646550339&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b0aef0ef-a153-4b10-8dc8-a83646550339&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"25e93893-7f89-406b-8cf8-3713ca809945\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.996383,\n                \"lon\": 6.936729,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=25e93893-7f89-406b-8cf8-3713ca809945&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=25e93893-7f89-406b-8cf8-3713ca809945&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"b4729bfa-2fa3-4963-8944-859a30710e15\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.20970525286,\n                \"lon\": 6.1173546693286,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b4729bfa-2fa3-4963-8944-859a30710e15&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b4729bfa-2fa3-4963-8944-859a30710e15&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"8dd2e235-5b63-4331-807f-c805d858aac7\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.384388,\n                \"lon\": 6.23698,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8dd2e235-5b63-4331-807f-c805d858aac7&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8dd2e235-5b63-4331-807f-c805d858aac7&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"b75c40bc-53ad-496c-81bf-96d141c11a84\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.39862285511,\n                \"lon\": 8.5923201571997,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b75c40bc-53ad-496c-81bf-96d141c11a84&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=b75c40bc-53ad-496c-81bf-96d141c11a84&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"829cc077-9f99-4407-fa91-ffd16373cfb3\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.103226,\n                \"lon\": 6.830022,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=829cc077-9f99-4407-fa91-ffd16373cfb3&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=829cc077-9f99-4407-fa91-ffd16373cfb3&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"e3943970-269c-4882-c212-549fbe6a460e\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.202287,\n                \"lon\": 6.134383,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e3943970-269c-4882-c212-549fbe6a460e&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e3943970-269c-4882-c212-549fbe6a460e&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"36fabff0-477f-481a-b49d-e45261694289\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.550531,\n                \"lon\": 6.552015,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=36fabff0-477f-481a-b49d-e45261694289&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=36fabff0-477f-481a-b49d-e45261694289&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"23d7fd11-6dd3-4b8f-c0ce-6151669a85f2\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.369595541425,\n                \"lon\": 8.5283400233134,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=23d7fd11-6dd3-4b8f-c0ce-6151669a85f2&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=23d7fd11-6dd3-4b8f-c0ce-6151669a85f2&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"e5cd6d28-3488-421c-d123-b0e235eb2f14\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.461639,\n                \"lon\": 6.842883,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e5cd6d28-3488-421c-d123-b0e235eb2f14&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e5cd6d28-3488-421c-d123-b0e235eb2f14&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"31576706-79a8-433c-ce09-bb927dd49de2\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.144405551608,\n                \"lon\": 7.2676372091364,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=31576706-79a8-433c-ce09-bb927dd49de2&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=31576706-79a8-433c-ce09-bb927dd49de2&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"30cbd545-2479-4752-971e-d5c9f18339d1\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.225108,\n                \"lon\": 8.815598,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=30cbd545-2479-4752-971e-d5c9f18339d1&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=30cbd545-2479-4752-971e-d5c9f18339d1&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"38c1906f-b522-4235-ccba-f659c1dc286b\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.171191469394,\n                \"lon\": 6.1337683570485,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=38c1906f-b522-4235-ccba-f659c1dc286b&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=38c1906f-b522-4235-ccba-f659c1dc286b&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"5a3fc0d6-32b5-4c89-a7da-fabbe351545a\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.523513,\n                \"lon\": 7.645207,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=5a3fc0d6-32b5-4c89-a7da-fabbe351545a&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=5a3fc0d6-32b5-4c89-a7da-fabbe351545a&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"1718e736-a6ac-40d1-f3bd-4ed5b2c815a9\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.530268701946,\n                \"lon\": 6.5726466692089,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1718e736-a6ac-40d1-f3bd-4ed5b2c815a9&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1718e736-a6ac-40d1-f3bd-4ed5b2c815a9&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"ed4b2c77-a727-4a67-f3f6-b849c089b966\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.928211,\n                \"lon\": 7.1165808411051,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ed4b2c77-a727-4a67-f3f6-b849c089b966&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ed4b2c77-a727-4a67-f3f6-b849c089b966&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"e6cb047b-1b36-4123-a124-e592b43647db\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.185453320076,\n                \"lon\": 6.1005987698114,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e6cb047b-1b36-4123-a124-e592b43647db&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=e6cb047b-1b36-4123-a124-e592b43647db&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"afa59b79-dc40-4421-bd1a-7e5f5eb05bc6\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.565278040578,\n                \"lon\": 9.3670347270386,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=afa59b79-dc40-4421-bd1a-7e5f5eb05bc6&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=afa59b79-dc40-4421-bd1a-7e5f5eb05bc6&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"9ea4fe56-c9cd-439a-c23c-eb90f696164c\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.778551,\n                \"lon\": 6.640473,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9ea4fe56-c9cd-439a-c23c-eb90f696164c&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9ea4fe56-c9cd-439a-c23c-eb90f696164c&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"34f949e5-f1a9-41cc-a87e-d15c41122143\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.220308,\n                \"lon\": 6.097452,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=34f949e5-f1a9-41cc-a87e-d15c41122143&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=34f949e5-f1a9-41cc-a87e-d15c41122143&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"15b07467-1edb-4d20-c69a-f57d35f788f2\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.508293,\n                \"lon\": 6.498588,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=15b07467-1edb-4d20-c69a-f57d35f788f2&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=15b07467-1edb-4d20-c69a-f57d35f788f2&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"913326f8-5148-4fd5-f688-90762837e39b\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.42091,\n                \"lon\": 9.35969,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=913326f8-5148-4fd5-f688-90762837e39b&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=913326f8-5148-4fd5-f688-90762837e39b&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"50eba132-7529-4f02-e653-fb9de79fbd8d\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.177805,\n                \"lon\": 8.50582,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=50eba132-7529-4f02-e653-fb9de79fbd8d&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=50eba132-7529-4f02-e653-fb9de79fbd8d&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"bd0a7c6e-46a1-43f3-e129-b718ec203f51\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.92987,\n                \"lon\": 7.44699,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=bd0a7c6e-46a1-43f3-e129-b718ec203f51&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=bd0a7c6e-46a1-43f3-e129-b718ec203f51&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"4e38773c-99a6-4bc7-b285-c6127eb64a01\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.763428652569,\n                \"lon\": 7.6117774209712,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=4e38773c-99a6-4bc7-b285-c6127eb64a01&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=4e38773c-99a6-4bc7-b285-c6127eb64a01&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"1ebebc63-0930-475b-fb3c-2386ad52e568\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.94645,\n                \"lon\": 7.436741,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1ebebc63-0930-475b-fb3c-2386ad52e568&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=1ebebc63-0930-475b-fb3c-2386ad52e568&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"50e7bd0d-e1b0-408f-b791-38d175a8aefe\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.928343041479,\n                \"lon\": 7.5615940329638,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=50e7bd0d-e1b0-408f-b791-38d175a8aefe&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=50e7bd0d-e1b0-408f-b791-38d175a8aefe&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"8b0fdf2c-ed68-4608-c017-9009b73200b5\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.20438997598,\n                \"lon\": 7.5423719283022,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8b0fdf2c-ed68-4608-c017-9009b73200b5&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8b0fdf2c-ed68-4608-c017-9009b73200b5&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"9bcccfb4-7e58-4465-b123-e9140d4f35aa\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.511549215015,\n                \"lon\": 6.659823308051,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9bcccfb4-7e58-4465-b123-e9140d4f35aa&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9bcccfb4-7e58-4465-b123-e9140d4f35aa&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"ced51a27-fb4e-4991-de45-c62b5f2ac2ad\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.528504302395,\n                \"lon\": 6.620869600813,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ced51a27-fb4e-4991-de45-c62b5f2ac2ad&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ced51a27-fb4e-4991-de45-c62b5f2ac2ad&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"9c83c083-d9a8-4bf5-984b-2c1945bd0a97\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.805485891669,\n                \"lon\": 7.1619760994513,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9c83c083-d9a8-4bf5-984b-2c1945bd0a97&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9c83c083-d9a8-4bf5-984b-2c1945bd0a97&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"a59be6a6-8611-4975-9d71-44d1877a9e81\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.378572,\n                \"lon\": 8.533483,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a59be6a6-8611-4975-9d71-44d1877a9e81&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a59be6a6-8611-4975-9d71-44d1877a9e81&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"90f003ec-07de-4940-e647-34599faf1fca\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.780244,\n                \"lon\": 6.642864,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=90f003ec-07de-4940-e647-34599faf1fca&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=90f003ec-07de-4940-e647-34599faf1fca&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"97301eb3-3287-4adc-c8df-467c7e604959\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.799378,\n                \"lon\": 6.745292,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=97301eb3-3287-4adc-c8df-467c7e604959&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=97301eb3-3287-4adc-c8df-467c7e604959&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"36a3c89c-a6b2-4b83-edea-3a2236e6d967\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.800029893812,\n                \"lon\": 7.1374568015228,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=36a3c89c-a6b2-4b83-edea-3a2236e6d967&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=36a3c89c-a6b2-4b83-edea-3a2236e6d967&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"7ef6af1e-1fc1-496c-f3e7-09e42a5094bd\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.372793,\n                \"lon\": 8.525275,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7ef6af1e-1fc1-496c-f3e7-09e42a5094bd&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=7ef6af1e-1fc1-496c-f3e7-09e42a5094bd&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"9601247a-e5b9-4eb9-839d-b3c1cc01f32a\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.584706168549,\n                \"lon\": 6.605201775478,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9601247a-e5b9-4eb9-839d-b3c1cc01f32a&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=9601247a-e5b9-4eb9-839d-b3c1cc01f32a&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"79ef0fb8-f2fc-4781-9de8-f8af3ba9daaa\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.192859,\n                \"lon\": 6.14346,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=79ef0fb8-f2fc-4781-9de8-f8af3ba9daaa&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=79ef0fb8-f2fc-4781-9de8-f8af3ba9daaa&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"016975b0-e0fd-4f5f-839f-ddbb99d8defa\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.133870270039,\n                \"lon\": 7.2422576663238,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=016975b0-e0fd-4f5f-839f-ddbb99d8defa&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=016975b0-e0fd-4f5f-839f-ddbb99d8defa&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"a6dc07d1-ba09-46b5-ddb1-0f8df7406c9a\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.381486,\n                \"lon\": 6.239442,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a6dc07d1-ba09-46b5-ddb1-0f8df7406c9a&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a6dc07d1-ba09-46b5-ddb1-0f8df7406c9a&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"14fd5dce-ac66-43ff-82aa-ea01ad790408\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.208373602174,\n                \"lon\": 6.1384401985834,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=14fd5dce-ac66-43ff-82aa-ea01ad790408&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=14fd5dce-ac66-43ff-82aa-ea01ad790408&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"99b5995d-e05e-4fbd-fb5e-323104d1e976\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.184468168698,\n                \"lon\": 6.1344626363531,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=99b5995d-e05e-4fbd-fb5e-323104d1e976&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=99b5995d-e05e-4fbd-fb5e-323104d1e976&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"28656002-a598-488b-fe4d-98db66a4d925\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.560469,\n                \"lon\": 7.571308,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=28656002-a598-488b-fe4d-98db66a4d925&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=28656002-a598-488b-fe4d-98db66a4d925&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"2671c683-d464-4370-f768-1611873b95f4\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.511999772636,\n                \"lon\": 6.4851558044541,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2671c683-d464-4370-f768-1611873b95f4&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2671c683-d464-4370-f768-1611873b95f4&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"ce78e6e5-2551-49ae-ce26-0284d59877e4\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.199985,\n                \"lon\": 6.137734,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ce78e6e5-2551-49ae-ce26-0284d59877e4&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ce78e6e5-2551-49ae-ce26-0284d59877e4&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"f97b2740-be7f-493c-e3c0-79ce83ff1960\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.22856645876,\n                \"lon\": 7.3682782653282,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f97b2740-be7f-493c-e3c0-79ce83ff1960&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=f97b2740-be7f-493c-e3c0-79ce83ff1960&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"581723bc-1177-4740-a6b3-c6178dffd651\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.020948854572,\n                \"lon\": 8.3111871896185,\n                \"is_reserved\": true,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=581723bc-1177-4740-a6b3-c6178dffd651&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=581723bc-1177-4740-a6b3-c6178dffd651&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"33c9d258-b95c-4f7e-fdc2-85937473e81d\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.129174,\n                \"lon\": 7.23772,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=33c9d258-b95c-4f7e-fdc2-85937473e81d&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=33c9d258-b95c-4f7e-fdc2-85937473e81d&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"2a5e2f24-74ce-457a-ee5c-d8b81f070162\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.78135,\n                \"lon\": 6.6364,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2a5e2f24-74ce-457a-ee5c-d8b81f070162&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2a5e2f24-74ce-457a-ee5c-d8b81f070162&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"35e5a8d0-97b1-46b4-e912-b0f6d4a83cbe\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.543353722004,\n                \"lon\": 7.5857777470965,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=35e5a8d0-97b1-46b4-e912-b0f6d4a83cbe&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=35e5a8d0-97b1-46b4-e912-b0f6d4a83cbe&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"bda7ec21-40da-4f1e-ef03-39e22cbb3730\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.52372,\n                \"lon\": 6.638514,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=bda7ec21-40da-4f1e-ef03-39e22cbb3730&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=bda7ec21-40da-4f1e-ef03-39e22cbb3730&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"a2965d80-035d-44a6-eaab-eb4ff0bca885\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.18136,\n                \"lon\": 6.141012,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"c3664999-818b-4758-d5a9-027a73f98367\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a2965d80-035d-44a6-eaab-eb4ff0bca885&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=a2965d80-035d-44a6-eaab-eb4ff0bca885&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"2abdb679-6db0-4a0c-88c1-201951b6a6c5\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.309855431485,\n                \"lon\": 8.7782148171947,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"d36ea486-19c4-4ba7-e01a-84fba632220f\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2abdb679-6db0-4a0c-88c1-201951b6a6c5&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=2abdb679-6db0-4a0c-88c1-201951b6a6c5&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"ae49a30c-bca2-4112-c408-e906a03def00\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.998147,\n                \"lon\": 7.459931,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"d36ea486-19c4-4ba7-e01a-84fba632220f\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ae49a30c-bca2-4112-c408-e906a03def00&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=ae49a30c-bca2-4112-c408-e906a03def00&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"8dcca820-b920-49d9-b07c-6cdbaba8b4b8\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.216693,\n                \"lon\": 7.7905,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"d36ea486-19c4-4ba7-e01a-84fba632220f\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8dcca820-b920-49d9-b07c-6cdbaba8b4b8&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=8dcca820-b920-49d9-b07c-6cdbaba8b4b8&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"eb386dba-9c2e-456d-fd74-8678e18e9e9f\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.224270288066,\n                \"lon\": 8.8431740510066,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"d36ea486-19c4-4ba7-e01a-84fba632220f\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=eb386dba-9c2e-456d-fd74-8678e18e9e9f&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=eb386dba-9c2e-456d-fd74-8678e18e9e9f&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"fa8baf2c-86c7-47ab-c36c-362fede4c94c\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.060537110766,\n                \"lon\": 7.6199491212012,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"dbbff2b0-4ddd-4aef-eb71-b00c01d4763f\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fa8baf2c-86c7-47ab-c36c-362fede4c94c&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=fa8baf2c-86c7-47ab-c36c-362fede4c94c&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"c218f342-bf7b-416a-fb50-3f88f1661362\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.066830900048,\n                \"lon\": 8.3157823134926,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"ec740063-bf40-493b-dfad-4339b3303c7c\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c218f342-bf7b-416a-fb50-3f88f1661362&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=c218f342-bf7b-416a-fb50-3f88f1661362&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"6a27048d-25b9-46f0-bd3e-c7849d57b50f\",\n                \"last_reported\": 1732885902,\n                \"lat\": 47.333312631272,\n                \"lon\": 8.5348516840541,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"f756ea72-540f-483b-897f-5dc27dc0ba82\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6a27048d-25b9-46f0-bd3e-c7849d57b50f&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=6a27048d-25b9-46f0-bd3e-c7849d57b50f&start=1732885200&end=1732887000\"\n                }\n            },\n            {\n                \"bike_id\": \"3d9e8f09-b8ba-4786-98f2-c336c548e476\",\n                \"last_reported\": 1732885902,\n                \"lat\": 46.957045,\n                \"lon\": 7.444755,\n                \"is_reserved\": false,\n                \"is_disabled\": false,\n                \"vehicle_type_id\": \"fc2da109-7aab-4d28-8b9d-153bc7c535ff\",\n                \"current_range_meters\": 100000,\n                \"rental_uris\": {\n                    \"android\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3d9e8f09-b8ba-4786-98f2-c336c548e476&start=1732885200&end=1732887000\",\n                    \"ios\": \"https://www.carvelo.ch/applinks/booking?affiliateId=cbeee58d-7e63-4f6e-98d6-8775652dab89&instance=3d9e8f09-b8ba-4786-98f2-c336c548e476&start=1732885200&end=1732887000\"\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"3d36950c-21be-4f55-8f98-c63b56f02ed5"}],"id":"8649140e-c445-4a5e-9fe8-ad25ad42c757","description":"<p>Release date: April 5, 2022</p>\n<p>Implemented: August 25, 2023</p>\n","_postman_id":"8649140e-c445-4a5e-9fe8-ad25ad42c757","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{Auth Key}}"},{"key":"password","value":"{{Auth Pwd}}"}]},"isInherited":true,"source":{"_postman_id":"b826b5ce-c9b3-4eeb-9338-b7699f0b4880","id":"b826b5ce-c9b3-4eeb-9338-b7699f0b4880","name":"GBFS","type":"folder"}}}],"id":"b826b5ce-c9b3-4eeb-9338-b7699f0b4880","description":"<h3 id=\"purpose\">Purpose</h3>\n<p>Documentation for the General Bikeshare Feed Specification, a standardized data feed for shared mobility system availability.</p>\n<p><strong>Please note that GBFS is now hosted at</strong> <a href=\"https://github.com/MobilityData/gbfs\"><b>github.com/MobilityData/gbfs</b></a><strong>.</strong></p>\n<p>We provide 2 entrypoints to access the following gbfs availability data versions:</p>\n<ul>\n<li><p>Version 1: <a href=\"https://api.carvelo.ch/v1/gbfs/gbfs.json\">https://api.carvelo.ch/v1/gbfs/gbfs.json</a> (deprectated)</p>\n</li>\n<li><p>Version 2.3: <a href=\"https://api.carvelo.ch/v2/gbfs/gbfs.json\">https://api.carvelo.ch/v2/gbfs/gbfs.json</a></p>\n</li>\n</ul>\n<h3 id=\"authentication\">Authentication</h3>\n<p>Basic Authentication is required to access our gbfs data. For more information and credentials contact <a href=\"https://mailto:info@carvelo.ch\">info@carvelo.ch</a> by e-mail.</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{Auth Key}}"},{"key":"password","value":"{{Auth Pwd}}"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"fcc99eae-c52a-451d-a822-ef63e0ead67a","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"49928eaa-4784-42a6-b27a-71cc6efcf03f","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"b826b5ce-c9b3-4eeb-9338-b7699f0b4880"}],"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"password","value":"{{password}}"},{"key":"username","value":"{{username}}"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"tokenName","value":"<token-name>"}]}},"event":[{"listen":"prerequest","script":{"id":"4ac21ab6-502c-4c99-ae0e-9ee65baea5c1","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"c1794d7b-385a-405d-a6bb-c0c748e43723","type":"text/javascript","packages":{},"exec":["// Stores the tokens in collection variables\r","pm.collectionVariables.set(\"access_token\", pm.response.json().access_token);\r","pm.collectionVariables.set(\"refresh_token\", pm.response.json().refresh_token);"]}}],"variable":[{"key":"token","value":""},{"key":"access_token","value":""},{"key":"refresh_token","value":""},{"key":"userId","value":""},{"key":"bike1Id","value":"00969302-180d-487a-c962-6ed44af5471a"},{"key":"rentBegin","value":""},{"key":"rentEnd","value":""},{"key":"offerId","value":"6a43cdea-a871-42d0-b9db-43158a73eb44"},{"key":"rentId","value":"6a43cdea-a871-42d0-b9db-43158a73eb44"},{"key":"bike1Type","value":"98aac148-47b8-47df-a6e0-804a4da5f27e"},{"key":"host1Id","value":"9515c94a-2622-4693-9f6a-fa021f25b05c"},{"key":"paymentmethodId","value":""},{"key":"feedbackId","value":""},{"key":"api","value":"https://api.carvelo.ch"}]}