# afterhours_price

Last after-hours price, if available.

A numeric signal column on the Tickerbot computed state table (21,082+ ticker rows) — computed by the platform, queryable by bare name across the API. Values are NULL on rows the signal doesn't apply to.

- Group: Price
- Category: Session levels & position
- Type: numeric
- Unit: USD
- Update cadence: 1 min · mkt hrs
- Intervals: 1m/1h/1d
- Universe: all tickers
- History: none
- Nullable: yes

## Query it

Every applicable form factor, grouped by endpoint family. Response payloads are real captures, sampled 2026-09-18 and trimmed; your run's values and dates will differ.

### The whole market, filtered on it — `/v2/scan` (https://tickerbot.io/docs/endpoints/scan.md)

#### Live — the whole market, ranked by this column

```bash
curl -X POST "https://api.tickerbot.io/v2/scan" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{ "q": "afterhours_price IS NOT NULL", "order": "afterhours_price", "columns": "afterhours_price" }'
```

#### As-of — the same scan at a past date

```bash
curl -X POST "https://api.tickerbot.io/v2/scan" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{ "q": "afterhours_price IS NOT NULL", "order": "afterhours_price", "columns": "afterhours_price", "asof": "2026-06-28" }'
```

### Its history — `/v2/series` (https://tickerbot.io/docs/endpoints/series.md)

#### History — the column on an aligned time grid

```bash
curl "https://api.tickerbot.io/v2/series?tickers=AAPL,MSFT&columns=close,afterhours_price" \
  -H "Authorization: Bearer YOUR_KEY"
```

## Related signals (Session levels & position)

- [above_premarket_high](https://tickerbot.io/docs/signals/above_premarket_high.md)
- [above_session_open](https://tickerbot.io/docs/signals/above_session_open.md)
- [above_yesterday_close](https://tickerbot.io/docs/signals/above_yesterday_close.md)
- [above_yesterday_high](https://tickerbot.io/docs/signals/above_yesterday_high.md)
- [at_session_high](https://tickerbot.io/docs/signals/at_session_high.md)
- [at_session_low](https://tickerbot.io/docs/signals/at_session_low.md)
- [below_premarket_low](https://tickerbot.io/docs/signals/below_premarket_low.md)
- [below_yesterday_low](https://tickerbot.io/docs/signals/below_yesterday_low.md)
- [premarket_price](https://tickerbot.io/docs/signals/premarket_price.md)
- [session_high](https://tickerbot.io/docs/signals/session_high.md)
- [session_low](https://tickerbot.io/docs/signals/session_low.md)
- [session_open](https://tickerbot.io/docs/signals/session_open.md)
- [tested_session_high_recent](https://tickerbot.io/docs/signals/tested_session_high_recent.md)
- [tested_session_low_recent](https://tickerbot.io/docs/signals/tested_session_low_recent.md)

---

Full catalog: https://tickerbot.io/docs/signals/catalog.md · Schema: https://tickerbot.io/docs/schema.md · HTML: https://tickerbot.io/docs/signals/afterhours_price/
