Evidence First Search
API for Healthcare
Retrieve accurate answers from authoritative medical sources like medical guidelines, medical journals, and drug databases, scalable and easy to implement.
Privacy by design & Accuracy first: cited answers.
Evidence Grounded Search
Returns accurate answers with transparent citations to trusted medical sources.
Privacy & Security by Design
End to end encryption, no data retention by default, and optional data residency.
Low Latency by Default
Snappy responses with smart caching and optimized retrieval for peak performance.
Developer Friendly Integration
Clean REST API, clear schemas, and SDKs for popular languages and frameworks.
Built to Scale
Global availability with automatic scaling and high uptime for sustained demand.
Agentic AI retrieval
Agents that reason across multiple trusted sources like FDA, EMA, ESC, PMC to generate state of the art answers.
Simple Integration
Get started in minutes with our intuitive REST API and SDKs for Python and JavaScript, built for fast, reliable search with precise results.
Pricing & Access
Pay as you go, token based billing. Contact us to request your API key.
How it works
Request access
Reach out to obtain your API key and endpoint.
Install the SDK
Use pip or npm to add the DR. INFO client.
Initialize the client
Configure the SDK with your API key and endpoint.
Start searching
Send a query and receive grounded results with transparent citations.
Example Code
Python implementation example
# Quick Start
pip install drinfo
import requests, json
API_KEY = "your-api-key"
BASE_URL = "http://localhost:8001"
headers = {
"authorization": f"Bearer {API_KEY}",
"Content-Type": "application/json"
}
# Send request
response = requests.post(
f"{BASE_URL}/chat/stream",
headers=headers,
json={
"message": "Hello, how can you help me?",
"conversationId": "conv_123"
}
)
# Process response
for line in response.iter_lines():
if line.startswith(b'data: '):
print(json.loads(line[6:]).get('content', ''), end='')
Ready to Get Started?
For technical documentation, integration examples, and detailed API specifications, visit our documentation portal or contact our support team.