---
title: Entries
description: Entries are records of an object type. Values live in fieldValues; localized fields use localizedValuesByLocale. Status is draft or published when publishing is enabled.
---

List entries the caller can see (own/others grants plus optional conditions). Optional query: page, search (fuzzy trigram matching across text fields), filterField, filterOperator, filterValue, locale.

```
GET /api/v1/{locale}/{websiteId}/objects/{objectTypeId}
```

Create an entry.

```
POST /api/v1/{locale}/{websiteId}/objects/{objectTypeId}
```

```json
{
  "fieldValues": {},
  "localizedValuesByLocale": {}
}
```

Read, update, or delete one entry.

```
GET|PATCH|DELETE /api/v1/{locale}/{websiteId}/objects/{objectTypeId}/{entryId}
```

```json
{
  "fieldValues": {},
  "localizedValuesByLocale": {},
  "status": "draft | published"
}
```

MCP: list_entries, get_entry, create_entry, update_entry, delete_entry.

Website users are entries of a user-kind object type. Role assignment is under Access.
