Edvak Docs
HomeFHIR APICCDA API
HomeFHIR APICCDA API
LinkedIn
  1. APIs
  • Getting Started
    • Introduction
    • Authentication & Access
    • Errors
  • APIs
    • Generate Token
      POST
    • CCDA Retrieval
      GET
  • Legal & Compliance
    • API Terms of Use
  1. APIs

CCDA Retrieval

Developing
Sandbox
https://darwinapi.edvak.com
Sandbox
https://darwinapi.edvak.com
GET
https://darwinapi.edvak.com
/ccda/ccda/patient_data
Use the access token to retrieve CCDA documents.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params
patient_token
string 
required
Secure identifier used to fetch data for a specific patient.
Example:
FUV4BKA3evmAv9RDdQP5m
date
string 
optional
Specific date to retrieve data for (format: YYYY-MM-DD).
Example:
2025-04-18
start_date
string 
optional
Start of the date range for data retrieval (format: YYYY-MM-DD).
Example:
2025-01-20
end_date
string 
optional
End of the date range for data retrieval (format: YYYY-MM-DD).
Example:
2025-04-18
Header Params
Content-Type
string 
required
Example:
application/x-www-form-urlencoded

Responses

🟢200Success
application/xml
Trimmed Clinical Document (CCD Summary) — This schema includes only the document header and patient demographic information from a full Continuity of Care Document (CCD), following HL7 CDA standards.
Body
realmCode
string 
required
typeId
string 
required
templateId
string 
required
id
string 
required
code
string 
required
title
string 
required
effectiveTime
string 
required
confidentialityCode
string 
required
languageCode
string 
required
recordTarget
object 
required
patientRole
object 
required
Example
<?xml version="1.0" encoding="UTF-8"?>
<ClinicalDocument xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="urn:hl7-org:v3" xmlns:cda="urn:hl7-org:v3" xmlns:sdtc="urn:hl7-org:sdtc">
  <realmCode code="US"/>
  <typeId root="2.16.840.1.113883.1.3" extension="POCD_HD000040"/>
  <templateId root="2.16.840.1.113883.10.20.22.1.1" extension="2015-08-01"/>
  <id root="2.16.840.1.113883.3.10200.3131239480.1737672885.247091987" extension="3223195886.2904850885.027397919"/>
  <code codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" code="34133-9" displayName="Summarization of Episode Note"/>
  <title>Continuity of Care Document</title>
  <effectiveTime value="20250515070517+0000"/>
  <confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" displayName="Normal"/>
  <languageCode code="en-US"/>
  <recordTarget>
    <patientRole>
      <id root="2.16.840.1.113883.3.10200.3131239480.1737672885.247091987" extension="M3PK1HBA1194"/>
      <addr use="HP">
        <streetAddressLine>9880 Bernard Corner Knoll</streetAddressLine>
        <city>East Heide</city>
        <state>NM</state>
        <postalCode>88099</postalCode>
        <country>US</country>
      </addr>
      <telecom value="tel:+1(682)-763-7695" use="MC"/>
      <telecom value="mailto:[email protected]"/>
      <patient>
        <name use="L">
          <given>Clara</given>
          <family>Frenchh</family>
        </name>
        <administrativeGenderCode code="F" displayName="Female" codeSystem="2.16.840.1.113883.5.1"/>
        <birthTime value="19680812"/>
        <raceCode displayName="American Indian or Alaska Native" code="1002-5" codeSystem="2.16.840.1.113883.6.238"/>
        <languageCommunication>
          <languageCode code="en-US"/>
          <preferenceInd value="true"/>
        </languageCommunication>
      </patient>
    </patientRole>
  </recordTarget>
</ClinicalDocument>
Previous
Generate Token
Next
API Terms of Use
Built with