Custom Contentful App Development (Extensions)

Custom Contentful App Development (Extensions)

Development and maintenance of all types of websites:

Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Our competencies:

Frequently Asked Questions

Latest works

  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1285
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1241
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    982
  • image_crm_chasseurs_493_0.webp
    CRM development for Chasseurs
    1033
  • image_website-sbh_0.webp
    Website development for SBH Partners
    1104
  • image_website-_0.webp
    Website development for Red Pear
    554

Custom Contentful App Development (Extensions)

The standard Contentful editor is convenient, but for business processes with unique logic, built-in fields often fall short. You end up exporting data, processing it with external tools, and wasting time on manual entry. We develop custom Contentful Apps—extensions that integrate directly into the editor interface. These are not just widgets: through the SDK, the app gets access to the Entry API, Space API, and Server-side App Actions. With our solutions, clients cut content publishing time by 30-50% and eliminate manual transfer errors.

Over 5 years working with headless CMS, we've built more than 20 custom Apps for clients in e-commerce, media, and finance. We guarantee compatibility with current Contentful versions and seamless integration into your existing workflow. Custom Apps are 4 times faster than manual content processing—our project data confirms this.

Contentful App Architecture

Every app consists of two parts: frontend (React/Vue/Vanilla JS, hosted anywhere) and optional App Backend (AWS Lambda or any HTTP endpoint for App Actions and Events). Both are registered in App Definition via Contentful Management API or Web App.

App Definition ├── Locations: field, sidebar, entry-editor, page, home ├── Parameters: instance params (per-field) + installation params (per-space) └── App Actions: serverless functions callable from UI or API 

Typical scenarios:

  • Custom field editor—e.g., a color picker linked to design tokens from Figma
  • Sidebar extension—an SEO analysis panel that reads Entry fields in real-time
  • Page location—a full-screen Asset Manager with Cloudinary integration
  • App Actions—AI description generation via OpenAI on Entry save

How to Develop a Custom Contentful Field?

For field extensions, we use the @contentful/app-sdk SDK. For example, a color picker tied to design tokens:

import { init, FieldExtensionSDK } from '@contentful/app-sdk'; init((sdk: FieldExtensionSDK) => { const value = sdk.field.getValue(); sdk.field.onValueChanged((newValue) => setFieldValue(newValue)); sdk.field.setValue({ color: '#ff5500', token: 'brand-primary' }); sdk.window.startAutoResizer(); }); 

For React apps, we use @contentful/react-apps-toolkit:

import { useSDK, useFieldValue } from '@contentful/react-apps-toolkit'; const ColorPickerField = () => { const sdk = useSDK<FieldExtensionSDK>(); const [value, setValue] = useFieldValue<string>(); return ( <ColorPicker value={value} onChange={(color) => setValue(color.hex)} tokens={sdk.parameters.installation.designTokens} /> ); }; 

What Are App Actions and Why Use Them?

App Actions are server-side functions called from the UI editor without a custom backend. Contentful proxies requests to your endpoint and returns the result. Example—SEO description generation via OpenAI:

const result = await sdk.cma.appAction.callById({ spaceId: sdk.ids.space, environmentId: sdk.ids.environment, appDefinitionId: sdk.ids.app, appActionId: 'generate-seo', parameters: { entryId: sdk.ids.entry, locale: sdk.locales.default }, }); 

On the server (Node.js/Express):

app.post('/actions/generate-seo', async (req, res) => { verifySignature(req.headers['x-contentful-signature'], req.body); const { entryId, locale } = req.body.parameters; const entry = await cma.entry.get({ entryId }); const seoData = await openai.chat.completions.create({ model: 'gpt-4o', messages: [{ role: 'user', content: buildSeoPrompt(entry, locale) }], }); res.json({ result: { seoTitle: seoData.choices[0].message.content } }); }); 

Installation Parameters and Configuration

Installation parameters are set once when installing the app in a Space. They pass API keys, tokens, configs—no hardcoding in the app code:

const ConfigScreen = () => { const sdk = useSDK<AppExtensionSDK>(); const [params, setParams] = useState(sdk.parameters.installation); sdk.app.onConfigure(() => ({ parameters: params, targetState: { EditorInterface: { controls: [{ fieldId: 'seoTitle', widgetId: sdk.ids.app }], }, }, })); }; 

Why Custom Contentful Apps Beat Standard Solutions?

Custom Apps integrate directly into the editor, saving time spent switching between services. Unlike third-party plugins, they give you full control over logic and data. For example, sidebar SEO analysis lets marketers see filling errors immediately—eliminating page reloads and last-minute fixes. Our clients report a 2-3x reduction in publishing cycle after implementing a custom App.

Build and Deploy

Contentful provides a CLI for local development and deployment:

npx create-contentful-app@latest my-app --template typescript npm run start contentful-app-scripts activate npm run build contentful-app-scripts upload 

Setting up CI/CD for a Contentful App is straightforward: we use GitHub Actions for automated testing and deployment. On push to main, a build runs, tests with @contentful/app-sdk mocks execute, and a new version uploads to Contentful CDN via contentful-app-scripts upload. This ensures your extension is always up-to-date without manual steps.

Tool Purpose
create-contentful-app Create project template
contentful-app-scripts Build and deploy to CDN

Timelines and Scope

Extension Type Complexity Development Time
Simple field editor (picker, slider) Low 1–2 days
Sidebar with external API Medium 3–5 days
Page location (full screen) High 1–2 weeks
App Actions + server backend High 1–2 weeks
Full app with config screen High 2–3 weeks

During development, we cover with tests using @contentful/app-sdk mock objects and set up CI for automatic deployment via contentful-app-scripts upload.

How We Guarantee Quality?

Every extension undergoes code review, is tested in an isolated environment, and receives documentation for end users. We guarantee stable operation with current Contentful versions and quickly adapt the app when the SDK updates. The Contentful App SDK docs confirm the correctness of our approach. Contact us—we'll assess your scenario in one business day. Order a custom Contentful App development and save up to 50% on content publishing time.