Resolve brand profile
curl --request POST \
--url https://api.interchange.io/api/v2/storefront/resolve-brand \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"domain": "<string>"
}
'import requests
url = "https://api.interchange.io/api/v2/storefront/resolve-brand"
payload = { "domain": "<string>" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({domain: '<string>'})
};
fetch('https://api.interchange.io/api/v2/storefront/resolve-brand', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"resolved": true,
"domain": "<string>",
"brandName": "<string>",
"logoUrl": "<string>",
"logoBackground": "<string>",
"manifestUrl": "<string>",
"manifest": {},
"registryEntry": {},
"authorizedOperators": [
{}
],
"houseBrand": true,
"warning": "<string>",
"error": "<string>",
"builderUrl": "<string>"
}{
"data": null,
"error": {
"code": "<string>",
"message": "<string>",
"field": "<string>",
"details": {}
}
}{
"data": null,
"error": {
"code": "<string>",
"message": "<string>",
"field": "<string>",
"details": {}
}
}{
"data": null,
"error": {
"code": "<string>",
"message": "<string>",
"field": "<string>",
"details": {}
}
}{
"data": null,
"error": {
"code": "<string>",
"message": "<string>",
"field": "<string>",
"details": {}
}
}Storefront
Resolve brand profile
Look up a brand profile on agenticadvertising.org by domain. Returns brand name, logo URL, and profile metadata when found; returns resolved=false plus a builderUrl when no profile exists.
POST
/
resolve-brand
Resolve brand profile
curl --request POST \
--url https://api.interchange.io/api/v2/storefront/resolve-brand \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"domain": "<string>"
}
'import requests
url = "https://api.interchange.io/api/v2/storefront/resolve-brand"
payload = { "domain": "<string>" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({domain: '<string>'})
};
fetch('https://api.interchange.io/api/v2/storefront/resolve-brand', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"resolved": true,
"domain": "<string>",
"brandName": "<string>",
"logoUrl": "<string>",
"logoBackground": "<string>",
"manifestUrl": "<string>",
"manifest": {},
"registryEntry": {},
"authorizedOperators": [
{}
],
"houseBrand": true,
"warning": "<string>",
"error": "<string>",
"builderUrl": "<string>"
}{
"data": null,
"error": {
"code": "<string>",
"message": "<string>",
"field": "<string>",
"details": {}
}
}{
"data": null,
"error": {
"code": "<string>",
"message": "<string>",
"field": "<string>",
"details": {}
}
}{
"data": null,
"error": {
"code": "<string>",
"message": "<string>",
"field": "<string>",
"details": {}
}
}{
"data": null,
"error": {
"code": "<string>",
"message": "<string>",
"field": "<string>",
"details": {}
}
}Authorizations
API key or access token
Body
application/json
Brand domain to resolve (e.g., "nike.com")
Minimum string length:
1Response
Resolve brand profile
Whether a brand profile was found
Hint for the logo background (e.g. light/dark), when known
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Set when resolved is false -- URL where the caller can register a manifest