Documentation

FDA Labels API

MethodPathDescription
GET/v1/fda-label/:identifierGet label by NDC, RxCUI, or Set ID
GET/v1/fda-label/:identifier/sections/:bundleGet specific section bundle
POST/v1/fda-label/_batchBatch lookup (up to 50)
GET/v1/fda-label/sections-infoList available sections and bundles
curl -X GET "https://api.fhirfly.io/v1/fda-label/0069-0151-01" \
  -H "x-api-key: YOUR_API_KEY"
BundleSections Included
safetyWarnings, contraindications, adverse reactions
dosingDosage, administration, how supplied
interactionsDrug interactions, clinical pharmacology
pregnancyPregnancy, lactation, pediatric/geriatric use
ingredientsActive/inactive ingredients, description
# Get only safety-related sections
curl -X GET "https://api.fhirfly.io/v1/fda-label/0069-0151-01?bundle=safety" \
  -H "x-api-key: YOUR_API_KEY"
{
  "data": {
    "set_id": "a1234567-b890-c123-d456-e78901234567",
    "version": "15",
    "effective_date": "2023-06-15",
    "product_name": "Lipitor",
    "sections": {
      "warnings_and_precautions": {
        "title": "WARNINGS AND PRECAUTIONS",
        "text": "..."
      },
      "contraindications": {
        "title": "CONTRAINDICATIONS",
        "text": "..."
      }
    }
  },
  "meta": {
    "legal": {
      "license": "public_domain",
      "citation": "FDA DailyMed"
    }
  }
}
curl -X GET "https://api.fhirfly.io/v1/fda-label/0069-0151-01?sections=boxed_warning,contraindications" \
  -H "x-api-key: YOUR_API_KEY"
curl -X GET "https://api.fhirfly.io/v1/fda-label/0069-0151-01?meta=true" \
  -H "x-api-key: YOUR_API_KEY"