View as markdown
Concepts › SignalsFundamentals Income statement

revenue_per_share_ttm

Trailing-12m revenue divided by diluted shares outstanding. USD per share.

Watch this signal live on real tickers: Open in Explore →

At a glance

Typenumeric
GroupFundamentals
CategoryIncome statement
UnitUSD
Update cadencepost-close daily
Intervals1d
Universeall tickers
Historyfull · since 2010
Nullableyes — NULL where not applicable

Income-statement lines as reported, EPS, and their growth rates.

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 →

Live — every ticker with revenue_per_share_ttm above a cutoff
curl -G "https://api.tickerbot.io/v2/signals/revenue_per_share_ttm" \
  --data-urlencode "condition=> 709.87" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-08-18T00:25:40.666Z",
 "signal": "revenue_per_share_ttm",
 "condition": "> 709.87",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "GRVY",
   "name": "GRAVITY Co., Ltd.",
   "value": 80917.07
  },
  {
   "ticker": "KEP",
   "name": "Korea Electric Power Corp",
   "value": 75995.18
  }
 ]
}
As-of — the same read at a past date
curl -G "https://api.tickerbot.io/v2/signals/revenue_per_share_ttm" \
  --data-urlencode "condition=> 709.87" \
  -d "asof=2026-05-20" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-05-20",
 "signal": "revenue_per_share_ttm",
 "condition": "> 709.87",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "DIT",
   "name": "AMCON Distributing Co.",
   "value": 13739942.858536586
  },
  {
   "ticker": "MOG.A",
   "name": "Moog Inc.",
   "value": 9302708.43373494
  }
 ]
}
Subscribe — webhook when a ticker starts matching
curl -X POST "https://api.tickerbot.io/v2/signals/revenue_per_share_ttm/subscribe" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{"condition": "> 709.87", "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 →

Live — the whole market, ranked by this column
curl -G "https://api.tickerbot.io/v2/scan" \
  --data-urlencode "q=revenue_per_share_ttm IS NOT NULL" \
  -d "order=revenue_per_share_ttm" -d "columns=revenue_per_share_ttm" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-08-18T00:25:43.264Z",
 "query": {
  "q": "revenue_per_share_ttm IS NOT NULL",
  "limit": 2,
  "order": "revenue_per_share_ttm",
  "dir": "desc",
  "fields": [
   "revenue_per_share_ttm"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "GRVY",
   "name": "GRAVITY Co., Ltd.",
   "asset_class": "stocks",
   "asset_type": "ADRC",
   "price": 68.79,
   "day_change_pct": -0.0226,
   "gap_pct": 0.0058,
   "relative_volume": null,
   "market_cap": 489063581,
   "revenue_per_share_ttm": 80917.07
  },
  {
   "ticker": "KEP",
   "name": "Korea Electric Power Corp",
   "asset_class": "stocks",
   "asset_type": "ADRC",
   "price": 11.727,
   "day_change_pct": -0.0037,
   "gap_pct": 0.0008,
   "relative_volume": null,
   "market_cap": 15111834372,
   "revenue_per_share_ttm": 75995.18
  }
 ]
}
As-of — the same scan at a past date
curl -G "https://api.tickerbot.io/v2/scan" \
  --data-urlencode "q=revenue_per_share_ttm IS NOT NULL" \
  -d "order=revenue_per_share_ttm" -d "columns=revenue_per_share_ttm" \
  -d "asof=2026-05-20" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-05-20",
 "query": {
  "q": "revenue_per_share_ttm IS NOT NULL",
  "asof": "2026-05-20",
  "interval": "auto",
  "limit": 2,
  "order": "revenue_per_share_ttm",
  "dir": "desc",
  "fields": [
   "revenue_per_share_ttm"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "DIT",
   "name": "AMCON Distributing Co.",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 83.26,
   "day_change_pct": 2.2598870056497216,
   "gap_pct": -1.2281994595922379,
   "relative_volume": 0.4591957188950972,
   "market_cap": 17068,
   "revenue_per_share_ttm": 13739942.858536586
  },
  {
   "ticker": "MOG.A",
   "name": "Moog Inc.",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 316.58,
   "day_change_pct": 4.086799276672697,
   "gap_pct": 0.785796481999028,
   "relative_volume": 0.9834587664894252,
   "market_cap": 131381,
   "revenue_per_share_ttm": 9302708.43373494
  }
 ]
}
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": "revenue_per_share_ttm > 709.87", "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 →

History — the column on an aligned time grid
curl "https://api.tickerbot.io/v2/series?tickers=AAPL,MSFT&columns=close,revenue_per_share_ttm" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-08-18T00:25:45.429Z",
 "interval": "1d",
 "tickers": [
  "AAPL",
  "MSFT"
 ],
 "columns": [
  "close",
  "revenue_per_share_ttm"
 ],
 "count": 6,
 "series": {
  "AAPL": [
   {
    "t": "2026-08-12",
    "close": 302.25,
    "revenue_per_share_ttm": 31.71
   },
   {
    "t": "2026-08-13",
    "close": 305.26,
    "revenue_per_share_ttm": 31.71
   },
   {
    "t": "2026-08-14",
    "close": 305.93,
    "revenue_per_share_ttm": 31.71
   }
  ],
  "MSFT": [
   {
    "t": "2026-08-12",
    "close": 492.43,
    "revenue_per_share_ttm": 44.67
   },
   {
    "t": "2026-08-13",
    "close": 496.88,
    "revenue_per_share_ttm": 44.67
   },
   {
    "t": "2026-08-14",
    "close": 495.4,
    "revenue_per_share_ttm": 44.67
   }
  ]
 }
}

Same grammar on scan, series, and webhooks; state reads take ?asof= for point-in-time answers.

Related signals — Income statement