List KoboToolbox Form Submissions
kobo_list_submissionsList submitted responses for a form, newest first. Filter by query or paginate to find specific submissions.
Instructions
List submitted responses for a form, most recent first.
Args:
uid (string): the form's asset uid (from kobo_list_forms)
limit (number): max submissions to return, 1-100 (default 30)
offset (number): pagination offset (default 0)
query (string, optional): Mongo-style JSON filter, e.g. '{"crop_health":"poor"}'
response_format ('markdown' | 'json')
Returns: submission id, submission time, and answered fields for each submission.
Examples:
Use when: "Show me the latest 10 responses to my cocoa form" -> uid=..., limit=10
Use when: "Which submissions reported poor crop health?" -> query='{"crop_health":"poor"}'
Don't use when: you want a downloadable Excel file (use kobo_export_submissions_excel instead)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| uid | Yes | Asset uid of the form (from kobo_list_forms) | |
| limit | No | Maximum number of submissions to return | |
| query | No | Optional Mongo-style filter query, e.g. '{"farmer_name":"Kouassi"}' | |
| offset | No | Number of submissions to skip, for pagination | |
| response_format | No | Output format: 'markdown' for human-readable or 'json' for machine-readable | markdown |