Skip to main content
GET
/
api
/
Drug
/
DrugFormStrength
Drug Form Strength
curl --request GET \
  --url https://api.discountdrugnetwork.com/api/Drug/DrugFormStrength \
  --header 'x-ddn-client-key: <api-key>'
{
  "drugName": "<string>",
  "brandGeneric": "<string>",
  "Forms": [
    {
      "Form": "<string>",
      "GSN": "<string>",
      "Ranking": 123,
      "isDiscontinued": true,
      "LN": "<string>",
      "commonQty": 123,
      "discontinuedDate": "2023-11-07T05:31:56Z",
      "IsSelected": true
    }
  ],
  "Strengths": [
    {
      "Strength": "<string>",
      "GSN": "<string>",
      "Ranking": 123,
      "LN": "<string>",
      "CommonQty": 123,
      "IsSelected": true
    }
  ],
  "Quantities": [
    {
      "Quantity": 123,
      "QuantityLabel": "<string>",
      "GSN": "<string>",
      "Ranking": 123,
      "IsSelected": true
    }
  ]
}

Endpoint

GET https://api.discountdrugnetwork.com/api/Drug/DrugFormStrength?GSN=NUMBER

Input Parameters

GSN
string
required
GCN Sequence Number (Required).
groupId
string
required
Group Identifier (Required).Example: 12345

Returned Parameters and Values

drugName
string
required
Drug name.
brandGeneric
string
required
“B” for Brand, “G” for Generic, “A” for Brand or Generic.
Forms
array[]
Array of LocatedDrugForm matching the GSN from the request.
Strengths
array[]
Array of LocatedDrugStrength matching the GSN from the request.
Quantities
array
Array of LocatedDrugQuantity matching the GSN from the request.

LocatedDrugForm

Form
string
Drug form (e.g., “Tablet”).
GSN
string
GCN Sequence Number.
Ranking
int
Ranking of the most commonly used drug form.
isDiscontinued
boolean
Indicates if the drug form is discontinued.
LN
string
Drug label name.
commonQty
double
Most common quantity dispensed.
discontinuedDate
DateTime
Date when the drug form was discontinued.
IsSelected
boolean
Indicates if this value is the current filter for returned datasets.

LocatedDrugName

DrugName
string
Drug name.
BrandGeneric
string
“B” for Brand, “G” for Generic, “A” for Brand or Generic.
IsSelected
boolean
Indicates if this value is the current filter for returned datasets.

LocatedDrugQuantity

Quantity
double
Drug quantity.
QuantityLabel
string
Label for quantity (e.g., mL, units, grams).
GSN
string
GCN Sequence Number.
Ranking
int
Ranking of the most commonly used quantity.
IsSelected
boolean
Indicates if this value is the current filter for returned datasets.

LocatedDrugStrength

Strength
string
Drug strength.
GSN
string
GCN Sequence Number.
Ranking
int
Ranking of the most commonly used strength.
LN
string
Drug label name.
CommonQty
double
Most common quantity dispensed.
IsSelected
boolean
Indicates if this value is the current filter for returned datasets.
Note: The GSN (GCN Sequence Number) groups together drugs based on ingredients, strength, and dosage form.

Authorizations

x-ddn-client-key
string
header
required

Query Parameters

GSN
string
required

GCN Sequence Number (Required).

groupId
string
required

Group Identifier (Required). Example: 12345

Response

Successfully retrieved drug form strength details.

drugName
string

Drug name.

brandGeneric
string

'B' for Brand, 'G' for Generic, 'A' for Brand or Generic.

Forms
object[]
Strengths
object[]
Quantities
object[]