API Reference
List studies
A paginated list of the team's studies with respondent and theme counts.
GET
/v1/studiesExample
curl -X GET "https://example.com/v1/studies" \ -H "Authorization: Bearer $ASKENGINE_API_KEY"Query Parameters
limit?integerMaximum number of results to return.
Default20Range1-50
cursor?stringPagination cursor from the previous response.
Response
{ "data": [ { "studyId": "std_789", "name": "Onboarding interviews Q4", "status": "active", "respondentCount": 24, "themeCount": 6, "createdAt": 1764100000000 } ], "cursor": null}