Install
openclaw skills install @replynodes-ai/brand-logo-fetchFetch brand identity and assets from any website or domain — company logo, brand colors, fonts, social links and page metadata. Free, no signup, no API key. Use to get the logo for a company, find this company's brand colors, extract a brand kit from a domain, check what fonts a brand uses, or understand this company's branding.
openclaw skills install @replynodes-ai/brand-logo-fetchGet the public brand identity behind a domain: company name, logo and icon URLs, brand colors, fonts, social links, and page metadata — as one JSON object.
Free. No signup. No API key. No authentication. One GET request.
Use this skill whenever the task depends on the public identity of a company or website:
Do not use it for authenticated or private pages, for trademark or licence advice, or as evidence that a company legally owns an asset.
The path segment is a bare domain — not a full URL, not a path.
curl https://brand.replynodes.com/vercel.com
vercel.com, VERCEL.com, and www.vercel.com all resolve to the same brand.
A full URL (https://vercel.com) or a path (vercel.com/pricing) returns 400.
Fields appear when the public page publishes them. A missing field means "not found on the public page", not "does not exist".
domain, url — resolved brand domain and canonical page URLname — brand or company namedescription — the site's public descriptionfavicon, og_image — direct image URLslogos — array of { kind, url }; kind is favicon, apple-touch-icon, or svg
(an inline SVG logo is reported as the literal string (inline-svg))colors — array of { hex, usage, count }; usage is Primary, Secondary,
Text, Background, or Unknown. Only present when colours were extractablefonts — array of font family namessocial_links — array of public social profile URLsstyleguide — { domain, url, status, colors?, typography? }; status is
extracted or partialmeta — { cache_ttl_seconds, cached, docs, domain, fetched_at, source }Real response for https://brand.replynodes.com/linear.app (array entries trimmed —
the live colors array carried 10 entries):
{
"domain": "linear.app",
"url": "https://linear.app",
"name": "Linear",
"description": "Purpose-built for planning and building products with AI agents.",
"favicon": "https://linear.app/favicon.ico?v=2",
"og_image": "https://linear.app/api/og/main?title=Linear&v=4",
"logos": [
{ "kind": "favicon", "url": "https://linear.app/favicon.ico?v=2" },
{ "kind": "apple-touch-icon", "url": "https://linear.app/static/apple-touch-icon.png?v=2" },
{ "kind": "svg", "url": "(inline-svg)" }
],
"colors": [
{ "hex": "#9C9DA1", "usage": "Primary", "count": 74 },
{ "hex": "#626366", "usage": "Secondary", "count": 12 },
{ "hex": "#6B6B6B", "usage": "Unknown", "count": 6 }
],
"fonts": ["InterVariable"],
"styleguide": {
"domain": "linear.app",
"url": "https://linear.app",
"status": "partial",
"colors": [
{ "role": "Primary", "value": "#9C9DA1", "source": "brand_extraction", "count": 74 },
{ "role": "Secondary", "value": "#626366", "source": "brand_extraction", "count": 12 }
],
"typography": [
{ "family": "InterVariable", "source": "brand_extraction" }
]
},
"meta": {
"cache_ttl_seconds": 86400,
"cached": true,
"docs": "https://docs.replynodes.com/docs/guides/brand-intelligence",
"domain": "linear.app",
"fetched_at": "2026-09-25T04:55:57Z",
"source": "brand-intelligence"
}
}
429 with code: rate_limited and a Retry-After header.
x-ratelimit-limit, x-ratelimit-remaining, and x-ratelimit-reset are
returned on every response.meta.cached and the
x-cache: hit|miss header show whether the answer came from cache.400 invalid_request — malformed domain, a full URL, a path, or a target that
resolves to a private, internal, or link-local address.405 with Allow: GET, HEAD — any method other than GET or HEAD.429 rate_limited — per-IP rate limit exhausted.502 upstream_unavailable and 503 degraded — upstream or cache temporarily
unavailable; retry later with backoff.GET https://brand.replynodes.com/ returns the usage document instead of brand
data.
GET https://brand.replynodes.com/{domain} # brand JSON for a public domain
GET https://brand.replynodes.com/ # usage document