curl --request GET \
--url https://app.conveo.ai/public-api/v1/studies/{studyId}/interviews \
--header 'Authorization: Bearer <token>'{
"items": [
{
"id": "cm393cvz80bdpmcedfzacog26",
"participant": {
"id": "cm14zq5t10egyfkyrfy34ihlc",
"name": "John S"
},
"facets": [
{
"label": "Age",
"values": [
"35"
]
},
{
"label": "Gender",
"values": [
"Female"
]
},
{
"label": "Country",
"values": [
"United States"
]
},
{
"label": "Car Ownership",
"values": [
"Electric Vehicle",
"Previous ICE Owner"
]
},
{
"label": "Opinion on Jaguar's Strategy",
"values": [
"Positive impression",
"Interested in future models"
]
}
],
"videoDownloadURL": "https://...",
"transcriptAsWebVTT": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
],
"pagination": {
"total": 42,
"page": 2,
"pageSize": 20
}
}Returns a paginated list of completed interviews for the specified study.
curl --request GET \
--url https://app.conveo.ai/public-api/v1/studies/{studyId}/interviews \
--header 'Authorization: Bearer <token>'{
"items": [
{
"id": "cm393cvz80bdpmcedfzacog26",
"participant": {
"id": "cm14zq5t10egyfkyrfy34ihlc",
"name": "John S"
},
"facets": [
{
"label": "Age",
"values": [
"35"
]
},
{
"label": "Gender",
"values": [
"Female"
]
},
{
"label": "Country",
"values": [
"United States"
]
},
{
"label": "Car Ownership",
"values": [
"Electric Vehicle",
"Previous ICE Owner"
]
},
{
"label": "Opinion on Jaguar's Strategy",
"values": [
"Positive impression",
"Interested in future models"
]
}
],
"videoDownloadURL": "https://...",
"transcriptAsWebVTT": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
],
"pagination": {
"total": 42,
"page": 2,
"pageSize": 20
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
x >= 11 <= x <= 100A paginated list of interviews for the study
Show child attributes
"cm393cvz80bdpmcedfzacog26"
List of facets associated with the interview
[
{ "label": "Age", "values": ["35"] },
{ "label": "Gender", "values": ["Female"] },
{
"label": "Country",
"values": ["United States"]
},
{
"label": "Car Ownership",
"values": ["Electric Vehicle", "Previous ICE Owner"]
},
{
"label": "Opinion on Jaguar's Strategy",
"values": [
"Positive impression",
"Interested in future models"
]
}
]Temporary URL to download the interview video. Only present when a video is available. The URL expires after 15 minutes.
"https://..."
The interview transcript in WebVTT format. Only present when a transcript is available.
Was this page helpful?