Get Field
GET
/admin/content/{collectionId}/fields/{fieldId}
const url = 'http://localhost:9000/admin/content/example/fields/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/content/example/fields/example?limit=20&offset=0'Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” collectionId
required
string
fieldId
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
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" }}