get_submissions
Get form submissions for a deployment. Returns paginated results with all submitted data.
Annotations
| Annotation | Value |
|---|---|
readOnlyHint | true |
destructiveHint | false |
openWorldHint | true |
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | Yes | The deployment ID |
page | number | No | Page number (default 1) |
limit | number | No | Results per page (default 20, max 100) |
Example
User prompt:
"Show me the form submissions for my contact page"
What Claude does:
- Calls
get_submissionswith the deployment ID. - Returns paginated submission data with timestamps.
Notes
- Any
<form>on a deployed page can submit to/_submitand data is stored automatically. - Submissions are also viewable in the Based Page dashboard.
- Use
delete_submissionto remove individual submissions.