Retrieving Chemo Regimen Agents GET

The DynaMed/DynaMedex GET /v2/content/chemo-regimens/agents endpoint returns the list of chemotherapy agents that have associated chemo regimen templates. Each agent entry includes the agent's "id" and "name". The agent "id" can be used with the chemo regimen agent templates endpoint to retrieve the regimen templates that use that agent, and the agent "name" can be used with the templates by-agent-name endpoint to do the same by name instead of ID.

Search for Chemo Regimen Agents

To Retrieve the List of Chemo Regimen Agents (example):

Gather the following information for the request:

Request

GET https://apis.ebsco.com/medsapi-dynamed/v2/content/chemo-regimens/agents

Response

{
    "_metadata": {
        "totalItems": 2,
        "links": [
            {
                "rel": "self",
                "href": "https://apis.ebsco.com/medsapi-dynamed/v2/content/chemo-regimens/agents"
            }
        ]
    },
    "items": [
        {
            "id": "3049fdb7-82c0-40a4-a902-0bd8da96ad8f",
            "name": "abemaciclib"
        },
        {
            "id": "6c1a5e2f-9b3d-4f0a-8c7e-1d2b3a4f5e6d",
            "name": "fulvestrant"
        }
    ]
}

Error Response Codes

The DynaMed chemo regimen agents endpoint can return one of the error response codes.


Did this page help you?