ask/engine
API

List studies

A paginated list of the team's studies with participant and theme counts.

GET/v1/studies

Example

curl -X GET "https://silent-viper-157.convex.site/v1/studies" \  -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": [    {      "studyId": "study_789",      "name": "Onboarding interviews Q4",      "status": "active",      "participantCount": 24,      "themeCount": 6,      "createdAt": 1764100000000    }  ],  "cursor": null,  "total": 1}