Skip to content

gosset deals

Search licensing, M&A, and partnership deals by drug, target, disease, party, deal type, value, and date.

bash
gosset deals [filters] [output flags]

Filters

FlagAcceptsExample
--drugdrug name / id--drug pembrolizumab
--targettarget name / id--target TL1A
--diseasedisease name / id (class-based)--disease "breast cancer"
--buyerbuyer company name / id--buyer Pfizer
--sellerseller company name / id--seller "Prometheus Biosciences"
--deal-typedeal type(s)--deal-type Licensing · --deal-type M&A
--min-valuemin total deal value (USD)--min-value 500000000
--since / --untilpublication date YYYY-MM-DD--since 2024-01-01

Default sort: most recent first.

Examples

bash
# Recent TL1A deals
gosset deals --target TL1A --table

# Licensing deals for a drug since 2024
gosset deals --drug pembrolizumab --deal-type Licensing --since 2024-01-01 --table

# Big-ticket oncology M&A
gosset deals --disease "cancer" --deal-type M&A --min-value 1000000000 --table

# What a company bought / sold
gosset deals --buyer Pfizer --since 2023-01-01 --table
gosset deals --seller "Prometheus Biosciences" --table

Piping to jq

bash
# Parties + headline value for ADC deals
gosset deals --target HER2 --deal-type Licensing \
  | jq -r '.[] | "\(.publication_date)\t\(.buyer_names|join(",")) <- \(.seller_names|join(","))\t$\(.upfront_payment_usd // "?")"'

Useful fields

publication_date, deal_type, deal_status, buyer_names, seller_names, drug_names, upfront_payment_usd, max_potential_payment_usd, deal_summary.

Freshly-ingested deals

Brand-new deals appear before enrichment (their deal_type / parties are still null). gosset deals automatically de-prioritizes those not-yet-enriched rows so the informative deals surface first; no flag needed.

Gosset Documentation