# analyst_target_price_high

Highest single-analyst 12-month price target across contributing firms.

A numeric signal column on the Tickerbot computed state table (20,798+ 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: Analyst ratings
- Category: Price targets
- Type: numeric
- Unit: USD
- Update cadence: hourly
- Universe: all tickers
- History: none — live row only, not historized (no as-of reads for this column)
- Nullable: yes

## Query it

Every applicable form factor, grouped by endpoint family. 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. (https://tickerbot.io/docs/endpoints/signals.md)

#### Live — every ticker with analyst_target_price_high above a cutoff

```bash
curl -G "https://api.tickerbot.io/v2/signals/analyst_target_price_high" \
  --data-urlencode "condition=> 535" \
  -H "Authorization: Bearer YOUR_KEY"
```

Response (sampled 2026-08-18, trimmed):

```json
{
 "as_of": "2026-08-18T00:22:39.722Z",
 "signal": "analyst_target_price_high",
 "condition": "> 535",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "NVR",
   "name": "NVR, Inc.",
   "value": 7400
  },
  {
   "ticker": "BKNG",
   "name": "Booking Holdings Inc. Common Stock",
   "value": 5500
  }
 ]
}
```

#### Subscribe — webhook when a ticker starts matching

```bash
curl -X POST "https://api.tickerbot.io/v2/signals/analyst_target_price_high/subscribe" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{"condition": "> 535", "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. (https://tickerbot.io/docs/endpoints/scan.md)

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

```bash
curl -G "https://api.tickerbot.io/v2/scan" \
  --data-urlencode "q=analyst_target_price_high IS NOT NULL" \
  -d "order=analyst_target_price_high" -d "columns=analyst_target_price_high" \
  -H "Authorization: Bearer YOUR_KEY"
```

Response (sampled 2026-08-18, trimmed):

```json
{
 "as_of": "2026-08-18T00:22:39.903Z",
 "query": {
  "q": "analyst_target_price_high IS NOT NULL",
  "limit": 2,
  "order": "analyst_target_price_high",
  "dir": "desc",
  "fields": [
   "analyst_target_price_high"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "NVR",
   "name": "NVR, Inc.",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 6241,
   "day_change_pct": -0.0106,
   "gap_pct": -0.0037,
   "relative_volume": 0.627,
   "market_cap": 16809750339,
   "analyst_target_price_high": 7400
  },
  {
   "ticker": "BKNG",
   "name": "Booking Holdings Inc. Common Stock",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 204.82,
   "day_change_pct": -0.0341,
   "gap_pct": -0.0058,
   "relative_volume": null,
   "market_cap": 159337748830,
   "analyst_target_price_high": 5500
  }
 ]
}
```

#### Subscribe — webhook on a market-wide condition

```bash
curl -X POST "https://api.tickerbot.io/v2/scan/subscribe" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{"q": "analyst_target_price_high > 535", "target_url": "https://example.com/hooks/tickerbot"}'
```

Returns 201 with the created webhook object; deliveries carry the tickers matching the condition at each evaluation.

## Related signals (Price targets)

- [above_price_target](https://tickerbot.io/docs/signals/above_price_target.md)
- [analyst_consensus_target_price](https://tickerbot.io/docs/signals/analyst_consensus_target_price.md)
- [analyst_target_price_low](https://tickerbot.io/docs/signals/analyst_target_price_low.md)
- [analyst_target_upside_pct](https://tickerbot.io/docs/signals/analyst_target_upside_pct.md)
- [below_price_target](https://tickerbot.io/docs/signals/below_price_target.md)
- [target_downside_above_10pct](https://tickerbot.io/docs/signals/target_downside_above_10pct.md)
- [target_upside_above_10pct](https://tickerbot.io/docs/signals/target_upside_above_10pct.md)
- [target_upside_above_25pct](https://tickerbot.io/docs/signals/target_upside_above_25pct.md)

---

Full catalog: https://tickerbot.io/docs/signals.md · Schema: https://tickerbot.io/docs/schema.md · Interactive: https://tickerbot.io/explore?signal=analyst_target_price_high · HTML: https://tickerbot.io/docs/signals/analyst_target_price_high/
