Get Preprint Details

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

Get detailed information about a specific preprint including full abstract, review details, publication status, and author information.

Endpoint
https://app.myhealthnote.com/api/fhir/Dash/population/preprints/{id}
Request Examples

cURL

curl -X GET \
  "https://app.myhealthnote.com/api/fhir/Dash/population/preprints/{id}" \
  -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/{id}", {
    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/{id}",
    headers={
        "Authorization": "Bearer YOUR_ACCESS_TOKEN",
        "Accept": "application/json"
    }
)

print(response.json())
Parameters
Parameter Type Required Default Description
id string Yes - Preprint database ID or preprintId
Response Example
{
  "resourceType": "Bundle",
  "type": "searchset",
  "total": 1,
  "entry": [
    {
      "resource": {
        "resourceType": "EvidenceReport",
        "title": "Detailed Preprint",
        "abstract": "Full abstract text here...",
        "isPublished": true,
        "wordpressUrl": "https://example.com/post",
        "reviewCount": 8
      }
    }
  ]
}
Try It Out

Enter your API token to test this endpoint: