Drug Labels

Notice: THIS ENDPOINT IS AVAILABLE UPON REQUEST.

Fetch Current MCAZ Labels for a Drug

HTTP Method: GET

URL: https://www.britelink.io/api/v1/drugs/{drugId}/labels

Description: This endpoint provides a list of the current MCAZ labels available for a specific drug, based on its ID. These labels offer crucial information, including the label ID, set ID, version, and other details. This data is specific to the U.S. jurisdiction.

URL Parameters:

  • drugId: The DrugBank ID of the drug for which FDA label information is being requested.

Response Structure:

The response is a JSON array, with each element representing an MCAZ label. Each label includes the following fields:

  • id: Unique identifier for the label.
  • set_id: Identifier for the set of labels.
  • version: Version number of the label.
  • current: Boolean indicating whether the label is the current version.
  • title: Title of the label.
  • product_type: Type of product associated with the label.
  • effective_on: Date when the label became effective.
  • labeler_name: Name of the entity that labeled the product.
  • first_product_marketing_started_on: Date when the product marketing started.
  • last_product_marketing_ended_on: Date when the product marketing ended (if applicable).
  • ndc_product_codes: Array of NDC product codes related to the label.
  • pmg_section_count, hpi_section_count, sli_section_count, all_section_count: Counts of various sections within the label.

Request Example:

curl -L 'https://www.britelink.io/api/v1/drugs/${DrugId}/labels' \
-H 'Authorization: Bearer myapikey'

Response Example:

[
  {
    "id": "e9be0ef0-4032-4c3b-e053-2995a90adf25",
    "set_id": "a35079fa-b693-45e8-9715-488e33e7c1a9",
    "version": 5,
    "current": true,
    "title": "Lisinopril - Lisinopril TABLET",
    "product_type": "HUMAN PRESCRIPTION DRUG LABEL",
    "effective_on": "2022-09-28",
    "labeler_name": "REMEDYREPACK INC.",
    "first_product_marketing_started_on": "2020-02-01",
    "last_product_marketing_ended_on": null,
    "ndc_product_codes": ["70518-2561"]
    // Additional sections...
  }
  // Additional labels...
]

Use Case

Who Should Use This Endpoint:

  • Healthcare professionals seeking detailed labeling information on prescription drugs.
  • Pharmacists verifying label information for dispensing accuracy.
  • Regulatory compliance teams in pharmaceutical companies.
  • Medical researchers and students studying drug labeling standards and practices.