Preview a creative tag sheet
curl --request POST \
--url https://api.interchange.io/api/v2/buyer/creatives/tag-sheet-preview \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"asset": {
"data_url": "<string>",
"name": "<string>",
"declared_sizes": [
{
"width": 4503599627370495,
"height": 4503599627370495
}
]
}
}
'import requests
url = "https://api.interchange.io/api/v2/buyer/creatives/tag-sheet-preview"
payload = { "asset": {
"data_url": "<string>",
"name": "<string>",
"declared_sizes": [
{
"width": 4503599627370495,
"height": 4503599627370495
}
]
} }
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({
asset: {
data_url: '<string>',
name: '<string>',
declared_sizes: [{width: 4503599627370495, height: 4503599627370495}]
}
})
};
fetch('https://api.interchange.io/api/v2/buyer/creatives/tag-sheet-preview', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"filename": "<string>",
"creative_count": 4503599627370495,
"rows": [
{
"id": "<string>",
"name": "<string>",
"declared_sizes": [
{
"width": 4503599627370495,
"height": 4503599627370495
}
],
"needs_destination": true
}
]
}{
"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": {}
}
}Creatives
Preview a creative tag sheet
Parses a CSV, XLS, or XLSX tag sheet without persisting it and returns content-safe creative names, declared sizes, and destination requirements. Tag markup and source URLs are never returned.
POST
/
creatives
/
tag-sheet-preview
Preview a creative tag sheet
curl --request POST \
--url https://api.interchange.io/api/v2/buyer/creatives/tag-sheet-preview \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"asset": {
"data_url": "<string>",
"name": "<string>",
"declared_sizes": [
{
"width": 4503599627370495,
"height": 4503599627370495
}
]
}
}
'import requests
url = "https://api.interchange.io/api/v2/buyer/creatives/tag-sheet-preview"
payload = { "asset": {
"data_url": "<string>",
"name": "<string>",
"declared_sizes": [
{
"width": 4503599627370495,
"height": 4503599627370495
}
]
} }
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({
asset: {
data_url: '<string>',
name: '<string>',
declared_sizes: [{width: 4503599627370495, height: 4503599627370495}]
}
})
};
fetch('https://api.interchange.io/api/v2/buyer/creatives/tag-sheet-preview', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"filename": "<string>",
"creative_count": 4503599627370495,
"rows": [
{
"id": "<string>",
"name": "<string>",
"declared_sizes": [
{
"width": 4503599627370495,
"height": 4503599627370495
}
],
"needs_destination": true
}
]
}{
"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
Show child attributes
Show child attributes