Description
Get comprehensive statistics about the preprint repository including counts, publication rates, study design breakdowns, and review metrics.
Endpoint
https://app.myhealthnote.com/api/fhir/Dash/population/preprints/statistics
Request Examples
cURL
curl -X GET \
"https://app.myhealthnote.com/api/fhir/Dash/population/preprints/statistics" \
-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/statistics", {
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/statistics",
headers={
"Authorization": "Bearer YOUR_ACCESS_TOKEN",
"Accept": "application/json"
}
)
print(response.json())
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
status |
string | No | archived | Preprint status filter |
isPublic |
boolean | No | true | Only include public preprints |
Response Example
{
"resourceType": "Bundle",
"type": "searchset",
"total": 1,
"entry": [
{
"resource": {
"resourceType": "Observation",
"totalPreprints": 150,
"publishedPreprints": 75,
"totalReviews": 1200
}
}
]
}
Try It Out
Enter your API token to test this endpoint: