## List custom object types **get** `/v1/objects` Returns all custom object types available to the caller. ### Returns - `ObjectListDefinitionsResponse object { data }` - `data: array of object { label, objectType }` All object types available to the caller. - `label: string` Human-readable display name. - `objectType: string` The slug used to reference this object type in the API. ### Example ```http curl https://api.lightfield.app/v1/objects \ -H 'Lightfield-Version: 2026-03-01' \ -H "Authorization: Bearer $API_KEY" ``` #### Response ```json { "data": [ { "label": "label", "objectType": "objectType" } ] } ```