Short-squeeze setup signal for a stock (?ticker=<stock ticker>)
Short-squeeze setup signal for a stock (?ticker=<stock ticker>)
50000 (raw units)
price
4
calls / 30d
1
unique payers
2026-09-16
updated
Provider
squeeze.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": {
"ticker": "GME"
},
"type": "http"
},
"output": {
"example": {
"company": "GameStop Corporation",
"drivers": [
"short interest 13.5% of float (high)",
"days-to-cover 12.8 (crowded, slow to exit)"
],
"interpretation": "Notable short-squeeze conditions — heavily shorted but still falling; fuel is building, not yet lit.",
"max_score": 10,
"metrics": {
"days_to_cover": 12.78,
"fifty_day_avg": 21.78,
"price": 19.1,
"shares_short": 55426276,
"short_interest_trend": "flat",
"short_pct_float": 13.54,
"vs_50d_avg_pct": -12.4
},
"source": "yfinance (FINRA short interest + price)",
"squeeze_score": 5,
"squeeze_signal": "ELEVATED",
"state": "coiled",
"ticker": "GME"
},
"format": "json",
"type": "object"
}
},
"schema": {
"category": "markets",
"description": "Short-squeeze detection made agent-callable. One x402 call takes a stock ticker and returns a squeeze-risk signal (HIGH / ELEVATED / MODERATE / LOW) built from short interest as a percent of float and days-to-cover, plus a state read (coiled = heavily shorted but still falling / igniting = heavily shorted AND rising / primed / quiet) that blends price momentum vs the 50-day average with the short-interest trend. Names the drivers (e.g. 'short interest 25.7% of float', 'days-to-cover 12.8', 'price 9% above its 50-day avg'). What a trading or risk agent needs to flag squeeze setups, pay-per-call. $0.05 in USDC on Base via x402. Source: yfinance (FINRA short interest + price; free/public). NOTE: short interest is bi-monthly and ~2 weeks lagged, and this does NOT include real-time borrow fee / share utilization (paid data, e.g. Ortex/S3) — the strongest squeeze predictors. Companion to EquityScope, OptionsFlow and AnalystEdge.",
"name": "SqueezeSignal",
"properties": {
"input": {
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {
"ticker": {
"description": "Stock ticker to screen for squeeze risk (e.g. GME, BYND, CVNA). Aliases: symbol.",
"example": "GME",
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"company": "GameStop Corporation",
"drivers": [
"short interest 13.5% of float (high)",
"days-to-cover 12.8 (crowded, slow to exit)"
],
"interpretation": "Notable short-squeeze conditions — heavily shorted but still falling; fuel is building, not yet lit.",
"max_score": 10,
"metrics": {
"days_to_cover": 12.78,
"fifty_day_avg": 21.78,
"price": 19.1,
"shares_short": 55426276,
"short_interest_trend": "flat",
"short_pct_float": 13.54,
"vs_50d_avg_pct": -12.4
},
"source": "yfinance (FINRA short interest + price)",
"squeeze_score": 5,
"squeeze_signal": "ELEVATED",
"state": "coiled",
"ticker": "GME"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"tags": [
"short-squeeze",
"short-interest",
"equities",
"trading",
"risk"
],
"type": "object",
"version": "1.0.0"
}
},
"bc_kg64bd18": {}
}Use it
curl
curl "https://squeeze.lonestaroracle.xyz/squeeze" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://squeeze.lonestaroracle.xyz/squeeze");
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://squeeze.lonestaroracle.xyz/squeeze")
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/5119.json, and this resource appears in /discovery/resources and /discovery/search.