cURL
curl --request GET \
--url https://api.vambe.me/api/public/booking-url/{urlName}/treatmentsconst options = {method: 'GET'};
fetch('https://api.vambe.me/api/public/booking-url/{urlName}/treatments', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.vambe.me/api/public/booking-url/{urlName}/treatments"
response = requests.get(url)
print(response.text)Booking API
List treatments
GET
/
api
/
public
/
booking-url
/
{urlName}
/
treatments
cURL
curl --request GET \
--url https://api.vambe.me/api/public/booking-url/{urlName}/treatmentsconst options = {method: 'GET'};
fetch('https://api.vambe.me/api/public/booking-url/{urlName}/treatments', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.vambe.me/api/public/booking-url/{urlName}/treatments"
response = requests.get(url)
print(response.text)Path Parameters
Required string length:
3 - 50Response
200 - undefined
Was this page helpful?
⌘I
