Concepts › Signals › Profile › Identifiers & reference
name
Company or asset display name.
Watch this signal live on real tickers: Open in Explore →
At a glance
| Type | text |
| Group | Profile |
| Category | Identifiers & reference |
| Update cadence | post-close daily |
| Universe | all tickers |
| History | none — live row only, not historized (no as-of reads) |
Which company this is: name, IDs (CIK, FIGI), listing status, contact, branding, employees.
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 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=name IS NOT NULL" \
-d "order=name" -d "columns=name" \
-H "Authorization: Bearer YOUR_KEY"Response (sampled 2026-08-18, trimmed)
{
"as_of": "2026-08-18T00:24:45.332Z",
"query": {
"q": "name IS NOT NULL",
"limit": 2,
"order": "name",
"dir": "desc",
"fields": [
"name"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "TYYY",
"name": "xETFs TSLA Daily Income ETF",
"asset_class": "stocks",
"asset_type": "ETS",
"price": 36.35,
"day_change_pct": -0.0072,
"gap_pct": -0.0039,
"relative_volume": 2.3617,
"market_cap": null
},
{
"ticker": "NYYY",
"name": "xETFs NVDA Daily Income ETF",
"asset_class": "stocks",
"asset_type": "ETS",
"price": 45.745,
"day_change_pct": 0,
"gap_pct": 0.0025,
"relative_volume": null,
"market_cap": null
}
]
}Same grammar on scan and webhooks. This column is live-tense only — it isn't historized, so ?asof= reads and series pulls don't carry it.