List Form Submissions
GET
/admin/form-submissions
const url = 'http://localhost:9000/admin/form-submissions?limit=20&offset=0&status=new';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'http://localhost:9000/admin/form-submissions?limit=20&offset=0&status=new'Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” limit
integer
offset
integer
order
string
fields
string
form_id
string
status
string
Responses
Section titled “ Responses ”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}