Overview
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
cURL --data '{"username": "yourusername", "password": "yourpassword"}' --header "Content-Type: application/x-www-form-urlencoded" --request POST https://healthharbor.co/api/v0/auth/token
url = 'https://healthharbor.co/api/v0/auth/token'
payload = {
"username": "yourusername",
"password": "yourpassword"
}
headers = {
"Content-Type": "application/x-www-form-urlencoded"
}
response = request.post(
url=url,
data=payload,
headers=headers
)
{
"access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c",
"token_type": "bearer"
}
curl --header "Authorization: Bearer youraccesstoken" --request GET https://healthharbor.co/api/v0/dental/inquiries
url = 'https://healthharbor.co/api/v0/dental/inquiries'
headers = {
"Authorization": f"Bearer youraccesstoken"
}
request = request.get(
url=url,
headers=headers
)
curl -u "yourusername:yourpassword" --request GET https://healthharbor.co/api/v0/dental/inquiries
url = 'https://healthharbor.co/api/v0/dental/inquiries'
request = request.get(
url=url,
auth=("yourusername", "yourpassword")
)