change_1d_pct
Percent change vs `previous_close`. Expressed as a decimal fraction (0.05 = 5%), not a whole percent.
Swap YOUR_KEY for a key from /dashboard/keys. Responses are real captures from 2026-09-08, trimmed.
Every ticker matching this signal /v2/signals/{signal}
Live — every ticker with change_1d_pct above a cutoff
curl -G "https://api.tickerbot.io/v2/signals/change_1d_pct" \
--data-urlencode "condition=> 14.057971014492768" \
-H "Authorization: Bearer YOUR_KEY"Response (sampled 2026-09-08, trimmed)
{
"as_of": "2026-09-08T13:07:18.610Z",
"signal": "change_1d_pct",
"condition": "> 14.057971014492768",
"universe": null,
"count": 2,
"results": [
{
"ticker": "GIPRW",
"name": "Generation Income Properties Inc Warrant",
"value": 425.83333333333337
},
{
"ticker": "OGGWZ",
"name": "Osisko Gold Group Inc. Warrant expiring 5/27/2027",
"value": 75.53191489361704
}
]
}As-of — the same read at a past date
curl -G "https://api.tickerbot.io/v2/signals/change_1d_pct" \
--data-urlencode "condition=> 14.057971014492768" \
-d "asof=2026-06-10" \
-H "Authorization: Bearer YOUR_KEY"Response (sampled 2026-09-08, trimmed)
{
"as_of": "2026-06-10",
"signal": "change_1d_pct",
"condition": "> 14.057971014492768",
"universe": null,
"count": 2,
"results": [
{
"ticker": "CPOP",
"name": "Pop Culture Group Co., Ltd Class A Ordinary Shares",
"value": 322.2222222222222
},
{
"ticker": "DSY",
"name": "Big Tree Cloud Holdings Limited Class A Ordinary Shares",
"value": 291.30434782608694
}
]
}Subscribe — webhook when a ticker starts matching
curl -X POST "https://api.tickerbot.io/v2/signals/change_1d_pct/subscribe" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{"condition": "> 14.057971014492768", "target_url": "https://example.com/hooks/tickerbot"}'Returns 201 with the created webhook — the same shape as GET /v2/webhooks/{id}, plus a one-time signing_secret for HMAC verification.
The whole market, filtered on it /v2/scan
Live — the whole market, ranked by this column
curl -X POST "https://api.tickerbot.io/v2/scan" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{ "q": "change_1d_pct IS NOT NULL", "order": "change_1d_pct", "columns": "change_1d_pct" }'Response (sampled 2026-09-08, trimmed)
{
"as_of": "2026-09-08T13:07:20.408Z",
"query": {
"q": "change_1d_pct IS NOT NULL",
"limit": 2,
"order": "change_1d_pct",
"dir": "desc",
"fields": [
"change_1d_pct"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "GIPRW",
"name": "Generation Income Properties Inc Warrant",
"asset_class": "stocks",
"asset_type": "WARRANT",
"price": 0.0063,
"change_1d_pct": 425.83333333333337,
"gap_pct": 5,
"relative_volume": null,
"market_cap": null
},
{
"ticker": "OGGWZ",
"name": "Osisko Gold Group Inc. Warrant expiring 5/27/2027",
"asset_class": "stocks",
"asset_type": "WARRANT",
"price": 0.0495,
"change_1d_pct": 75.53191489361704,
"gap_pct": 1.42,
"relative_volume": null,
"market_cap": null
}
]
}As-of — the same scan at a past date
curl -X POST "https://api.tickerbot.io/v2/scan" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{ "q": "change_1d_pct IS NOT NULL", "order": "change_1d_pct", "columns": "change_1d_pct", "asof": "2026-06-10" }'Response (sampled 2026-09-08, trimmed)
{
"as_of": "2026-06-10",
"query": {
"q": "change_1d_pct IS NOT NULL",
"asof": "2026-06-10",
"interval": "auto",
"limit": 2,
"order": "change_1d_pct",
"dir": "desc",
"fields": [
"change_1d_pct"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "CPOP",
"name": "Pop Culture Group Co., Ltd Class A Ordinary Shares",
"asset_class": "stocks",
"asset_type": "CS",
"price": 15.2,
"change_1d_pct": 322.2222222222222,
"gap_pct": 41.66666666666665,
"relative_volume": 20.854878151407174,
"market_cap": null
},
{
"ticker": "DSY",
"name": "Big Tree Cloud Holdings Limited Class A Ordinary Shares",
"asset_class": "stocks",
"asset_type": "CS",
"price": 7.2,
"change_1d_pct": 291.30434782608694,
"gap_pct": 420.65217391304344,
"relative_volume": 29.831389540164082,
"market_cap": null
}
]
}Subscribe — webhook on a market-wide condition
curl -X POST "https://api.tickerbot.io/v2/scan/subscribe" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{"q": "change_1d_pct > 14.057971014492768", "target_url": "https://example.com/hooks/tickerbot"}'Returns 201 with the created webhook object; deliveries carry the tickers matching the condition at each evaluation.
Its history /v2/series
History — the column on an aligned time grid
curl "https://api.tickerbot.io/v2/series?tickers=AAPL,MSFT&columns=close,change_1d_pct" \
-H "Authorization: Bearer YOUR_KEY"Response (sampled 2026-09-08, trimmed)
{
"as_of": "2026-09-08T13:07:23.219Z",
"interval": "1d",
"tickers": [
"AAPL",
"MSFT"
],
"columns": [
"close",
"change_1d_pct"
],
"count": 6,
"series": {
"AAPL": [
{
"t": "2026-09-02",
"close": 324.96,
"change_1d_pct": -0.07627718143511532
},
{
"t": "2026-09-03",
"close": 328.21,
"change_1d_pct": 0.9564254062038418
},
{
"t": "2026-09-04",
"close": 321.183,
"change_1d_pct": -2.141007281923155
}
],
"MSFT": [
{
"t": "2026-09-02",
"close": 496.82,
"change_1d_pct": -0.8702247415272757
},
{
"t": "2026-09-03",
"close": 510.12,
"change_1d_pct": 2.6375749768527808
},
{
"t": "2026-09-04",
"close": 501.241,
"change_1d_pct": -1.7405708460754372
}
]
}
}Same grammar on scan, series, and webhooks; state reads take ?asof= for point-in-time answers.