Get Entry
get_entryRetrieve a single content entry by UUID, including its custom fields and related entries. Supports locale, translation, draft/published state, and field exclusion.
Instructions
Get a single content entry by UUID. Response includes uuid, locale, published_at, and a fields object (custom field values — not a nested data key). Relation fields appear as nested entry objects (one-to-one) or arrays of entries (one-to-many), not as bare UUIDs.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| uuid | Yes | The entry UUID | |
| state | No | draft or published | |
| locale | No | Locale code for the entry to load | |
| exclude | No | Comma-separated field names to exclude from `fields` (e.g. 'body,excerpt') | |
| timestamps | No | If true, include created_at and updated_at on the entry | |
| collection_slug | Yes | The collection slug | |
| translation_locale | No | If set, return the linked translation in this locale instead of the entry identified by uuid (same translation group). |