change_1w_pct
Percent change in close vs. the close 5 trading days ago. Computed post-close; does NOT update intraday — use `from_open_pct` + `change_1d_pct` for intraday-aware change.
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_1w_pct above a cutoff
curl -G "https://api.tickerbot.io/v2/signals/change_1w_pct" \
--data-urlencode "condition=> 29.363905325443778" \
-H "Authorization: Bearer YOUR_KEY"Response (sampled 2026-09-08, trimmed)
{
"as_of": "2026-09-08T13:07:19.276Z",
"signal": "change_1w_pct",
"condition": "> 29.363905325443778",
"universe": null,
"count": 2,
"results": [
{
"ticker": "TANH",
"name": "Tantech Holdings Ltd. Class A Common Shares",
"value": 5710.699588477367
},
{
"ticker": "CLGN",
"name": "CollPlant Biotechnologies Ltd Ordinary Shares",
"value": 922.6256983240223
}
]
}As-of — the same read at a past date
curl -G "https://api.tickerbot.io/v2/signals/change_1w_pct" \
--data-urlencode "condition=> 29.363905325443778" \
-d "asof=2026-06-10" \
-H "Authorization: Bearer YOUR_KEY"Response (sampled 2026-09-08, trimmed)
{
"as_of": "2026-06-10",
"signal": "change_1w_pct",
"condition": "> 29.363905325443778",
"universe": null,
"count": 2,
"results": [
{
"ticker": "STI",
"name": "Solidion Technology, Inc. Common Stock",
"value": 447.4206349206349
},
{
"ticker": "CPOP",
"name": "Pop Culture Group Co., Ltd Class A Ordinary Shares",
"value": 433.14626446860746
}
]
}Subscribe — webhook when a ticker starts matching
curl -X POST "https://api.tickerbot.io/v2/signals/change_1w_pct/subscribe" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{"condition": "> 29.363905325443778", "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_1w_pct IS NOT NULL", "order": "change_1w_pct", "columns": "change_1w_pct" }'Response (sampled 2026-09-08, trimmed)
{
"as_of": "2026-09-08T13:07:20.974Z",
"query": {
"q": "change_1w_pct IS NOT NULL",
"limit": 2,
"order": "change_1w_pct",
"dir": "desc",
"fields": [
"change_1w_pct"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "TANH",
"name": "Tantech Holdings Ltd. Class A Common Shares",
"asset_class": "stocks",
"asset_type": "CS",
"price": 20.14,
"change_1d_pct": 4.950495049504947,
"gap_pct": -9.33,
"relative_volume": null,
"market_cap": 14601921,
"change_1w_pct": 5710.699588477367
},
{
"ticker": "CLGN",
"name": "CollPlant Biotechnologies Ltd Ordinary Shares",
"asset_class": "stocks",
"asset_type": "CS",
"price": 3.425,
"change_1d_pct": 0.38100820633059496,
"gap_pct": -2.99,
"relative_volume": null,
"market_cap": 6712414,
"change_1w_pct": 922.6256983240223
}
]
}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_1w_pct IS NOT NULL", "order": "change_1w_pct", "columns": "change_1w_pct", "asof": "2026-06-10" }'Response (sampled 2026-09-08, trimmed)
{
"as_of": "2026-06-10",
"query": {
"q": "change_1w_pct IS NOT NULL",
"asof": "2026-06-10",
"interval": "auto",
"limit": 2,
"order": "change_1w_pct",
"dir": "desc",
"fields": [
"change_1w_pct"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "STI",
"name": "Solidion Technology, Inc. Common Stock",
"asset_class": "stocks",
"asset_type": "CS",
"price": 27.59,
"change_1d_pct": 34.78260869565218,
"gap_pct": -2.442598925256473,
"relative_volume": 0.8929071956905874,
"market_cap": 80696228,
"change_1w_pct": 447.4206349206349
},
{
"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,
"change_1w_pct": 433.14626446860746
}
]
}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_1w_pct > 29.363905325443778", "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_1w_pct" \
-H "Authorization: Bearer YOUR_KEY"Response (sampled 2026-09-08, trimmed)
{
"as_of": "2026-09-08T13:07:23.072Z",
"interval": "1d",
"tickers": [
"AAPL",
"MSFT"
],
"columns": [
"close",
"change_1w_pct"
],
"count": 6,
"series": {
"AAPL": [
{
"t": "2026-09-02",
"close": 324.96,
"change_1w_pct": 3.6471526559259893
},
{
"t": "2026-09-03",
"close": 328.21,
"change_1w_pct": 4.287621590692359
},
{
"t": "2026-09-04",
"close": 321.183,
"change_1w_pct": 0.4638723803565892
}
],
"MSFT": [
{
"t": "2026-09-02",
"close": 496.82,
"change_1w_pct": 0.05842415939723011
},
{
"t": "2026-09-03",
"close": 510.12,
"change_1w_pct": 0.9630538945867739
},
{
"t": "2026-09-04",
"close": 501.241,
"change_1w_pct": -2.3930442233170424
}
]
}
}Same grammar on scan, series, and webhooks; state reads take ?asof= for point-in-time answers.