Skip to content

List Form Submissions

GET
/admin/form-submissions
curl --request GET \
--url 'http://localhost:9000/admin/form-submissions?limit=20&offset=0&status=new'
limit
integer
default: 20
offset
integer
0
order
string
fields
string
form_id
string
status
string
Allowed values: new read archived

OK

Media type application/json
object
form-submissions
Array<object>
object
id
string
status
string
data
string
ip_address
string
user_agent
string
created_at
string format: date-time
updated_at
string format: date-time
form
object
id
string
name
string
handle
string
count
integer
limit
integer
offset
integer
Example generated
{
"form-submissions": [
{
"id": "example",
"status": "example",
"data": "example",
"ip_address": "example",
"user_agent": "example",
"created_at": "2026-04-15T12:00:00Z",
"updated_at": "2026-04-15T12:00:00Z",
"form": {
"id": "example",
"name": "example",
"handle": "example"
}
}
],
"count": 1,
"limit": 1,
"offset": 1
}