Loading...
Build powerful integrations with our REST API, webhooks, and real-time WebSocket connections. Access inquiries, bookings, analytics, and more.
Go to your dashboard and create an API key with the scopes you need.
Use your API key to authenticate requests to our API.
curl -X GET "https://api.swissprivate-schools.ch/v1/inquiries" \
-H "Authorization: Bearer sps_live_sk_your_api_key" \
-H "Content-Type: application/json"Explore the full API reference to see all available endpoints and features.
import fetch from 'node-fetch';
const response = await fetch('https://api.swissprivate-schools.ch/v1/inquiries', {
headers: {
'Authorization': 'Bearer sps_live_sk_your_api_key',
'Content-Type': 'application/json',
},
});
const { data } = await response.json();
console.log(data);import requests
response = requests.get(
'https://api.swissprivate-schools.ch/v1/inquiries',
headers={
'Authorization': 'Bearer sps_live_sk_your_api_key',
'Content-Type': 'application/json',
}
)
data = response.json()['data']
print(data)