Skip to content

Get Field

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

OK

Media type application/json
object
field
object
id
string
name
string
label
string
field_type
string
required
string
options
string
default_value
string
sort_order
string
created_at
string format: date-time
updated_at
string format: date-time
Example generated
{
"field": {
"id": "example",
"name": "example",
"label": "example",
"field_type": "example",
"required": "example",
"options": "example",
"default_value": "example",
"sort_order": "example",
"created_at": "2026-04-15T12:00:00Z",
"updated_at": "2026-04-15T12:00:00Z"
}
}