Retrieving Chemo Regimen Templates by Disease ID GET

The DynaMed/DynaMedex GET /v2/chemo-regimens/diseases/{diseaseId}/templates endpoint returns the chemo regimen templates for a specific disease. The "diseaseId" path parameter is the ID of the disease, which can be obtained from the chemo regimen diseases endpoint. Each returned template includes the regimen title, the disease it treats, the indications for its use, its published date, and the agents used in the regimen.

Basic Search for Chemo Regimen Templates by Disease ID

To Retrieve Chemo Regimen Templates for a Given Disease ID (example):

Gather the following information for the request:

  • An access token. Please see Using the Client Credentials Grant for further information.
  • A diseaseId. This is the ID of the disease, which can be found using the chemo regimen diseases endpoint.

Request

GET https://apis.ebsco.com/medsapi-dynamed/v2/content/chemo-regimens/diseases/3e0ca2a4-2ab5-4c3c-b016-f0cb6dd4efb0/templates

Response

{
    "_metadata": {
        "totalItems": 1,
        "links": [
            {
                "rel": "self",
                "href": "https://apis.ebsco.com/medsapi-dynamed/v2/content/chemo-regimens/diseases/3e0ca2a4-2ab5-4c3c-b016-f0cb6dd4efb0/templates"
            }
        ]
    },
    "items": [
        {
            "templateId": "BRS201",
            "regimenTitle": "Cytarabine/Daunorubicin (7+3)",
            "courseTitle": null,
            "diseaseId": "3e0ca2a4-2ab5-4c3c-b016-f0cb6dd4efb0",
            "diseaseName": "Acute Myeloid Leukemia",
            "indicationSentences": [
                "Induction therapy for newly diagnosed Acute Myeloid Leukemia"
            ],
            "publishedDate": "2024-03-18",
            "agents": [
                {
                    "id": "8f2c4a1b-3d5e-4a6f-9b7c-2e1d4f5a6b7c",
                    "name": "cytarabine"
                },
                {
                    "id": "1a2b3c4d-5e6f-4a7b-8c9d-0e1f2a3b4c5d",
                    "name": "daunorubicin"
                }
            ]
        }
    ]
}

Error Response Codes

The DynaMed chemo regimen templates by disease ID endpoint can return one of the error response codes.


Did this page help you?