Introduction to TabibDent API
TabibDent provides a comprehensive REST API that enables you to integrate our dental practice management features into your applications. This guide will help you get started with the API and explore its capabilities.
Prerequisites
- A TabibDent account with API access enabled
- Basic understanding of REST APIs and HTTP methods
- Your API key (available in your account settings)
Authentication
All API requests must be authenticated using your API key. Include it in the Authorization header as follows:
curl -X GET "https://api.tabibdent.com/v1/patients" \ -H "Authorization: Bearer YOUR_API_KEY"
Base URL
All API requests should be made to:
https://api.tabibdent.com/v1/
Rate Limiting
API requests are limited to:
- 1000 requests per hour for standard accounts
- 5000 requests per hour for premium accounts
Quick Example
Heres a simple example of creating a new patient record:
curl -X POST "https://api.tabibdent.com/v1/patients" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "firstName": "John", "lastName": "Doe", "email": "john.doe@example.com", "phone": "+1234567890" }'