Get Form Submission
GET
/admin/form-submissions/{id}
const url = 'http://localhost:9000/admin/form-submissions/example?limit=20&offset=0';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/example?limit=20&offset=0'Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string
Query Parameters
Section titled “Query Parameters ” limit
integer
offset
integer
order
string
fields
string
Responses
Section titled “ Responses ”OK
Media type application/json
object
form-submission
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
form_fields
Array<object>
object
id
string
name
string
label
string
field_type
string
Example generated
{ "form-submission": { "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", "form_fields": [ { "id": "example", "name": "example", "label": "example", "field_type": "example" } ] } }}