ask/engine
API Reference

List studies

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

GET/v1/studies

Example

curl -X GET "https://example.com/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": "std_789",      "name": "Onboarding interviews Q4",      "status": "active",      "respondentCount": 24,      "themeCount": 6,      "createdAt": 1764100000000    }  ],  "cursor": null}