ask/engine
API Reference

List study source items

A paginated list of the interviews that fed a study, with participant, status, duration, and quality.

GET/v1/studies/{studyId}/source-items

Example

curl -X GET "https://example.com/v1/studies/string/source-items" \  -H "Authorization: Bearer $ASKENGINE_API_KEY"

Query Parameters

limit?integer

Maximum number of results to return.

Default20Range1-50
cursor?string

Pagination cursor from the previous response.

Response

{  "data": [    {      "sourceItemId": "src_a1",      "sourceType": "interview",      "status": "analyzed",      "participantId": "par_9",      "participantName": "Ada L.",      "capturedAt": 1764453600000,      "durationSecs": 734,      "qualityScore": 0.88,      "insightCount": 5    }  ],  "cursor": null}