competitive-landscapingPOST

Run the Competitive Landscaping pipeline for an indication or target.

Searches AACT, Chinese registries, Google Scholar, and patent sources for drugs matching the query, ranks them by mechanism / phase / competitive density, and returns the structured drug table.

Endpoint

POST https://api.frontwind.ai/v1/agents/competitive-landscaping

Example

curl -X POST https://api.frontwind.ai/v1/agents/competitive-landscaping \
  -H "Authorization: Bearer fw_live_..." \
  -H "Content-Type: application/json" \
  -d '{ "query": "TROP2 ADC in NSCLC", "query_type": "preclinical", "include_patents": false }'

Request body

FieldTypeRequiredDescription
querystringYesNatural-language query, e.g. 'TROP2 ADC in NSCLC'.
query_typestringdefault "preclinical"All modes return the same drug-table shape via drugs[]. preclinical focuses on discovery/preclinical-stage assets; clinical biases discovery toward drugs with active trials; both runs clinical and preclinical in parallel and merges the results.
include_aactbooleandefault true
include_chinesebooleandefault true
include_chictrbooleandefault false
include_exabooleandefault true
include_google_openbooleandefault true
include_llm_web_searchbooleandefault true
include_conferencesbooleandefault true
include_patentsbooleandefault false
use_cachebooleandefault falseUse cached Competitive Landscaping results when available for the same query.
skip_drug_cachebooleandefault falseSkip drug_indication_cache reads/injection (Phase 6.0) and Phase 6.2 cache-skip. Forces fresh GPT verify+enrich.
candidate_asset_descriptionstringNoOptional asset under diligence (company, modality, stage, differentiation). Used in the VC-style pipeline summary memo.

Response data

FieldTypeDescription
run_idstring
run_uuidstring
query_idinteger
querystring
drugsarray
pipeline_summarystring

Example response

{
  "ok": true,
  "agent": "competitive-landscaping",
  "data": {
    "run_id": "abc-123",
    "run_uuid": "f1a4...",
    "query_id": 9421,
    "query": "TROP2 ADC in NSCLC",
    "drugs": [
      {
        "drug_name": "Datopotamab deruxtecan",
        "target": "TROP2",
        "modality": "ADC",
        "stage": "PHASE3",
        "company": "Daiichi Sankyo / AstraZeneca",
        "indication": "NSCLC"
      }
    ],
    "pipeline_summary": "## Executive summary\n\nThe landscape is crowded..."
  },
  "elapsed_s": 42
}

← All agents