price_to_book
Current price ÷ `book_value`. Common value-investing metric.
At a glance
| Type | numeric |
| Group | Fundamentals |
| Category | Valuation |
| Update cadence | post-close daily |
| Intervals | 1d |
| Universe | all tickers |
| History | full · since 2009 |
| Nullable | yes — NULL where not applicable |
Metrics crossing market price with financials — cap, EV, multiples, yield, beta — plus the size/style tags they own (cap tiers, beta tags, value_stock).
Query it
Every applicable form factor, grouped by endpoint family. Swap YOUR_KEY for the value from /dashboard/keys. Response payloads are real captures, sampled 2026-08-18 and trimmed — your run's values and dates will differ.
Use signals /v2/signals/{signal}
One signal across the market: who matches now, who matched then, and a push when someone starts. Docs →
curl -G "https://api.tickerbot.io/v2/signals/price_to_book" \
--data-urlencode "condition=> 28.62" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:25:23.257Z",
"signal": "price_to_book",
"condition": "> 28.62",
"universe": null,
"count": 2,
"results": [
{
"ticker": "TOMZ",
"name": "TOMI Environmental Solutions, Inc.",
"value": 24500.49
},
{
"ticker": "PBT",
"name": "Permian Basin Royalty Trust",
"value": 9372.45
}
]
}curl -G "https://api.tickerbot.io/v2/signals/price_to_book" \
--data-urlencode "condition=> 28.62" \
-d "asof=2026-05-20" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-05-20",
"signal": "price_to_book",
"condition": "> 28.62",
"universe": null,
"count": 2,
"results": [
{
"ticker": "AKTX",
"name": "Akari Therapeutics plc ADR (0.01 USD)",
"value": 9876.536865782165
},
{
"ticker": "TRIO",
"name": "MC Trio Equity Buffered ETF",
"value": 1633.6384222222223
}
]
}curl -X POST "https://api.tickerbot.io/v2/signals/price_to_book/subscribe" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{"condition": "> 28.62", "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.
Use scan /v2/scan
The whole market through a WHERE clause — this signal composed freely with any other column. Docs →
curl -G "https://api.tickerbot.io/v2/scan" \
--data-urlencode "q=price_to_book IS NOT NULL" \
-d "order=price_to_book" -d "columns=price_to_book" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:25:25.790Z",
"query": {
"q": "price_to_book IS NOT NULL",
"limit": 2,
"order": "price_to_book",
"dir": "desc",
"fields": [
"price_to_book"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "TOMZ",
"name": "TOMI Environmental Solutions, Inc.",
"asset_class": "stocks",
"asset_type": "CS",
"price": 1.785,
"day_change_pct": 0.02,
"gap_pct": 0.0514,
"relative_volume": 0.7479,
"market_cap": 13475269,
"price_to_book": 24500.49
},
{
"ticker": "PBT",
"name": "Permian Basin Royalty Trust",
"asset_class": "stocks",
"asset_type": "CS",
"price": 32.975,
"day_change_pct": 0.0087,
"gap_pct": null,
"relative_volume": null,
"market_cap": 1523641541,
"price_to_book": 9372.45
}
]
}curl -G "https://api.tickerbot.io/v2/scan" \
--data-urlencode "q=price_to_book IS NOT NULL" \
-d "order=price_to_book" -d "columns=price_to_book" \
-d "asof=2026-05-20" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-05-20",
"query": {
"q": "price_to_book IS NOT NULL",
"asof": "2026-05-20",
"interval": "auto",
"limit": 2,
"order": "price_to_book",
"dir": "desc",
"fields": [
"price_to_book"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "AKTX",
"name": "Akari Therapeutics plc ADR (0.01 USD)",
"asset_class": "stocks",
"asset_type": "ADRC",
"price": 3.43,
"day_change_pct": -8.288770053475938,
"gap_pct": -0.26737967914439115,
"relative_volume": 0.35972879928618,
"market_cap": 3925937,
"price_to_book": 9876.536865782165
},
{
"ticker": "TRIO",
"name": "MC Trio Equity Buffered ETF",
"asset_class": "stocks",
"asset_type": "ETF",
"price": 63.9873,
"day_change_pct": 0.44912811689575327,
"gap_pct": 0.23359057600171015,
"relative_volume": null,
"market_cap": 73513729,
"price_to_book": 1633.6384222222223
}
]
}curl -X POST "https://api.tickerbot.io/v2/scan/subscribe" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{"q": "price_to_book > 28.62", "target_url": "https://example.com/hooks/tickerbot"}'Returns 201 with the created webhook object; deliveries carry the tickers matching the condition at each evaluation.
Use series /v2/series
Its history over time, on one aligned grid. Docs →
curl "https://api.tickerbot.io/v2/series?tickers=AAPL,MSFT&columns=close,price_to_book" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:25:28.238Z",
"interval": "1d",
"tickers": [
"AAPL",
"MSFT"
],
"columns": [
"close",
"price_to_book"
],
"count": 6,
"series": {
"AAPL": [
{
"t": "2026-08-12",
"close": 302.25,
"price_to_book": 42.94
},
{
"t": "2026-08-13",
"close": 305.26,
"price_to_book": 41.42
},
{
"t": "2026-08-14",
"close": 305.93,
"price_to_book": 41.83
}
],
"MSFT": [
{
"t": "2026-08-12",
"close": 492.43,
"price_to_book": 8.39
},
{
"t": "2026-08-13",
"close": 496.88,
"price_to_book": 8.27
},
{
"t": "2026-08-14",
"close": 495.4,
"price_to_book": 8.34
}
]
}
}Same grammar on scan, series, and webhooks; state reads take ?asof= for point-in-time answers.