Skip to content

Get Form

GET
/admin/forms/{id}
curl --request GET \
--url 'http://localhost:9000/admin/forms/example?limit=20&offset=0'
id
required
string
limit
integer
default: 20
offset
integer
0
order
string
fields
string

OK

Media type application/json
object
form
object
id
string
name
string
handle
string
description
string
active
string
turnstile_enabled
string
notification_emails
string
metadata
object
key
additional properties
any
created_at
string format: date-time
updated_at
string format: date-time
form_fields
Array<object>
object
id
string
name
string
label
string
field_type
string
required
string
sort_order
string
field_options
Array<object>
object
id
string
label
string
value
string
sort_order
string
Example generated
{
"form": {
"id": "example",
"name": "example",
"handle": "example",
"description": "example",
"active": "example",
"turnstile_enabled": "example",
"notification_emails": "example",
"metadata": {},
"created_at": "2026-04-15T12:00:00Z",
"updated_at": "2026-04-15T12:00:00Z",
"form_fields": [
{
"id": "example",
"name": "example",
"label": "example",
"field_type": "example",
"required": "example",
"sort_order": "example",
"field_options": [
{
"id": "example",
"label": "example",
"value": "example",
"sort_order": "example"
}
]
}
]
}
}