Searching for Article Metadata GET (DEPR)

This endpoint is deprecated.

The DynaMed API GET /v1/articles endpoint returns metadata for articles published within a specified date range. The updatedAt timestamp is not necessarily related to editors updating the article with new information. It may represent the last time the article was reprocessed for delivery.

This endpoint is deprecated. Instead, please use the /v2/content/articles endpoint.

Basic Search for Article Metadata

To Get Article Metadata for Updated Articles (example):

Gather the following information for the request:

Request

GET https://apis.ebsco.com/medsapi-dynamed/v1/articles?updatedSince=2022-09-14&updatedBefore=2023-05-09

The request above is for articles that have been republished between September 14, 2022 and May 9, 2023.

Response

Download
{
  "_metadata": {
    "totalItems": 711,
    "totalPages": 8,
    "page": 1,
    "links": [
      {
        "rel": "self",
        "href": "https://apis.ebsco.com/medsapi-dynamed/v1/articles?updatedSince=2022-09-14T18:21:54.345Z&updatedBefore=2023-05-09&page=1"
      },
      {
        "rel": "next",
        "href": "https://apis.ebsco.com/medsapi-dynamed/v1/articles?updatedSince=2022-09-14T18:21:54.345Z&updatedBefore=2023-05-09&page=2"
      },
      {
        "rel": "last",
        "href": "https://apis.ebsco.com/medsapi-dynamed/v1/articles?updatedSince=2022-09-14T18:21:54.345Z&updatedBefore=2023-05-09&page=8"
      }
    ]
  },
  "items": [
    {
      "id": "t232776",
      "slug": "/drug-monograph/linezolid",
      "createdAt": "2021-12-17T22:50:42.511Z",
      "updatedAt": "2023-05-09T23:59:27.147Z",
      "title": "Linezolid",
      "description": "this topic provides overviews of mechanisms of action, spectrum of activity..."
      "pubType": {
        "id": "drug"
      }
    },
    ...
  ]
} 

Dates

The updatedAt parameter indicates the last time the page was published. Dates must conform to ISO 8601. An example date is 2021-12-17T22:50:42.511Z or 2021-12-17. If neither updatedSince or updatedBefore are provided, then all updates will be returned. If no updatedBefore is supplied, then all dates from the updatedSince until today's date will be returned. If no updatedSince is provided, then all dates up to the updatedBefore will be returned.

Paging

Up to 100 items may be returned in a request. If more than that are returned, the totalItems will indicate how many items there are to retrieve. The page parameter in the response indicates the page that was returned. To get the next page of items, add one to the page. Each page has 100 items.

Error Response Codes

The DynaMed searching for article metadata endpoint can return one of the error response codes.