Upcoming biotech clinical-trial catalysts (?ticker=<biotech ticker> or ?company=)
Upcoming biotech clinical-trial catalysts (?ticker=<biotech ticker> or ?company=)
50000 (raw units)
price
4
calls / 30d
1
unique payers
2026-09-16
updated
Provider
pharma.lonestaroracle.xyz · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x52Ab53912D37759B2ad364f22dD06B16714b6C06",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "50000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "3nmeVj5m9Uq2hSTfsVsn3tJMHRJQNMKR1AjzyUJbrSgw",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "50000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"company": "NVIDIA",
"days": 365,
"ticker": "SRPT"
},
"type": "http"
},
"output": {
"example": {
"catalyst_signal": "HIGH",
"company": "Sarepta Therapeutics, Inc.",
"counts": {
"next_90d": 1,
"phase2": 0,
"phase3": 2,
"total_upcoming": 2
},
"horizon_days": 365,
"interpretation": "Near-term binary catalyst risk: a Phase 3 readout (or several trials) due within 90 days.",
"match": "sponsor",
"source": "ClinicalTrials.gov API v2",
"sponsor_query": "Sarepta",
"ticker": "SRPT",
"upcoming_catalysts": [
{
"days_out": 84,
"expected_readout": "2026-10-31",
"indication": "Muscular Dystrophy, Duchenne",
"lead_sponsor": "Sarepta Therapeutics, Inc.",
"nct_id": "NCT03992430",
"phase": "Phase 3",
"source": "ClinicalTrials.gov",
"status": "Recruiting",
"type": "Trial Readout"
}
]
},
"format": "json",
"type": "object"
}
},
"schema": {
"category": "markets",
"description": "Biotech catalyst tracking made agent-callable. One x402 call takes a stock ticker (or company name) and returns a catalyst signal (HIGH / MODERATE / LOW / NONE) plus the company's upcoming late-stage clinical-trial readouts — the binary events that move biotech stocks 50-90% in a day. Each catalyst names the phase (2 or 3), the indication, the expected primary-completion date (the data-release proxy), how many days out it is, the trial status and the ClinicalTrials.gov NCT id. The biotech analog of an earnings calendar, served pay-per-call: a trading, research or risk agent asks 'what's coming for $SRPT' and gets the readout schedule. $0.05 in USDC on Base via x402. Sources: ClinicalTrials.gov API v2 (official) + yfinance for ticker resolution (all free/public). NOTE: this is the trial-readout leg — it does NOT include curated FDA PDUFA decision dates (no free feed exists for those). Companion to EquityScope, OptionsFlow, AnalystEdge and EarningsCalendar.",
"name": "PharmaCatalyst",
"properties": {
"input": {
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {
"company": {
"description": "Company name instead of a ticker (e.g. 'Vertex Pharmaceuticals'). Alias: name.",
"type": "string"
},
"days": {
"default": 365,
"description": "Look-ahead horizon in days (default 365, max 1095). Alias: horizon.",
"type": "integer"
},
"ticker": {
"description": "Biotech stock ticker (e.g. SRPT, VRTX, MRNA). Resolved to a company via yfinance. Alias: symbol.",
"example": "SRPT",
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"catalyst_signal": "HIGH",
"company": "Sarepta Therapeutics, Inc.",
"counts": {
"next_90d": 1,
"phase2": 0,
"phase3": 2,
"total_upcoming": 2
},
"horizon_days": 365,
"interpretation": "Near-term binary catalyst risk: a Phase 3 readout (or several trials) due within 90 days.",
"match": "sponsor",
"source": "ClinicalTrials.gov API v2",
"sponsor_query": "Sarepta",
"ticker": "SRPT",
"upcoming_catalysts": [
{
"days_out": 84,
"expected_readout": "2026-10-31",
"indication": "Muscular Dystrophy, Duchenne",
"lead_sponsor": "Sarepta Therapeutics, Inc.",
"nct_id": "NCT03992430",
"phase": "Phase 3",
"source": "ClinicalTrials.gov",
"status": "Recruiting",
"type": "Trial Readout"
}
]
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"tags": [
"biotech",
"pharma",
"catalyst",
"clinical-trials",
"healthcare"
],
"type": "object",
"version": "1.0.0"
}
},
"bc_kg64bd18": {}
}Use it
curl
curl "https://pharma.lonestaroracle.xyz/catalysts" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://pharma.lonestaroracle.xyz/catalysts");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://pharma.lonestaroracle.xyz/catalysts")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/5116.json, and this resource appears in /discovery/resources and /discovery/search.