Search Preprints

https://app.myhealthnote.com/api/fhir/Dash/population/preprints/search
POPULATION API GET ACTIVE 100/hour v1.0.0
Description

Advanced search across preprints with multiple filters including study design, review counts, publication status, and content requirements.

Endpoint
https://app.myhealthnote.com/api/fhir/Dash/population/preprints/search
Request Examples

cURL

curl -X GET \
  "https://app.myhealthnote.com/api/fhir/Dash/population/preprints/search" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
  -H "Accept: application/json"

JavaScript/Node.js

const response = await fetch("https://app.myhealthnote.com/api/fhir/Dash/population/preprints/search", {
    headers: {
        "Authorization": "Bearer YOUR_ACCESS_TOKEN",
        "Accept": "application/json"
    }
});

const data = await response.json();
console.log(data);

Python

import requests

response = requests.get(
    "https://app.myhealthnote.com/api/fhir/Dash/population/preprints/search",
    headers={
        "Authorization": "Bearer YOUR_ACCESS_TOKEN",
        "Accept": "application/json"
    }
)

print(response.json())
Parameters
Parameter Type Required Default Description
q string No - Search query for title, abstract, keywords
studyDesign string No - Filter by study design
publishedOnly boolean No false Only published preprints
minReviews integer No - Minimum community reviews
hasPatientConsent boolean No - Require patient consent
Response Example
{
  "resourceType": "Bundle",
  "type": "searchset",
  "total": 15,
  "entry": [
    {
      "resource": {
        "resourceType": "EvidenceReport",
        "title": "Search Result Preprint",
        "relevanceScore": 85,
        "reviewCount": 3
      }
    }
  ]
}
Try It Out

Enter your API token to test this endpoint: