API Authentication
API requests must be authenticated with a user-specific key. See the API key management FAQ for details on managing your API keys.
Authentication is achieved by passing your API key along with the Authorization header in your API request.
Examples
curl
> curl -vk \
-H 'Content-Type: application/json' \
-H 'Authorization: API_KEY_HERE' \
-X GET 'https://www.appointment.one/api/v1/ping'
{"message":"success"}
python Requests
>>> import requests
>>> r = requests.get('https://www.appointment.one/api/v1/ping',
headers= {'Authorization': 'API_KEY_HERE'})
>>> print r.json()
{u'message': u'success'}
We're doing amazing things at Appointment.one. Experience simple scheduling without email tag or double booking.