API Documentation – Tiny Health
Tiny Health API and Webhook Documentation and Version Log
This documentation provides information about the Tiny Health API, webhooks, and the versioning of the API.
Overview
The Tiny Health API allows developers to access various functionalities related to patient health data management and other integrations. This document outlines the endpoints, their usage, and examples.
Authentication
To use the Tiny Health API, you must authenticate your requests using API keys. Below is an example of how to implement authentication:
curl -H "Authorization: Bearer YOUR_API_KEY" https://api.tinyhealth.com/v1/resource
Endpoints
1. Get Patient Data
Endpoint: /patients/{id}
Method: GET
Retrieve the data of a specific patient.
2. Update Patient Data
Endpoint: /patients/{id}
Method: PUT
Update the information of a specific patient.
3. List All Patients
Endpoint: /patients
Method: GET
Get a list of all patients registered in the system.
Webhooks
Webhooks allow you to receive real-time notifications about significant events. You can subscribe to various events such as patient data updates.
Versioning
The API uses semantic versioning. Make sure to check the version in use and update your implementations accordingly.
Conclusion
For further details, please refer to the official API documentation on the Tiny Health website.