curl --request POST \
--url https://api.interchange.io/api/v2/buyer/brands/resolve \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"domain": "<string>"
}
'import requests
url = "https://api.interchange.io/api/v2/buyer/brands/resolve"
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/buyer/brands/resolve', 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": {}
}
}Resolve a brand profile
Resolve a buyer domain to a brand-confirmation card (“here is how we see you”). Resolve-only — no persistence; the buyer confirms the card and the advertiser-create flow persists it. Always returns 200: resolved=true with the brand name, logo, and ADCP manifest when found; resolved=false with a builderUrl when no profile exists. A resolved card may carry a warning when the profile was built from the website and is unverified — review before saving.
curl --request POST \
--url https://api.interchange.io/api/v2/buyer/brands/resolve \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"domain": "<string>"
}
'import requests
url = "https://api.interchange.io/api/v2/buyer/brands/resolve"
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/buyer/brands/resolve', 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": {}
}
}Authorizations
API key or access token
Body
Brand domain to resolve (e.g., "nike.com")
1Response
Resolve a 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