Preview a brand URL
curl --request GET \
--url https://airgraphic.io/api/brand-previewconst options = {method: 'GET'};
fetch('https://airgraphic.io/api/brand-preview', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"fonts": [
"<string>"
],
"primaryFont": "<string>",
"logo": "<string>",
"palette": [
"<string>"
]
}{
"error": "<string>",
"code": "<string>"
}Brands
Preview a brand URL
Extracts public logo, palette, and font hints from a brand website.
GET
/
api
/
brand-preview
Preview a brand URL
curl --request GET \
--url https://airgraphic.io/api/brand-previewconst options = {method: 'GET'};
fetch('https://airgraphic.io/api/brand-preview', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"fonts": [
"<string>"
],
"primaryFont": "<string>",
"logo": "<string>",
"palette": [
"<string>"
]
}{
"error": "<string>",
"code": "<string>"
}