Get Trust Center favicon
curl --request GET \
--url https://api.trycomp.ai/v1/trust-access/{friendlyUrl}/faviconconst options = {method: 'GET'};
fetch('https://api.trycomp.ai/v1/trust-access/{friendlyUrl}/favicon', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/trust-access/{friendlyUrl}/favicon"
response = requests.get(url)
print(response.text){
"faviconUrl": "<string>"
}Trust Access
Get Trust Center favicon | Comp AI API
Retrieve the favicon URL used by a published Trust Center so embedded or mirrored experiences can match branding.
GET
/
v1
/
trust-access
/
{friendlyUrl}
/
favicon
Get Trust Center favicon
curl --request GET \
--url https://api.trycomp.ai/v1/trust-access/{friendlyUrl}/faviconconst options = {method: 'GET'};
fetch('https://api.trycomp.ai/v1/trust-access/{friendlyUrl}/favicon', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/trust-access/{friendlyUrl}/favicon"
response = requests.get(url)
print(response.text){
"faviconUrl": "<string>"
}Was this page helpful?

