# Brandfetch

Brandfetch offers an API that retrieves company logos, brand colors, and other visual assets, helping marketers and developers maintain consistent branding across apps

- **Category:** images & design
- **Auth:** API_KEY
- **Composio Managed App Available?** N/A
- **Tools:** 9
- **Triggers:** 0
- **Slug:** `BRANDFETCH`
- **Version:** 20260316_00

## Tools

### Get Brand Information

**Slug:** `BRANDFETCH_GET_BRAND_INFO`

Retrieves brand information including logos, colors, fonts, and company details using a domain, Brand ID, ISIN, or stock ticker. Logo data may be absent for some domains — do not assume logos are always returned. The response includes multiple logo types (e.g., icon, logo) and themes; explicitly select the desired type and size rather than defaulting to the first URL.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `identifier` | string | Yes | Identifier to retrieve brand data. Can be a domain (e.g., 'nike.com'), Brand ID (e.g., 'id_0dwKPKT'), ISIN (e.g., 'US6541061031'), or Stock Ticker (e.g., 'NKE') For best results, use an exact domain or Brand ID. If only a vague brand name is available, run BRANDFETCH_SEARCH_BRANDS first to obtain the correct identifier — ambiguous inputs may return wrong or empty results. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get GraphQL API Version

**Slug:** `BRANDFETCH_GET_GRAPHQL_VERSION`

Tool to retrieve the Brandfetch GraphQL API version. Use when you need to check the current API version via the GraphQL endpoint.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `query` | string | No | GraphQL query string to retrieve the API version |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Brandfetch Taxonomy

**Slug:** `BRANDFETCH_GET_TAXONOMY`

Tool to retrieve Brandfetch's taxonomy via GraphQL API. Use this to get a complete list of industries, countries, and geographic regions used in Brandfetch's classification system. The taxonomy includes hierarchical industry data with parent-child relationships.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `query` | string | No | GraphQL query string for taxonomy data. The taxonomy query can return three fields: industries (list of Industry objects with id, urn, name, slug, emoji, depth, children, parent, banner), countries (list), and geographicRegions (list). You can customize which fields to retrieve. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Transaction Info

**Slug:** `BRANDFETCH_GET_TRANSACTION_INFO`

This tool converts payment transaction labels into detailed merchant brand information. It takes a transaction label (like what you see on your credit card statement) and returns comprehensive brand data (including logos, colors, fonts, and company information). It is useful for identifying merchants and enriching transaction data with detailed brand information.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `countryCode` | string | Yes | ISO 3166-1 alpha-2 country code where the transaction took place |
| `transactionLabel` | string | Yes | The raw transaction text from credit card statement |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Subscribable Events

**Slug:** `BRANDFETCH_LIST_SUBSCRIBABLE_EVENTS`

Tool to retrieve all available webhook event types that can be subscribed to via the Brandfetch GraphQL API. Returns event names and descriptions for webhook configuration. Available events include brand.claimed, brand.deleted, brand.updated, brand.company.updated, and brand.verified.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Webhooks

**Slug:** `BRANDFETCH_LIST_WEBHOOKS`

Tool to retrieve a list of all webhooks via GraphQL API. Use when you need to query webhook configurations and their statuses in the Brandfetch system.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `query` | string | No | GraphQL query string to list webhooks. Default query retrieves all webhooks with their urn, url, description, and enabled status. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Search Brands

**Slug:** `BRANDFETCH_SEARCH_BRANDS`

Searches for brands by name and returns matching brand information including URLs and icons, enabling rich autocomplete experiences. Use this tool first to resolve a vague name or ticker to a precise domain or brandId before calling BRANDFETCH_GET_BRAND_INFO or BRANDFETCH_GET_LOGO. Results may include multiple candidates; disambiguate using the domain, geography, qualityScore, and verified fields rather than defaulting to the first result. Returns empty results for new or niche brands.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | Yes | The brand name to search for |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |
