Brand
Extract brand identity from any website. Analyzes DOM structure and CSS to find colors, fonts, logos, and favicons.
POST
/v1/brandExtract brand identity (colors, fonts, logos) from a URL.
Request body
| Field | Type | Required | Description |
|---|---|---|---|
url | string | Yes | URL of the site to analyze. |
Response
| Field | Type | Description |
|---|---|---|
colors | array | Detected colors with hex value, inferred usage, and occurrence count. |
fonts | string[] | Font families found in stylesheets and inline styles. |
logo_url | string? | URL of the detected logo image, if found. |
favicon_url | string? | Favicon URL from link tags or the default /favicon.ico path. |
Note
Brand extraction works entirely from the HTML and inline CSS -- no headless browser is used. Colors are detected from inline styles, style tags, and common CSS patterns. Results are best on marketing pages and homepages.