OralHealth API Documentation
RESTful API for accessing oral health recommendations and evidence.
OralHealth API
RESTful API for accessing oral health recommendations and evidence-based data
v1.0
JSON
Rate Limited
Quick Start
All API endpoints return JSON responses. No authentication required for public endpoints.
curl -X GET "oralhealth.xeradb.com/api/recommendations/?q=fluoride&limit=5"
Recommendations
Endpoint: /api/recommendations/
Search and filter oral health recommendations.
Parameters:
q- Search querycountry- Country code (๐ฌ๐ง UK, ๐บ๐ธ US, ๐จ๐ฆ CA, ๐ฆ๐บ AU, ๐ณ๐ฟ NZ)topic- Topic IDstrength- Recommendation strength IDevidence_quality- Evidence quality IDpage- Page number (default: 1)limit- Results per page (max: 100)
Guidelines
Endpoint: /api/guidelines/
Access clinical practice guidelines.
Parameters:
q- Search querycountry- Country code (๐ฌ๐ง UK, ๐บ๐ธ US, ๐จ๐ฆ CA, ๐ฆ๐บ AU, ๐ณ๐ฟ NZ)page- Page number (default: 1)limit- Results per page (max: 100)
Cochrane Reviews
Endpoint: /api/cochrane/
Access Cochrane systematic reviews data.
Parameters:
q- Search querypage- Page number (default: 1)limit- Results per page (max: 100)
Statistics
Endpoint: /api/stats/
Get database statistics and counts.
Returns:
- Total recommendations by country ๐
- Guidelines by country ๐
- Cochrane review counts
- Topic distributions
Response Format
All API responses follow this consistent format:
{
"success": true,
"data": [...],
"pagination": {
"page": 1,
"limit": 20,
"total_pages": 5,
"total_results": 95,
"has_next": true,
"has_previous": false
},
"filters_applied": {
"query": "fluoride",
"country": "๐ฌ๐ง UK"
}
}
Rate Limits
- No authentication required for public endpoints
- Caching: Responses cached for 15-30 minutes
- Pagination: Maximum 100 results per request
- Fair use: Please don't abuse the API
Examples
Search fluoride recommendations:
/api/recommendations/?q=fluoride&country=UK ๐ฌ๐ง
Get UK guidelines:
/api/guidelines/?country=UK ๐ฌ๐ง
Paginated results:
/api/recommendations/?page=2&limit=50
Get database stats:
/api/stats/
API Tester
oralhealth.xeradb.com