- Create item
- List collections
- Get collection
- List items
- Get item
Create Item
Create a new CMS item in a Framer collection.Required inputs- Framer Project — Select the Framer project you connected in Profound from the dropdown
- Collection — Select the collection from the dropdown
- Field Data — The available fields are generated from the selected collection’s schema. See Working with Create Item Inputs.
id, slug, draft, and field_data.Tip: Use Get Collection first to inspect the collection schema and confirm which fields are required before creating an item.
Supported Field Types
Framer’s dynamic schema means Profound adapts to your collection model. The following Framer CMS field types are currently supported when creating items:| Field Type | Description | Supported |
|---|---|---|
| Plain Text | Single-line text | Yes |
| Formatted Text | Rich text content | Yes |
| Date | Date field | No |
| Link | URL field | Yes |
| Image | Image asset | No |
| Gallery | Array of images | No |
| Color | Color value | No |
| Toggle | True/false value | Yes |
| Number | Numeric value | Yes |
| Option | Single-select option | Yes |
| File | File asset | No |
| Reference | Reference to another item | No |
| Multi-Reference | Reference to multiple items | No |
Understanding Collection Schemas
Use Get Collection to inspect a collection’s schema before working with its items. The output includes:- Collection ID and Collection Name
- readonly — whether the collection is read-only
- managed_by — how the collection is managed
- field_definitions — the fields configured on that collection
- id — the field’s internal Framer ID
- name — the label shown in Framer
- type — the field’s primary Framer type, such as
string,formattedText, ornumber - required — whether the field is required
- itemType — additional item information for compound field types when Framer provides it
Working with Create Item Inputs
When you select a Framer collection in Create Item, Profound renders inputs dynamically from that collection’s schema. For supported field types, you can fill in the values directly in the step UI. For example, a collection may expose fields such as:- Slug
- Title
- Content
- Link
- Name
- Option
- Count
- Featured
Note: Use Get Collection to confirm the field definitions before creating an item. If you need support for a Framer field type that is not currently supported, contact us and we can help evaluate your use case.
Understanding Item Output
Framer item responses include top-level item fields such as:- id
- slug
- draft
- field_data
field_data object is keyed by field ID. Each entry includes the field’s human-readable name, type, and value.
Example item output:
Common Use Cases
- Content Publishing: Create new Framer CMS items from AI-generated copy or structured data
- Content Retrieval: Pull structured content from Framer collections for review, summarization, or downstream workflows
- Workflow Preparation: Inspect collection schemas before building automations that depend on specific Framer fields