Concepts › Signals › Profile › Identifiers & reference
homepage_url
Company homepage URL.
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) |
| Nullable | yes — NULL where not applicable |
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=homepage_url IS NOT NULL" \
-d "order=homepage_url" -d "columns=homepage_url" \
-H "Authorization: Bearer YOUR_KEY"Response (sampled 2026-08-18, trimmed)
{
"as_of": "2026-08-18T00:24:11.267Z",
"query": {
"q": "homepage_url IS NOT NULL",
"limit": 2,
"order": "homepage_url",
"dir": "desc",
"fields": [
"homepage_url"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "ZTO",
"name": "ZTO Express (Cayman) Inc. American Depositary Shares, each representing one Class A ordinary share",
"asset_class": "stocks",
"asset_type": "ADRC",
"price": 22.905,
"day_change_pct": 0.0002,
"gap_pct": 0.0017,
"relative_volume": 0.9278,
"market_cap": 17409159232,
"homepage_url": "https://zto.investorroom.com"
},
{
"ticker": "SAFX",
"name": "XCF Global, Inc. Class A Common Stock",
"asset_class": "stocks",
"asset_type": "CS",
"price": 0.426,
"day_change_pct": -0.0362,
"gap_pct": -0.036,
"relative_volume": 0.2129,
"market_cap": 178413401,
"homepage_url": "https://xcf.global/overview/default.aspx"
}
]
}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.