label-strategyPOST

Generate a precedent-backed regulatory label strategy report.

Analyzes approved label precedents, safety expectations, competitor labels, evidence-to-claim requirements, and regulatory risks for a drug asset and indication. Generated language is strategic and not approved labeling.

Endpoint

POST https://api.frontwind.ai/v1/agents/label-strategy

Example

curl -X POST https://api.frontwind.ai/v1/agents/label-strategy \
  -H "Authorization: Bearer fw_live_..." \
  -H "Content-Type: application/json" \
  -d '{ "asset_name": "FW-101", "indication": "relapsed/refractory multiple myeloma", "modality": "bispecific antibody", "mechanism_of_action": "BCMA x CD3 T-cell engagement", "target": "BCMA", "development_stage": "Phase 2", "geography": "FDA", "clinical_trial_data": { "ORR": "62%", "CR": "28%", "CRS": "55%", "Grade3_Infections": "18%" }, "endpoints": [ "ORR", "DoR", "CR" ], "competitor_assets": [ "teclistamab", "elranatamab", "idecabtagene vicleucel" ] }'

Request body

FieldTypeRequiredDescription
asset_namestringYes
indicationstringYes
modalitystringYes
mechanism_of_actionstringYes
targetstringYes
development_stagestringYes
geographystringYesRegulatory geography, e.g. FDA, EMA, PMDA.
clinical_trial_dataobjectNo
endpointsarrayNo
biomarkerstringNo
line_of_therapystringNo
comparatorstringNo
safety_dataobjectNo
dosing_informationstringNo
competitor_assetsarrayNo
prior_regulatory_feedbackobjectNo
use_cachebooleandefault false

Response data

FieldTypeDescription
executive_summaryobject
proposed_indication_languageobject
likely_label_restrictionsarray
safety_warning_expectationsobject
competitor_label_comparisonarray
evidence_to_claim_mappingarray
label_scenariosarray
regulatory_risksarray
risk_scoresobject
recommended_next_stepsarray
precedentsarray
sourcesarray
warningsarray

Example response

{
  "ok": true,
  "agent": "label-strategy",
  "data": {
    "executive_summary": {
      "likely_regulatory_positioning": "Accelerated approval may be plausible if response durability is compelling in a heavily pretreated population [1][2].",
      "expected_label_scope": "Adult relapsed or refractory multiple myeloma after multiple prior lines of therapy [1][2].",
      "source_ids": [
        "1",
        "2"
      ]
    },
    "proposed_indication_language": {
      "language": "Treatment of adult patients with relapsed or refractory multiple myeloma after at least three prior lines of therapy [1][2].",
      "confidence": "Medium",
      "confidence_score": 65,
      "source_ids": [
        "1",
        "2"
      ]
    },
    "regulatory_risks": [
      {
        "risk": "accelerated approval dependency",
        "severity": "High",
        "mitigation": "Plan confirmatory randomized trial with mature DoR and PFS follow-up.",
        "source_ids": [
          "1",
          "2"
        ]
      }
    ],
    "risk_scores": {
      "claim_feasibility_score": 65,
      "regulatory_risk_score": 70,
      "label_breadth_score": 55,
      "safety_burden_score": 75,
      "source_ids": [
        "1",
        "2"
      ]
    },
    "sources": [
      {
        "id": "1",
        "title": "TECVAYLI prescribing information",
        "url": "https://www.accessdata.fda.gov/",
        "source_type": "FDA label",
        "relevance": "BCMA bispecific label precedent"
      },
      {
        "id": "2",
        "title": "ELREXFIO prescribing information",
        "url": "https://www.accessdata.fda.gov/",
        "source_type": "FDA label",
        "relevance": "BCMA bispecific label precedent"
      }
    ],
    "warnings": [
      "Generated language is inferred strategy, not approved labeling."
    ]
  },
  "elapsed_s": 42
}

← All agents