Data source: ClinicalTrials.gov, OpenFDA, WHO GHO
https://context.gnist.ai/rest/health-research/
AuthenticationAll requests require a Gnist-API-Key header (or api_key query parameter).
Free tier: 100 calls/day. Get your API key.
Tools (3)
search_health_dataSearch across clinical trials, drug safety, biomedical literature, drug interactions, and global health indicators.
Queries five health data sources in parallel:
- ClinicalTrials.gov — active and completed clinical trials worldwide
- OpenFDA — drug adverse events and drug label information
- WHO GHO — global health indicators (mortality, disease burden, risk factors)
- PubMed — biomedical research articles and citations (36M+ records)
- Interaksjoner.no — Norwegian drug interaction severity checks
Returns clinical trials, adverse events, drug labels, health indicators,
PubMed literature, and drug interaction data for the given topic.
Examples:
search_health_data(query="aspirin")
search_health_data(query="diabetes", limit=5)
search_health_data(query="COVID-19 vaccine")
| Parameter | Type | Required | Description |
|---|---|---|---|
query | string | required | Health topic, drug name, condition, or disease to search. |
limit | integer | optional | Max results per source. (default: 10) |
{
"query": "example"
}list_health_sourcesList all health research data sources, their coverage, and data types.
Shows which clinical trial registries, drug safety databases, and global
health observatories are searched during a health research query.
Examples:
list_health_sources()
{
"query": "example"
}report_feedbackReport a bug, feature request, or general feedback for this data source.
Use this when something doesn't work as expected, when you'd like
a new feature, or when you have suggestions for improvement.
Args:
feedback: Describe the issue or suggestion.
feedback_type: One of 'bug', 'feature_request', or 'general'.
| Parameter | Type | Required | Description |
|---|---|---|---|
feedback | string | required | |
feedback_type | string | optional | (default: "general") |
{
"feedback": "example"
}Quick Start
curl -X POST "https://context.gnist.ai/rest/health-research/search_health_data" \
-H "Content-Type: application/json" \
-H "Gnist-API-Key: YOUR_API_KEY" \
-d '{"query": "example"}'
import httpx
resp = httpx.post(
"https://context.gnist.ai/rest/health-research/search_health_data",
headers={"Gnist-API-Key": "YOUR_API_KEY"},
json={
"query": "example"
},
)
print(resp.json())