Concepts › Signals › Profile › Identifiers & reference
address_address1
Company headquarters street address.
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=address_address1 IS NOT NULL" \
-d "order=address_address1" -d "columns=address_address1" \
-H "Authorization: Bearer YOUR_KEY"Response (sampled 2026-08-18, trimmed)
{
"as_of": "2026-08-18T00:22:33.675Z",
"query": {
"q": "address_address1 IS NOT NULL",
"limit": 2,
"order": "address_address1",
"dir": "desc",
"fields": [
"address_address1"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "IPB",
"name": "Merrill Lynch Depositor Inc. 6.0518% Index Plus Trust Certificates Series 2003-1",
"asset_class": "stocks",
"asset_type": "SP",
"price": 25.22,
"day_change_pct": -0.0012,
"gap_pct": -0.0023,
"relative_volume": null,
"market_cap": null,
"address_address1": "WORLD FINANCIAL CENTER"
},
{
"ticker": "PYT",
"name": "Merrill Lynch Depositor PPLUS Floating Rate Call TR Cert. Ser GSC-2(Goldman Sachs)",
"asset_class": "stocks",
"asset_type": "SP",
"price": 23.605,
"day_change_pct": 0.0002,
"gap_pct": -0.0036,
"relative_volume": 0.099,
"market_cap": null,
"address_address1": "WORLD FINANCIAL CENTER"
}
]
}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.