new-developmentsPOST
Identify and rank emerging biopharma catalysts for deal sourcing.
Scans recent papers, trials, patents, and regulatory events matching user filters. Scores each catalyst by signal strength (0–100), maps companies and investors, and aggregates results into themes with auto-generated briefs. Supports theme follow alerts.
Endpoint
POST https://api.frontwind.ai/v1/agents/new-developmentsExample
curl -X POST https://api.frontwind.ai/v1/agents/new-developments \
-H "Authorization: Bearer fw_live_..." \
-H "Content-Type: application/json" \
-d '{ "indication": "solid tumors", "modality": "ADC", "target": "HER2", "stage_focus": "early_clinical", "lookback_days": 60, "query": "Show new developments in ADC for solid tumors" }'Request body
| Field | Type | Required | Description |
|---|---|---|---|
query | string | No | Optional natural-language scan query. |
indication | string | No | |
modality | string | No | |
target | string | No | |
stage_focus | string | default "any" | |
lookback_days | integer | default 60 | |
include_live_discovery | boolean | default false | |
use_cache | boolean | default false |
Response data
| Field | Type | Description |
|---|---|---|
catalysts | array | |
themes | array | |
briefs | array | |
filters | object | |
sources | array | |
warnings | array | |
generated_at | string |
Example response
{
"ok": true,
"agent": "new-developments",
"data": {
"catalysts": [
{
"title": "New ADC linker strategy in HER2+ solid tumors",
"signal_score": 82,
"catalyst_type": "Scientific"
}
],
"themes": [
{
"theme_key": "adc_her2",
"label": "Adc Her2",
"catalyst_count": 3
}
],
"generated_at": "2026-05-26T12:00:00Z"
},
"elapsed_s": 42
}