Skip to main content
GET
/
med-link
/
registry
List registry
curl --request GET \
  --url https://api.eka.care/med-link/registry/ \
  --header 'Authorization: Bearer <token>'
{
  "ontologies": [
    {
      "name": "snomed",
      "versions": [
        "20250401_extended"
      ]
    },
    {
      "name": "loinc",
      "versions": [
        "v1.0"
      ]
    },
    {
      "name": "medication",
      "versions": [
        "v5.0"
      ]
    },
    {
      "name": "icd-10-cm",
      "versions": [
        "comprehend"
      ]
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://developer.eka.care/llms.txt

Use this file to discover all available pages before exploring further.

About this endpoint

GET /med-link/registry/ returns every ontology available for codification, along with the supported versions of each. Call it before linking to confirm the exact ontology and version values to send to Link Entity and Link Entities (Batch).

Response fields

FieldDescription
ontologies[]Available ontologies, each with its name and supported versions.
Use the ontology + version pairs from ontologies[] directly as the ontology and version fields in linking requests.

Authorizations

Authorization
string
header
required

Bearer access token issued by the Eka authorization flow. See Authorization.

Response

200 - application/json

The ontologies currently available for codification.

ontologies
object[]
required