Get product details
curl --request GET \
--url https://api.interchange.io/api/v2/buyer/discovery/{discoveryId}/products/{productId}/details \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.interchange.io/api/v2/buyer/discovery/{discoveryId}/products/{productId}/details"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.interchange.io/api/v2/buyer/discovery/{discoveryId}/products/{productId}/details', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"productId": "<string>",
"name": "<string>",
"description": "<string>",
"channel": "<string>",
"deliveryType": "guaranteed",
"salesAgentId": "<string>",
"salesAgentName": "<string>",
"storefrontId": "<string>",
"storefrontName": "<string>",
"cpm": 123,
"currency": "<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": {}
}
}Product Discovery
Get product details
Get the full detail view for a single discovered product — description, pricing, delivery windows, and creative format requirements. Requires the salesAgentId the product was discovered through.
GET
/
discovery
/
{discoveryId}
/
products
/
{productId}
/
details
Get product details
curl --request GET \
--url https://api.interchange.io/api/v2/buyer/discovery/{discoveryId}/products/{productId}/details \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.interchange.io/api/v2/buyer/discovery/{discoveryId}/products/{productId}/details"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.interchange.io/api/v2/buyer/discovery/{discoveryId}/products/{productId}/details', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"productId": "<string>",
"name": "<string>",
"description": "<string>",
"channel": "<string>",
"deliveryType": "guaranteed",
"salesAgentId": "<string>",
"salesAgentName": "<string>",
"storefrontId": "<string>",
"storefrontName": "<string>",
"cpm": 123,
"currency": "<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
Path Parameters
Discovery session id.
Minimum string length:
1Discovered product id.
Minimum string length:
1Query Parameters
Sales agent ID for the product
Minimum string length:
1Response
Get product details
Available options:
guaranteed, non_guaranteed ISO currency code for cpm. Absent when unknown.