Skip to content

gosset trials

Search clinical trials by free text plus structured filters (drug, disease, target, phase, status, registry, dates).

bash
gosset trials [SEARCH] [filters] [output flags]

SEARCH (optional positional) is free text matched against the trial's NCT id, acronym, or title.

Filters

FlagAcceptsExample
SEARCHfree text / NCT idgosset trials NCT05704920 · gosset trials "semaglutide"
--drugdrug name / id--drug tirzepatide
--diseasedisease name / id--disease "ulcerative colitis"
--targettarget name / id--target GLP-1
--phasecomma-separated--phase 3 · --phase 2,3
--statustrial status(es)--status Recruiting
--registryctg,eu_ctis,all--registry all (default ctg = US)
--since / --untilcompletion date YYYY-MM-DD--since 2025-01-01
--industry-onlyflagindustry-collaborator trials only
--has-resultsflagonly trials with posted results

Default sort: newest completion first (-completion_date).

Registry scope

Trials default to US (ClinicalTrials.gov). Add --registry all to include EU CTIS and other registries.

Examples

bash
# Semaglutide Phase 3 trials
gosset trials "semaglutide" --phase 3 --fields nct_id,brief_study_name,phase,status --table
nct_id       brief_study_name                                       phase  status
-----------  -----------------------------------------------------  -----  ------
NCT06934655  Early Re-Initiation of Semaglutide Post Sleeve Gastr…  3      Active
NCT07021937  PLASTIC: Semaglutide in Obesity                        3      Active
NCT07090343  Semaglutide for Reducing Cardiovascular Events in T…   3      Active
bash
# A specific trial by NCT id
gosset trials NCT05704920 --fields nct_id,brief_study_name,phase,status --table

# TL1A trials in ulcerative colitis, all registries
gosset trials --target TL1A --disease "ulcerative colitis" --registry all --table

# Industry Phase 3 obesity trials completing after 2025
gosset trials --disease obesity --phase 3 --industry-only --since 2025-01-01 --table

# Trials for a drug that have posted results
gosset trials --drug tulisokibart --has-results --table

Piping to jq

bash
# NCT id + title for recent GLP-1 Phase 3 trials
gosset trials --target GLP-1 --phase 3 \
  | jq -r '.[] | "\(.nct_id)\t\(.brief_study_name)"'

# Pull just the NCT ids to feed into ptrs (see Predictions)
gosset trials --drug tirzepatide --phase 3 | jq -r '.[].nct_id'

Useful fields

nct_id, trial_id, registry, brief_study_name, study_code_name, phase, status, main_drug, sponsor_names, enrollment, completion_date, primary_completion_date, primary_endpoints, has_results, met_primary_endpoints_one/all.

The list view omits heavy narrative fields by default; a single-trial lookup by NCT id returns the fuller record.

Gosset Documentation