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
| Flag | Accepts | Example |
|---|---|---|
--drug | drug name / id | --drug pembrolizumab |
--target | target name / id | --target TL1A |
--disease | disease name / id (class-based) | --disease "breast cancer" |
--buyer | buyer company name / id | --buyer Pfizer |
--seller | seller company name / id | --seller "Prometheus Biosciences" |
--deal-type | deal type(s) | --deal-type Licensing · --deal-type M&A |
--min-value | min total deal value (USD) | --min-value 500000000 |
--since / --until | publication 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" --tablePiping 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.