Get a single demo flow
curl --request GET \
--url https://api.voice-agents.miraiminds.co/v1/showcase/flows/{flow_id}import requests
url = "https://api.voice-agents.miraiminds.co/v1/showcase/flows/{flow_id}"
response = requests.get(url)
print(response.text)const url = 'https://api.voice-agents.miraiminds.co/v1/showcase/flows/{flow_id}';
const options = {method: 'GET'};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));{
"success": true,
"data": {
"flowType": "abandoned_cart",
"title": "Abandoned cart recovery",
"tagline": "Avg 18% recovery",
"description": "AI calls within 90 seconds of cart drop. Handles objections, shares the link, and recovers the order.",
"durationSecs": 58,
"audioUrl": "https://storage.miraiminds.co/voice-agents/production/flows/abandoned_cart_demo.wav",
"sortOrder": 1,
"workspace": "507f1f77bcf86cd799439011",
"organization": "507f1f77bcf86cd799439010",
"assistant_id": "507f1f77bcf86cd799439013",
"_id": "507f1f77bcf86cd799439012",
"iconColor": "#E1F5EE",
"waveformUrl": "https://storage.miraiminds.co/voice-agents/production/flows/abandoned_cart_demo.json",
"highlightMoments": [
{
"atSecs": 12,
"label": "IVR detected"
}
],
"whatToNotice": "Notice the objection handling at 0:38 — AI listens first before responding.",
"tags": [
"cart_recovery",
"hindi"
]
}
}Showcase
Get a single demo flow
GET
/
v1
/
showcase
/
flows
/
{flow_id}
Get a single demo flow
curl --request GET \
--url https://api.voice-agents.miraiminds.co/v1/showcase/flows/{flow_id}import requests
url = "https://api.voice-agents.miraiminds.co/v1/showcase/flows/{flow_id}"
response = requests.get(url)
print(response.text)const url = 'https://api.voice-agents.miraiminds.co/v1/showcase/flows/{flow_id}';
const options = {method: 'GET'};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));{
"success": true,
"data": {
"flowType": "abandoned_cart",
"title": "Abandoned cart recovery",
"tagline": "Avg 18% recovery",
"description": "AI calls within 90 seconds of cart drop. Handles objections, shares the link, and recovers the order.",
"durationSecs": 58,
"audioUrl": "https://storage.miraiminds.co/voice-agents/production/flows/abandoned_cart_demo.wav",
"sortOrder": 1,
"workspace": "507f1f77bcf86cd799439011",
"organization": "507f1f77bcf86cd799439010",
"assistant_id": "507f1f77bcf86cd799439013",
"_id": "507f1f77bcf86cd799439012",
"iconColor": "#E1F5EE",
"waveformUrl": "https://storage.miraiminds.co/voice-agents/production/flows/abandoned_cart_demo.json",
"highlightMoments": [
{
"atSecs": 12,
"label": "IVR detected"
}
],
"whatToNotice": "Notice the objection handling at 0:38 — AI listens first before responding.",
"tags": [
"cart_recovery",
"hindi"
]
}
}⌘I