POST api/DrugDiseaseIndicationsByDrug

Returns indications that can be treated using a specific drug. Identifies drugs that are excluded due to optional input provided by user. Returns all specific products that match or are related to the drug identifier(s) entered in the request, categorized by the Drug Identifier, and clearly identifies which drugs are associated to which indications.


Request Information

URI Parameters

None.

Body Parameters

DrugDiseaseIndicationsByDrugRequest
NameDescriptionTypeAdditional information
LabelStatus Indicates whether to include on-label or off-label indications for the drug in the response. Default is both. LabelStatusEnum

None.

DrugIdentifiers A collection of drug identifiers to retrieve the contraindication information for. Collection of ADRDrugIdentifier

Required

OutputDiagnosisCodeType Used to select what type of diagnosis codes should be returned in the response. If no value is included in the request, then the method returns GSTerm codes. ConditionIdentifierEnum

None.

ReturnExclusions Flag indicating whether to include product exclusions in the response. boolean

None.

FilterPreferences All warnings, drugs, indications, classifications, etc., for each supplied identifier is filtered out of the response. FilterPreferences

None.

DateOfBirth Used to filter the response based on a calculated age. API converts Date of Birth (DOB) into age and then matches to an age group. date

None.

Gender Used to filter based on gender. Default is both. GenderEnum

None.

AccessToken Temporary access token from the GSDD Auth API. Used to validate your license.

Note: Access tokens are temporary and may be invalidated early for various reasons, including—but not limited to—site maintenance and security updates. If a token is invalidated prematurely, simply request new tokens via the AccessToken method in the GSDD Auth API. This is a rather rare occurrence, but should be planned for and handled by the consuming application.
string

Required

Request Formats

application/json, text/json

Sample:
{
  "LabelStatus": "OnLabel",
  "DrugIdentifiers": [
    {
      "IdType": "NDC11",
      "Id": "12345-6789-01"
    },
    {
      "IdType": "NDC11",
      "Id": "12345-6789-02"
    }
  ],
  "OutputDiagnosisCodeType": "SNOMEDCT",
  "ReturnExclusions": true,
  "FilterPreferences": {
    "Patient": [
      {
        "IdType": "IngredientId",
        "Id": "3"
      },
      {
        "IdType": "IngredientId",
        "Id": "4"
      }
    ],
    "Physician": [
      {
        "IdType": "IngredientId",
        "Id": "5"
      },
      {
        "IdType": "IngredientId",
        "Id": "6"
      }
    ]
  },
  "DateOfBirth": "2024-05-18",
  "Gender": "Female",
  "AccessToken": "T25lX0hhcHB5X0FuZF9TYXRpc2ZpZWRfR1NERF9DdXN0b21lcl9TYW1wbGVfQWNjZXNzVG9rZW4="
}

Response Information

Resource Description

DrugDiseaseIndicationsByDrugResponse
NameDescriptionTypeAdditional information
DrugIndications A collection of indications for each requested drug. Collection of DrugDiseaseDrugIndicationDetail

None.

Response Formats

application/json, text/json

Sample:
{
  "DrugIndications": [
    {
      "DrugInfo": {
        "DrugId": {
          "IdType": "NDC11",
          "Id": "12345-6789-01"
        },
        "Name": "Sample Name text.",
        "LevelsOfEvidence": [
          {
            "Recommended": true,
            "StrengthOfRecommendation": "EquivocalWeakAgainst",
            "Rating": "VeryLow",
            "ErrorMessage": "Sample ErrorMessage text."
          },
          {
            "Recommended": true,
            "StrengthOfRecommendation": "EquivocalWeakAgainst",
            "Rating": "VeryLow",
            "ErrorMessage": "Sample ErrorMessage text."
          }
        ],
        "Message": "Sample Message text."
      },
      "OnLabelIndications": [
        {
          "BoxedWarning": true,
          "Condition": {
            "ConditionId": {
              "IdType": "ICD10",
              "Id": "123ABC2"
            },
            "Description": "Sample Description text.",
            "InfoMessage": "Sample InfoMessage text.",
            "LevelsOfEvidence": [
              {
                "Recommended": true,
                "StrengthOfRecommendation": "EquivocalWeakAgainst",
                "Rating": "VeryLow",
                "ErrorMessage": "Sample ErrorMessage text."
              },
              {
                "Recommended": true,
                "StrengthOfRecommendation": "EquivocalWeakAgainst",
                "Rating": "VeryLow",
                "ErrorMessage": "Sample ErrorMessage text."
              }
            ]
          },
          "MonographSectionId": 3,
          "AgeBands": [
            {
              "Name": "Sample Name text.",
              "Gender": "Female"
            },
            {
              "Name": "Sample Name text.",
              "Gender": "Female"
            }
          ],
          "Message": "Sample Message text."
        },
        {
          "BoxedWarning": true,
          "Condition": {
            "ConditionId": {
              "IdType": "ICD10",
              "Id": "123ABC4"
            },
            "Description": "Sample Description text.",
            "InfoMessage": "Sample InfoMessage text.",
            "LevelsOfEvidence": [
              {
                "Recommended": true,
                "StrengthOfRecommendation": "EquivocalWeakAgainst",
                "Rating": "VeryLow",
                "ErrorMessage": "Sample ErrorMessage text."
              },
              {
                "Recommended": true,
                "StrengthOfRecommendation": "EquivocalWeakAgainst",
                "Rating": "VeryLow",
                "ErrorMessage": "Sample ErrorMessage text."
              }
            ]
          },
          "MonographSectionId": 5,
          "AgeBands": [
            {
              "Name": "Sample Name text.",
              "Gender": "Female"
            },
            {
              "Name": "Sample Name text.",
              "Gender": "Female"
            }
          ],
          "Message": "Sample Message text."
        }
      ],
      "OffLabelIndications": [
        {
          "BoxedWarning": true,
          "Condition": {
            "ConditionId": {
              "IdType": "ICD10",
              "Id": "123ABC6"
            },
            "Description": "Sample Description text.",
            "InfoMessage": "Sample InfoMessage text.",
            "LevelsOfEvidence": [
              {
                "Recommended": true,
                "StrengthOfRecommendation": "EquivocalWeakAgainst",
                "Rating": "VeryLow",
                "ErrorMessage": "Sample ErrorMessage text."
              },
              {
                "Recommended": true,
                "StrengthOfRecommendation": "EquivocalWeakAgainst",
                "Rating": "VeryLow",
                "ErrorMessage": "Sample ErrorMessage text."
              }
            ]
          },
          "MonographSectionId": 7,
          "AgeBands": [
            {
              "Name": "Sample Name text.",
              "Gender": "Female"
            },
            {
              "Name": "Sample Name text.",
              "Gender": "Female"
            }
          ],
          "Message": "Sample Message text."
        },
        {
          "BoxedWarning": true,
          "Condition": {
            "ConditionId": {
              "IdType": "ICD10",
              "Id": "123ABC8"
            },
            "Description": "Sample Description text.",
            "InfoMessage": "Sample InfoMessage text.",
            "LevelsOfEvidence": [
              {
                "Recommended": true,
                "StrengthOfRecommendation": "EquivocalWeakAgainst",
                "Rating": "VeryLow",
                "ErrorMessage": "Sample ErrorMessage text."
              },
              {
                "Recommended": true,
                "StrengthOfRecommendation": "EquivocalWeakAgainst",
                "Rating": "VeryLow",
                "ErrorMessage": "Sample ErrorMessage text."
              }
            ]
          },
          "MonographSectionId": 9,
          "AgeBands": [
            {
              "Name": "Sample Name text.",
              "Gender": "Female"
            },
            {
              "Name": "Sample Name text.",
              "Gender": "Female"
            }
          ],
          "Message": "Sample Message text."
        }
      ],
      "AgeExclusions": [
        {
          "BoxedWarning": true,
          "Condition": {
            "ConditionId": {
              "IdType": "ICD10",
              "Id": "123ABC10"
            },
            "Description": "Sample Description text.",
            "InfoMessage": "Sample InfoMessage text.",
            "LevelsOfEvidence": [
              {
                "Recommended": true,
                "StrengthOfRecommendation": "EquivocalWeakAgainst",
                "Rating": "VeryLow",
                "ErrorMessage": "Sample ErrorMessage text."
              },
              {
                "Recommended": true,
                "StrengthOfRecommendation": "EquivocalWeakAgainst",
                "Rating": "VeryLow",
                "ErrorMessage": "Sample ErrorMessage text."
              }
            ]
          },
          "MonographSectionId": 11,
          "AgeBands": [
            {
              "Name": "Sample Name text.",
              "Gender": "Female"
            },
            {
              "Name": "Sample Name text.",
              "Gender": "Female"
            }
          ],
          "Message": "Sample Message text."
        },
        {
          "BoxedWarning": true,
          "Condition": {
            "ConditionId": {
              "IdType": "ICD10",
              "Id": "123ABC12"
            },
            "Description": "Sample Description text.",
            "InfoMessage": "Sample InfoMessage text.",
            "LevelsOfEvidence": [
              {
                "Recommended": true,
                "StrengthOfRecommendation": "EquivocalWeakAgainst",
                "Rating": "VeryLow",
                "ErrorMessage": "Sample ErrorMessage text."
              },
              {
                "Recommended": true,
                "StrengthOfRecommendation": "EquivocalWeakAgainst",
                "Rating": "VeryLow",
                "ErrorMessage": "Sample ErrorMessage text."
              }
            ]
          },
          "MonographSectionId": 13,
          "AgeBands": [
            {
              "Name": "Sample Name text.",
              "Gender": "Female"
            },
            {
              "Name": "Sample Name text.",
              "Gender": "Female"
            }
          ],
          "Message": "Sample Message text."
        }
      ],
      "GenderExclusions": [
        {
          "BoxedWarning": true,
          "Condition": {
            "ConditionId": {
              "IdType": "ICD10",
              "Id": "123ABC14"
            },
            "Description": "Sample Description text.",
            "InfoMessage": "Sample InfoMessage text.",
            "LevelsOfEvidence": [
              {
                "Recommended": true,
                "StrengthOfRecommendation": "EquivocalWeakAgainst",
                "Rating": "VeryLow",
                "ErrorMessage": "Sample ErrorMessage text."
              },
              {
                "Recommended": true,
                "StrengthOfRecommendation": "EquivocalWeakAgainst",
                "Rating": "VeryLow",
                "ErrorMessage": "Sample ErrorMessage text."
              }
            ]
          },
          "MonographSectionId": 15,
          "AgeBands": [
            {
              "Name": "Sample Name text.",
              "Gender": "Female"
            },
            {
              "Name": "Sample Name text.",
              "Gender": "Female"
            }
          ],
          "Message": "Sample Message text."
        },
        {
          "BoxedWarning": true,
          "Condition": {
            "ConditionId": {
              "IdType": "ICD10",
              "Id": "123ABC16"
            },
            "Description": "Sample Description text.",
            "InfoMessage": "Sample InfoMessage text.",
            "LevelsOfEvidence": [
              {
                "Recommended": true,
                "StrengthOfRecommendation": "EquivocalWeakAgainst",
                "Rating": "VeryLow",
                "ErrorMessage": "Sample ErrorMessage text."
              },
              {
                "Recommended": true,
                "StrengthOfRecommendation": "EquivocalWeakAgainst",
                "Rating": "VeryLow",
                "ErrorMessage": "Sample ErrorMessage text."
              }
            ]
          },
          "MonographSectionId": 17,
          "AgeBands": [
            {
              "Name": "Sample Name text.",
              "Gender": "Female"
            },
            {
              "Name": "Sample Name text.",
              "Gender": "Female"
            }
          ],
          "Message": "Sample Message text."
        }
      ],
      "Message": "Sample Message text."
    },
    {
      "DrugInfo": {
        "DrugId": {
          "IdType": "NDC11",
          "Id": "12345-6789-00"
        },
        "Name": "Sample Name text.",
        "LevelsOfEvidence": [
          {
            "Recommended": true,
            "StrengthOfRecommendation": "EquivocalWeakAgainst",
            "Rating": "VeryLow",
            "ErrorMessage": "Sample ErrorMessage text."
          },
          {
            "Recommended": true,
            "StrengthOfRecommendation": "EquivocalWeakAgainst",
            "Rating": "VeryLow",
            "ErrorMessage": "Sample ErrorMessage text."
          }
        ],
        "Message": "Sample Message text."
      },
      "OnLabelIndications": [
        {
          "BoxedWarning": true,
          "Condition": {
            "ConditionId": {
              "IdType": "ICD10",
              "Id": "123ABC19"
            },
            "Description": "Sample Description text.",
            "InfoMessage": "Sample InfoMessage text.",
            "LevelsOfEvidence": [
              {
                "Recommended": true,
                "StrengthOfRecommendation": "EquivocalWeakAgainst",
                "Rating": "VeryLow",
                "ErrorMessage": "Sample ErrorMessage text."
              },
              {
                "Recommended": true,
                "StrengthOfRecommendation": "EquivocalWeakAgainst",
                "Rating": "VeryLow",
                "ErrorMessage": "Sample ErrorMessage text."
              }
            ]
          },
          "MonographSectionId": 20,
          "AgeBands": [
            {
              "Name": "Sample Name text.",
              "Gender": "Female"
            },
            {
              "Name": "Sample Name text.",
              "Gender": "Female"
            }
          ],
          "Message": "Sample Message text."
        },
        {
          "BoxedWarning": true,
          "Condition": {
            "ConditionId": {
              "IdType": "ICD10",
              "Id": "123ABC21"
            },
            "Description": "Sample Description text.",
            "InfoMessage": "Sample InfoMessage text.",
            "LevelsOfEvidence": [
              {
                "Recommended": true,
                "StrengthOfRecommendation": "EquivocalWeakAgainst",
                "Rating": "VeryLow",
                "ErrorMessage": "Sample ErrorMessage text."
              },
              {
                "Recommended": true,
                "StrengthOfRecommendation": "EquivocalWeakAgainst",
                "Rating": "VeryLow",
                "ErrorMessage": "Sample ErrorMessage text."
              }
            ]
          },
          "MonographSectionId": 22,
          "AgeBands": [
            {
              "Name": "Sample Name text.",
              "Gender": "Female"
            },
            {
              "Name": "Sample Name text.",
              "Gender": "Female"
            }
          ],
          "Message": "Sample Message text."
        }
      ],
      "OffLabelIndications": [
        {
          "BoxedWarning": true,
          "Condition": {
            "ConditionId": {
              "IdType": "ICD10",
              "Id": "123ABC23"
            },
            "Description": "Sample Description text.",
            "InfoMessage": "Sample InfoMessage text.",
            "LevelsOfEvidence": [
              {
                "Recommended": true,
                "StrengthOfRecommendation": "EquivocalWeakAgainst",
                "Rating": "VeryLow",
                "ErrorMessage": "Sample ErrorMessage text."
              },
              {
                "Recommended": true,
                "StrengthOfRecommendation": "EquivocalWeakAgainst",
                "Rating": "VeryLow",
                "ErrorMessage": "Sample ErrorMessage text."
              }
            ]
          },
          "MonographSectionId": 24,
          "AgeBands": [
            {
              "Name": "Sample Name text.",
              "Gender": "Female"
            },
            {
              "Name": "Sample Name text.",
              "Gender": "Female"
            }
          ],
          "Message": "Sample Message text."
        },
        {
          "BoxedWarning": true,
          "Condition": {
            "ConditionId": {
              "IdType": "ICD10",
              "Id": "123ABC25"
            },
            "Description": "Sample Description text.",
            "InfoMessage": "Sample InfoMessage text.",
            "LevelsOfEvidence": [
              {
                "Recommended": true,
                "StrengthOfRecommendation": "EquivocalWeakAgainst",
                "Rating": "VeryLow",
                "ErrorMessage": "Sample ErrorMessage text."
              },
              {
                "Recommended": true,
                "StrengthOfRecommendation": "EquivocalWeakAgainst",
                "Rating": "VeryLow",
                "ErrorMessage": "Sample ErrorMessage text."
              }
            ]
          },
          "MonographSectionId": 26,
          "AgeBands": [
            {
              "Name": "Sample Name text.",
              "Gender": "Female"
            },
            {
              "Name": "Sample Name text.",
              "Gender": "Female"
            }
          ],
          "Message": "Sample Message text."
        }
      ],
      "AgeExclusions": [
        {
          "BoxedWarning": true,
          "Condition": {
            "ConditionId": {
              "IdType": "ICD10",
              "Id": "123ABC27"
            },
            "Description": "Sample Description text.",
            "InfoMessage": "Sample InfoMessage text.",
            "LevelsOfEvidence": [
              {
                "Recommended": true,
                "StrengthOfRecommendation": "EquivocalWeakAgainst",
                "Rating": "VeryLow",
                "ErrorMessage": "Sample ErrorMessage text."
              },
              {
                "Recommended": true,
                "StrengthOfRecommendation": "EquivocalWeakAgainst",
                "Rating": "VeryLow",
                "ErrorMessage": "Sample ErrorMessage text."
              }
            ]
          },
          "MonographSectionId": 28,
          "AgeBands": [
            {
              "Name": "Sample Name text.",
              "Gender": "Female"
            },
            {
              "Name": "Sample Name text.",
              "Gender": "Female"
            }
          ],
          "Message": "Sample Message text."
        },
        {
          "BoxedWarning": true,
          "Condition": {
            "ConditionId": {
              "IdType": "ICD10",
              "Id": "123ABC29"
            },
            "Description": "Sample Description text.",
            "InfoMessage": "Sample InfoMessage text.",
            "LevelsOfEvidence": [
              {
                "Recommended": true,
                "StrengthOfRecommendation": "EquivocalWeakAgainst",
                "Rating": "VeryLow",
                "ErrorMessage": "Sample ErrorMessage text."
              },
              {
                "Recommended": true,
                "StrengthOfRecommendation": "EquivocalWeakAgainst",
                "Rating": "VeryLow",
                "ErrorMessage": "Sample ErrorMessage text."
              }
            ]
          },
          "MonographSectionId": 30,
          "AgeBands": [
            {
              "Name": "Sample Name text.",
              "Gender": "Female"
            },
            {
              "Name": "Sample Name text.",
              "Gender": "Female"
            }
          ],
          "Message": "Sample Message text."
        }
      ],
      "GenderExclusions": [
        {
          "BoxedWarning": true,
          "Condition": {
            "ConditionId": {
              "IdType": "ICD10",
              "Id": "123ABC31"
            },
            "Description": "Sample Description text.",
            "InfoMessage": "Sample InfoMessage text.",
            "LevelsOfEvidence": [
              {
                "Recommended": true,
                "StrengthOfRecommendation": "EquivocalWeakAgainst",
                "Rating": "VeryLow",
                "ErrorMessage": "Sample ErrorMessage text."
              },
              {
                "Recommended": true,
                "StrengthOfRecommendation": "EquivocalWeakAgainst",
                "Rating": "VeryLow",
                "ErrorMessage": "Sample ErrorMessage text."
              }
            ]
          },
          "MonographSectionId": 32,
          "AgeBands": [
            {
              "Name": "Sample Name text.",
              "Gender": "Female"
            },
            {
              "Name": "Sample Name text.",
              "Gender": "Female"
            }
          ],
          "Message": "Sample Message text."
        },
        {
          "BoxedWarning": true,
          "Condition": {
            "ConditionId": {
              "IdType": "ICD10",
              "Id": "123ABC33"
            },
            "Description": "Sample Description text.",
            "InfoMessage": "Sample InfoMessage text.",
            "LevelsOfEvidence": [
              {
                "Recommended": true,
                "StrengthOfRecommendation": "EquivocalWeakAgainst",
                "Rating": "VeryLow",
                "ErrorMessage": "Sample ErrorMessage text."
              },
              {
                "Recommended": true,
                "StrengthOfRecommendation": "EquivocalWeakAgainst",
                "Rating": "VeryLow",
                "ErrorMessage": "Sample ErrorMessage text."
              }
            ]
          },
          "MonographSectionId": 34,
          "AgeBands": [
            {
              "Name": "Sample Name text.",
              "Gender": "Female"
            },
            {
              "Name": "Sample Name text.",
              "Gender": "Female"
            }
          ],
          "Message": "Sample Message text."
        }
      ],
      "Message": "Sample Message text."
    }
  ]
}