Get signal
curl --request GET \
--url https://api.interchange.io/api/v2/storefront/signals/{signalId} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.interchange.io/api/v2/storefront/signals/{signalId}"
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/storefront/signals/{signalId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"signal": {
"id": 0,
"signalId": "<string>",
"adcpAgentId": 0,
"name": "<string>",
"description": "<string>",
"keyType": [],
"regions": [],
"metadata": {},
"isLive": true,
"archivedAt": "2023-11-07T05:31:56Z",
"createdBy": "<string>",
"updatedBy": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
},
"access": [
{
"id": 0,
"signalId": 0,
"advertiserId": 123,
"price": {
"pricing_option_id": "<string>",
"pricing_model": "cpm",
"currency": "<string>",
"fixed_price": 1,
"floor_price": 1,
"max_bid": true,
"price_guidance": {
"p25": 1,
"p50": 1,
"p75": 1,
"p90": 1
},
"min_spend_per_package": 1,
"price_breakdown": {
"list_price": 123,
"adjustments": [
{}
]
},
"eligible_adjustments": [
"fee"
]
},
"archivedAt": "2023-11-07T05:31:56Z",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
]
}{
"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": {}
}
}Signals
Get signal
Get a signal by its identifier, including access records.
GET
/
signals
/
{signalId}
Get signal
curl --request GET \
--url https://api.interchange.io/api/v2/storefront/signals/{signalId} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.interchange.io/api/v2/storefront/signals/{signalId}"
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/storefront/signals/{signalId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"signal": {
"id": 0,
"signalId": "<string>",
"adcpAgentId": 0,
"name": "<string>",
"description": "<string>",
"keyType": [],
"regions": [],
"metadata": {},
"isLive": true,
"archivedAt": "2023-11-07T05:31:56Z",
"createdBy": "<string>",
"updatedBy": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
},
"access": [
{
"id": 0,
"signalId": 0,
"advertiserId": 123,
"price": {
"pricing_option_id": "<string>",
"pricing_model": "cpm",
"currency": "<string>",
"fixed_price": 1,
"floor_price": 1,
"max_bid": true,
"price_guidance": {
"p25": 1,
"p50": 1,
"p75": 1,
"p90": 1
},
"min_spend_per_package": 1,
"price_breakdown": {
"list_price": 123,
"adjustments": [
{}
]
},
"eligible_adjustments": [
"fee"
]
},
"archivedAt": "2023-11-07T05:31:56Z",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
]
}{
"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": {}
}
}⌘I