Concepts › Signals › Profile › Identifiers & reference
branding_logo_url
URL of the company's logo image.
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=branding_logo_url IS NOT NULL" \
-d "order=branding_logo_url" -d "columns=branding_logo_url" \
-H "Authorization: Bearer YOUR_KEY"Response (sampled 2026-08-18, trimmed)
{
"as_of": "2026-08-18T00:23:02.574Z",
"query": {
"q": "branding_logo_url IS NOT NULL",
"limit": 2,
"order": "branding_logo_url",
"dir": "desc",
"fields": [
"branding_logo_url"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "ZYME",
"name": "Zymeworks Inc.",
"asset_class": "stocks",
"asset_type": "CS",
"price": 25.27,
"day_change_pct": 0.006,
"gap_pct": -0.0044,
"relative_volume": 0.6695,
"market_cap": 1782496133,
"branding_logo_url": "https://api.polygon.io/v1/reference/company-branding/enltZXdvcmtzLmNvbQ/images/2026-08-01_logo.png"
},
{
"ticker": "TOP",
"name": "TOP Financial Group Limited Class A Ordinary Shares",
"asset_class": "stocks",
"asset_type": "CS",
"price": 11.249,
"day_change_pct": 0.0107,
"gap_pct": -0.0117,
"relative_volume": 0.7434,
"market_cap": 1376823527,
"branding_logo_url": "https://api.polygon.io/v1/reference/company-branding/enlmZ2wuY29t/images/2026-08-01_logo.png"
}
]
}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.