New260+ blocks and 240+ tools are now fully documented
DocumentationReferenceCore BlocksData Enrichment
Block

Brandfetch Block

Retrieve brand assets, logos, and colors from Brandfetch

The Brandfetch block brings brand intelligence into your workflows, returning logos, colors, typography, and company data for any brand by domain. Reach for it when a workflow needs accurate, up-to-date brand assets without manual lookups.

Overview

PropertyValue
Typebrandfetch
Categorytools
Color#000000

When to Use

  • Fetch a brand's logos and icons by domain for use in generated content or templates.
  • Pull a brand's official color palette to keep designs and emails on-brand.
  • Retrieve typography and company metadata for enrichment pipelines.
  • Look up a brand by stock ticker, ISIN, or crypto symbol in addition to its domain.
  • Search for brands by name when you only know the company name, not its domain.
  • Automate brand-asset gathering for onboarding, CRM enrichment, or marketing workflows.

Configuration

Operation

Required. Dropdown that selects what the block does. Options:

LabelID
Get Brandbrandfetch_get_brand
Search Brandsbrandfetch_search

API Key

Required. Your Brandfetch API key (stored as a password field). Passed as a Bearer token on every request.

Domain

The brand identifier to look up. Accepts a domain (nike.com), stock ticker (NKE), ISIN (US6541061031), or crypto symbol (BTC). Shown only when Operation is Get Brand.

Brand Name

The company or brand name to search for (e.g. Apple). Shown only when Operation is Search Brands.

Inputs & Outputs

Inputs

  • operation (string) — Operation to perform (brandfetch_get_brand or brandfetch_search)
  • apiKey (string) — Brandfetch API key
  • identifier (string) — Brand domain, ticker, ISIN, or crypto symbol (used by Get Brand)
  • name (string) — Brand name to search (used by Search Brands)

Outputs

The outputs available depend on the operation executed.

Get Brand (brandfetch_get_brand) outputs:

  • id (string) — Unique brand identifier
  • name (string) — Brand name
  • domain (string) — Brand domain
  • claimed (boolean) — Whether the brand profile is claimed by the brand owner
  • description (string) — Short brand description
  • longDescription (string) — Detailed brand description
  • links (json) — Social media and website links (each has name and url)
  • logos (json) — Brand logos with type, theme, and formats (each format has src, format, width, height)
  • colors (json) — Brand colors with hex, type (accent/dark/light/brand), and brightness
  • fonts (json) — Brand fonts with name, type (title/body), and origin (google/custom/system)
  • company (json) — Company firmographic data including employees, foundedYear, kind, location, and industries
  • qualityScore (number) — Data quality score from 0 to 1
  • isNsfw (boolean) — Whether the brand contains adult content

Search Brands (brandfetch_search) outputs:

  • results (array) — List of matching brands; each item contains:
    • brandId (string) — Unique brand identifier
    • name (string) — Brand name
    • domain (string) — Brand domain
    • claimed (boolean) — Whether the brand profile is claimed
    • icon (string) — Brand icon URL

Tools

Brandfetch Get Brand (brandfetch_get_brand) — Retrieves full brand assets (logos, colors, fonts, company info) for a brand identified by domain, stock ticker, ISIN, or crypto symbol. Calls GET https://api.brandfetch.io/v2/brands/{identifier}.

Brandfetch Search (brandfetch_search) — Searches for brands by name and returns a list of matches with their domains and icon URLs. Calls GET https://api.brandfetch.io/v2/search/{name}.

YAML Example

brandfetch_1:
  type: brandfetch
  name: "Brandfetch"
  inputs:
    operation: "brandfetch_get_brand"
    apiKey: "{{BRANDFETCH_API_KEY}}"
    identifier: "nike.com"
  connections:
    outgoing:
      - target: next-block-id

Search example:

brandfetch_1:
  type: brandfetch
  name: "Brandfetch"
  inputs:
    operation: "brandfetch_search"
    apiKey: "{{BRANDFETCH_API_KEY}}"
    name: "Apple"
  connections:
    outgoing:
      - target: next-block-id