List demo flows
curl --request GET \
--url https://api.voice-agents.miraiminds.co/v1/showcase/flowsimport requests
url = "https://api.voice-agents.miraiminds.co/v1/showcase/flows"
response = requests.get(url)
print(response.text)const url = 'https://api.voice-agents.miraiminds.co/v1/showcase/flows';
const options = {method: 'GET'};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));{
"success": true,
"data": {
"flows": [
{
"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"
]
}
],
"total": 5
}
}Showcase
List demo flows
Returns the product demo flows shown in the showcase page. These are produced demos of each use case, not real customer recordings.
GET
/
v1
/
showcase
/
flows
List demo flows
curl --request GET \
--url https://api.voice-agents.miraiminds.co/v1/showcase/flowsimport requests
url = "https://api.voice-agents.miraiminds.co/v1/showcase/flows"
response = requests.get(url)
print(response.text)const url = 'https://api.voice-agents.miraiminds.co/v1/showcase/flows';
const options = {method: 'GET'};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));{
"success": true,
"data": {
"flows": [
{
"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"
]
}
],
"total": 5
}
}⌘I