# branding_icon_url

URL of the company's square icon image.

A text 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: Profile
- Category: Identifiers & reference
- Type: text
- Update cadence: post-close daily
- 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 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=branding_icon_url IS NOT NULL" \
  -d "order=branding_icon_url" -d "columns=branding_icon_url" \
  -H "Authorization: Bearer YOUR_KEY"
```

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

```json
{
 "as_of": "2026-08-18T00:23:02.550Z",
 "query": {
  "q": "branding_icon_url IS NOT NULL",
  "limit": 2,
  "order": "branding_icon_url",
  "dir": "desc",
  "fields": [
   "branding_icon_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_icon_url": "https://api.polygon.io/v1/reference/company-branding/enltZXdvcmtzLmNvbQ/images/2026-08-01_icon.png"
  },
  {
   "ticker": "ZWS",
   "name": "Zurn Elkay Water Solutions Corporation",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 50.31,
   "day_change_pct": -0.0129,
   "gap_pct": -0.0049,
   "relative_volume": 0.6021,
   "market_cap": 8454093024,
   "branding_icon_url": "https://api.polygon.io/v1/reference/company-branding/enVybmVsa2F5LmNvbQ/images/2026-08-01_icon.jpeg"
  }
 ]
}
```

## Related signals (Identifiers & reference)

- [active](https://tickerbot.io/docs/signals/active.md)
- [address_address1](https://tickerbot.io/docs/signals/address_address1.md)
- [address_city](https://tickerbot.io/docs/signals/address_city.md)
- [address_postal_code](https://tickerbot.io/docs/signals/address_postal_code.md)
- [address_state](https://tickerbot.io/docs/signals/address_state.md)
- [branding_logo_url](https://tickerbot.io/docs/signals/branding_logo_url.md)
- [cik](https://tickerbot.io/docs/signals/cik.md)
- [composite_figi](https://tickerbot.io/docs/signals/composite_figi.md)
- [description](https://tickerbot.io/docs/signals/description.md)
- [homepage_url](https://tickerbot.io/docs/signals/homepage_url.md)
- [inactive_at](https://tickerbot.io/docs/signals/inactive_at.md)
- [inactive_reason](https://tickerbot.io/docs/signals/inactive_reason.md)
- [list_date](https://tickerbot.io/docs/signals/list_date.md)
- [name](https://tickerbot.io/docs/signals/name.md)
- [phone_number](https://tickerbot.io/docs/signals/phone_number.md)

---

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