Juno
API reference

List studies

list_studies Requires studies:read

List your organisation's studies, newest first. A study is one research project: an AI-moderated interview Juno designs and runs, plus the analysis built from the answers. Page through newest created first. Page by passing the next_cursor from the previous response.

Input

limit
integer

Page size — newest first, max 200.

cursor
string | null

Opaque cursor from the previous page's X-Next-Cursor header. Omit for the first page. Cursors are keyset-based, so rows arriving mid-pagination never shift or duplicate the page you are walking.

tools/call
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "list_studies",
    "arguments": {
      "limit": 50,
      "cursor": null
    }
  }
}