What is Contit API
Contit is a cloud-based headless CMS and workspace management platform. It provides a complete REST API for managing workspaces, content types, content items, assets, localization, and more.
Key concepts
| Concept | Description |
|---|---|
| Workspace | An isolated multi-tenant environment with its own content, settings, and permissions |
| Content Type | A schema blueprint that defines the structure of your data (fields, validation, versioning) |
| Content | A data record that conforms to a Content Type — can be in Draft or Published state |
| Asset | A file (images, documents, videos) managed through the platform |
| Client | API credentials (client ID + secret) bound to a workspace |
| App | A third-party application installed in a workspace with its own settings and permissions |
API base URL
https://api.contit.cloud
All endpoints require authentication unless otherwise noted (see Authentication).
Versioning
The API supports two versions:
- V1 — original endpoint set, uses
List<ContentField>model - V2 — improved field model (
Dict<string, object>), better partial update support, translations built-in
V2 endpoints are prefixed with /v2/. When starting a new integration, use V2.
Quick navigation
- Authentication — OAuth2, API Keys, Client Credentials
- Quickstart — first API call in 5 minutes
- API Reference — complete endpoint documentation
- SDK (.NET) — official ContitApi NuGet package
- n8n nodes — Contit nodes for n8n workflow automation