Preview market readiness
curl --request POST \
--url https://api.interchange.io/api/v2/market-readiness \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"cells": [
{}
]
}
'import requests
url = "https://api.interchange.io/api/v2/market-readiness"
payload = { "cells": [{}] }
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({cells: [{}]})
};
fetch('https://api.interchange.io/api/v2/market-readiness', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"cells": [
{
"countryCode": "AD",
"channel": "audio",
"pilotState": "open",
"pilotScope": "domestic",
"domesticSupply": {
"scope": "domestic",
"status": "available",
"storefrontCount": 4503599627370495,
"namedStorefronts": [
{
"name": "<string>",
"domain": "<string>"
}
],
"sourceHealth": "healthy"
},
"globalSupply": {
"scope": "domestic",
"status": "available",
"storefrontCount": 4503599627370495,
"namedStorefronts": [
{
"name": "<string>",
"domain": "<string>"
}
],
"sourceHealth": "healthy"
},
"signupGuidance": {
"route": "proceed",
"productReadiness": "ready",
"marketAvailability": "not_assessed",
"supplyReadiness": "available",
"options": [
"continue"
]
}
}
]
}{
"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": {}
}
}Account
Preview market readiness
Return public-safe pilot state and supply evidence for requested ISO country × canonical channel cells. Pilot state is an explicit human decision; storefront discovery never opens a market. Global platform coverage is returned as an overlay, not as a country. Supply-query failures are reported as unknown. This endpoint does not enroll a buyer or bypass the alpha opt-in gate.
POST
/
market-readiness
Preview market readiness
curl --request POST \
--url https://api.interchange.io/api/v2/market-readiness \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"cells": [
{}
]
}
'import requests
url = "https://api.interchange.io/api/v2/market-readiness"
payload = { "cells": [{}] }
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({cells: [{}]})
};
fetch('https://api.interchange.io/api/v2/market-readiness', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"cells": [
{
"countryCode": "AD",
"channel": "audio",
"pilotState": "open",
"pilotScope": "domestic",
"domesticSupply": {
"scope": "domestic",
"status": "available",
"storefrontCount": 4503599627370495,
"namedStorefronts": [
{
"name": "<string>",
"domain": "<string>"
}
],
"sourceHealth": "healthy"
},
"globalSupply": {
"scope": "domestic",
"status": "available",
"storefrontCount": 4503599627370495,
"namedStorefronts": [
{
"name": "<string>",
"domain": "<string>"
}
],
"sourceHealth": "healthy"
},
"signupGuidance": {
"route": "proceed",
"productReadiness": "ready",
"marketAvailability": "not_assessed",
"supplyReadiness": "available",
"options": [
"continue"
]
}
}
]
}{
"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
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
A bounded set of ISO country × canonical channel cells to preview.
Required array length:
1 - 50 elementsShow child attributes
Show child attributes
Response
Preview market readiness
Product/support pilot state, explicit unassessed market availability, separate supply evidence, and scoped signup guidance.
Show child attributes
Show child attributes