Boards (post categories) organize feedback into distinct containers with their own settings.
Featurebase API (2026-01-01.nova)
Welcome to the Featurebase API. This API allows you to programmatically interact with your Featurebase organization.
This documentation reflects API version 2026-01-01.nova.
API Versioning
This API uses date-based versioning. Each version is identified by a release date and slug, e.g., 2026-01-01.nova.
Specifying a Version
Include the version in the request header:
Featurebase-Version: 2026-01-01.novaOr set a default version for your organization in the dashboard settings.
Version Compatibility
- Newer versions may add new fields to responses (always backwards-compatible)
- Breaking changes (removed/renamed fields, changed behavior) only occur in new versions
- Your integration will continue to work as long as you pin to a specific version
Authentication
All API requests require authentication via API key.
Include in headers:
Authorization: Bearer <api-key>Create and manage your API keys in the Featurebase dashboard.
Error Handling
The API uses conventional HTTP response codes to indicate success or failure:
2xx- Success4xx- Client errors (bad request, unauthorized, not found, etc.)5xx- Server errors (internal error)
Error Response Format
All errors follow a consistent format:
{
"error": {
"type": "invalid_request_error",
"code": "resource_not_found",
"message": "Post not found",
"param": "id",
"status": 404
}
}Error Types
| Type | Description |
|---|---|
authentication_error | Authentication failed (401) |
authorization_error | Permission denied (403) |
invalid_request_error | Invalid request parameters or resource not found (400, 404, 410) |
api_error | Server-side error (500) |
rate_limit_error | Too many requests (429) |
Request
Creates a new article in your organization's help center.
Required attributes:
title- The title of the article
Optional attributes:
description- A brief description of the articlebody- The HTML content of the article (supports external image URLs and base64 data URIs)formatter- Content formatter: "default" or "ai" (AI converts markdown/html to Featurebase format)parentId- The ID of the parent collectionicon- Icon object with type and valuestate- "live" or "draft" (defaults to "draft")translations- Dictionary of translations keyed by locale
Returns the created article object with:
id- Unique identifiertitle- Article titledescription- Article descriptionbody- Article content (HTML)slug- URL slugicon- Article icon (emoji or custom)parentId- Parent collection IDhelpCenterId- ID of the help center this article belongs toorganization- Organization IDstate- Article state (live or draft)author- Author information (name, authorId, avatarUrl)translations- Translations for different localescreatedAt- ISO 8601 timestamp when createdupdatedAt- ISO 8601 timestamp when last updated
A brief description of the article
The HTML content of the article (supports external image URLs and base64 data URIs)
Content formatter - "ai" converts markdown/html to Featurebase format using AI
The ID of the parent collection
Article state - "live" publishes immediately, "draft" saves as draft
- Mock serverhttps://docs.featurebase.app/_mock/rest-api/v2/help_center/articles
- Productionhttps://do.featurebase.app/v2/help_center/articles
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs.featurebase.app/_mock/rest-api/v2/help_center/articles \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-H 'Featurebase-Version: 2026-01-01.nova' \
-d '{
"title": "Getting Started Guide",
"description": "Learn how to get started with our platform",
"body": "<p>Welcome to our getting started guide.</p>",
"formatter": "default",
"parentId": "6474684",
"icon": {
"value": "📖",
"type": "emoji"
},
"state": "draft",
"translations": {
"bn": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"bs": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"pt-BR": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"bg": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"ca": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"hr": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"cs": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"da": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"nl": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"en": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"et": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"fi": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"fr": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"de": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"el": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"hi": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"hu": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"id": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"it": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"ja": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"ko": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"lv": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"lt": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"ms": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"mn": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"nb": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"pl": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"pt": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"ro": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"ru": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"sr": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"zh-CN": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"sk": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"sl": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"es": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"sw": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"sv": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"th": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"zh-TW": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"tr": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"uk": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"vi": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
}
}
}'Success
Available locales
Published locales
Featurebase URL
External URL
ISO 8601 timestamp when live version was last updated
ISO 8601 timestamp when translation was created
{ "object": "article", "id": "1234567", "title": "Getting Started Guide", "description": "Learn how to get started", "body": "<p>Welcome to our guide.</p>", "slug": "1234567-getting-started-guide", "icon": { "type": "emoji", "value": "📖" }, "parentId": "6474684", "helpCenterId": "j7c5g8ah3ewxp4lo", "organization": "6595518396205e06b897ad65", "state": "live", "defaultLocale": "en", "locale": "en", "availableLocales": [ "en", "de" ], "publishedLocales": [ "en" ], "featurebaseUrl": "https://yourorg.featurebase.app/en/help/articles/1234567-getting-started-guide", "externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide", "author": { "name": "John Doe", "authorId": "507f1f77bcf86cd799439011", "avatarUrl": null }, "order": 1, "isPublished": true, "isDraftDiffersFromLive": false, "translations": { "bn": { … }, "bs": { … }, "pt-BR": { … }, "bg": { … }, "ca": { … }, "hr": { … }, "cs": { … }, "da": { … }, "nl": { … }, "en": { … }, "et": { … }, "fi": { … }, "fr": { … }, "de": { … }, "el": { … }, "hi": { … }, "hu": { … }, "id": { … }, "it": { … }, "ja": { … }, "ko": { … }, "lv": { … }, "lt": { … }, "ms": { … }, "mn": { … }, "nb": { … }, "pl": { … }, "pt": { … }, "ro": { … }, "ru": { … }, "sr": { … }, "zh-CN": { … }, "sk": { … }, "sl": { … }, "es": { … }, "sw": { … }, "sv": { … }, "th": { … }, "zh-TW": { … }, "tr": { … }, "uk": { … }, "vi": { … } }, "createdAt": "2024-10-18T12:33:09.099Z", "updatedAt": "2024-10-18T13:03:25.921Z", "liveUpdatedAt": "2024-10-18T13:03:25.921Z", "path": "/getting-started", "surveyId": "6743752ca81ae59d25cf834b", "visibleBy": [ "everyone" ], "translationCreatedAt": "2024-10-18T12:33:09.099Z", "translationUpdatedAt": "2024-10-19T14:22:15.123Z" }
Request
Retrieves a specific article by its unique identifier.
Returns the article object if found in your organization's help center.
state- Article state to retrieve: "live" or "draft" (default "live")
Returns an article object with:
id- Unique identifiertitle- Article titledescription- Article descriptionbody- Article content (HTML)slug- URL slugicon- Article icon (emoji or custom)parentId- Parent collection IDhelpCenterId- ID of the help center this article belongs toorganization- Organization IDstate- Article state (live or draft)defaultLocale- Default locale for contentlocale- Current localeavailableLocales- Array of available localespublishedLocales- Array of locales where article is publishedfeaturebaseUrl- Featurebase URL for the articleexternalUrl- External URL if custom domain is configuredauthor- Author information (name, authorId, avatarUrl)order- Display orderisPublished- Whether the article is publishedisDraftDiffersFromLive- Whether draft differs from live versiontranslations- Translations for different localescreatedAt- ISO 8601 timestamp when createdupdatedAt- ISO 8601 timestamp when last updatedliveUpdatedAt- ISO 8601 timestamp when live version was last updated
404- Article not found in your organization's help center
- Mock serverhttps://docs.featurebase.app/_mock/rest-api/v2/help_center/articles/{id}
- Productionhttps://do.featurebase.app/v2/help_center/articles/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.featurebase.app/_mock/rest-api/v2/help_center/articles/1234567?state=live' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Featurebase-Version: 2026-01-01.nova'Success
Available locales
Published locales
Featurebase URL
External URL
ISO 8601 timestamp when live version was last updated
ISO 8601 timestamp when translation was created
{ "object": "article", "id": "1234567", "title": "Getting Started Guide", "description": "Learn how to get started", "body": "<p>Welcome to our guide.</p>", "slug": "1234567-getting-started-guide", "icon": { "type": "emoji", "value": "📖" }, "parentId": "6474684", "helpCenterId": "j7c5g8ah3ewxp4lo", "organization": "6595518396205e06b897ad65", "state": "live", "defaultLocale": "en", "locale": "en", "availableLocales": [ "en", "de" ], "publishedLocales": [ "en" ], "featurebaseUrl": "https://yourorg.featurebase.app/en/help/articles/1234567-getting-started-guide", "externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide", "author": { "name": "John Doe", "authorId": "507f1f77bcf86cd799439011", "avatarUrl": null }, "order": 1, "isPublished": true, "isDraftDiffersFromLive": false, "translations": { "bn": { … }, "bs": { … }, "pt-BR": { … }, "bg": { … }, "ca": { … }, "hr": { … }, "cs": { … }, "da": { … }, "nl": { … }, "en": { … }, "et": { … }, "fi": { … }, "fr": { … }, "de": { … }, "el": { … }, "hi": { … }, "hu": { … }, "id": { … }, "it": { … }, "ja": { … }, "ko": { … }, "lv": { … }, "lt": { … }, "ms": { … }, "mn": { … }, "nb": { … }, "pl": { … }, "pt": { … }, "ro": { … }, "ru": { … }, "sr": { … }, "zh-CN": { … }, "sk": { … }, "sl": { … }, "es": { … }, "sw": { … }, "sv": { … }, "th": { … }, "zh-TW": { … }, "tr": { … }, "uk": { … }, "vi": { … } }, "createdAt": "2024-10-18T12:33:09.099Z", "updatedAt": "2024-10-18T13:03:25.921Z", "liveUpdatedAt": "2024-10-18T13:03:25.921Z", "path": "/getting-started", "surveyId": "6743752ca81ae59d25cf834b", "visibleBy": [ "everyone" ], "translationCreatedAt": "2024-10-18T12:33:09.099Z", "translationUpdatedAt": "2024-10-19T14:22:15.123Z" }
Request
Updates an existing article. Only include the fields you wish to update.
id- The unique identifier of the article to update
All fields are optional. Only provided fields will be updated:
title- The new title of the articledescription- The new description of the articlebody- The new HTML content of the articleformatter- Content formatter: "default" or "ai"icon- Updated icon object for the articleparentId- New parent collection IDauthorId- ID of the new author (must be a member of the organization)state- "live" or "draft" - if "live", publishes immediatelytranslations- Dictionary of updated translations keyed by locale
Returns the updated article object with:
id- Unique identifiertitle- Article titledescription- Article descriptionbody- Article content (HTML)slug- URL slugicon- Article icon (emoji or custom)parentId- Parent collection IDhelpCenterId- ID of the help center this article belongs toorganization- Organization IDstate- Article state (live or draft)author- Author information (name, authorId, avatarUrl)translations- Translations for different localescreatedAt- ISO 8601 timestamp when createdupdatedAt- ISO 8601 timestamp when last updated
404- Article not found in your organization's help center
New parent collection ID
ID of the new author (must be a member of the organization)
- Mock serverhttps://docs.featurebase.app/_mock/rest-api/v2/help_center/articles/{id}
- Productionhttps://do.featurebase.app/v2/help_center/articles/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PATCH \
https://docs.featurebase.app/_mock/rest-api/v2/help_center/articles/1234567 \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-H 'Featurebase-Version: 2026-01-01.nova' \
-d '{
"title": "Updated Getting Started Guide",
"description": "Updated description",
"body": "<p>Updated content.</p>",
"formatter": "default",
"icon": {
"value": "📖",
"type": "emoji"
},
"parentId": "6474684",
"authorId": "507f1f77bcf86cd799439011",
"state": "live",
"translations": {
"bn": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"bs": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"pt-BR": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"bg": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"ca": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"hr": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"cs": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"da": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"nl": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"en": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"et": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"fi": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"fr": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"de": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"el": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"hi": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"hu": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"id": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"it": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"ja": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"ko": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"lv": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"lt": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"ms": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"mn": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"nb": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"pl": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"pt": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"ro": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"ru": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"sr": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"zh-CN": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"sk": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"sl": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"es": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"sw": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"sv": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"th": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"zh-TW": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"tr": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"uk": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
},
"vi": {
"title": "Getting Started Guide",
"description": "Learn how to get started",
"body": "<p>Welcome to our guide.</p>"
}
}
}'Success
Available locales
Published locales
Featurebase URL
External URL
ISO 8601 timestamp when live version was last updated
ISO 8601 timestamp when translation was created
{ "object": "article", "id": "1234567", "title": "Getting Started Guide", "description": "Learn how to get started", "body": "<p>Welcome to our guide.</p>", "slug": "1234567-getting-started-guide", "icon": { "type": "emoji", "value": "📖" }, "parentId": "6474684", "helpCenterId": "j7c5g8ah3ewxp4lo", "organization": "6595518396205e06b897ad65", "state": "live", "defaultLocale": "en", "locale": "en", "availableLocales": [ "en", "de" ], "publishedLocales": [ "en" ], "featurebaseUrl": "https://yourorg.featurebase.app/en/help/articles/1234567-getting-started-guide", "externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide", "author": { "name": "John Doe", "authorId": "507f1f77bcf86cd799439011", "avatarUrl": null }, "order": 1, "isPublished": true, "isDraftDiffersFromLive": false, "translations": { "bn": { … }, "bs": { … }, "pt-BR": { … }, "bg": { … }, "ca": { … }, "hr": { … }, "cs": { … }, "da": { … }, "nl": { … }, "en": { … }, "et": { … }, "fi": { … }, "fr": { … }, "de": { … }, "el": { … }, "hi": { … }, "hu": { … }, "id": { … }, "it": { … }, "ja": { … }, "ko": { … }, "lv": { … }, "lt": { … }, "ms": { … }, "mn": { … }, "nb": { … }, "pl": { … }, "pt": { … }, "ro": { … }, "ru": { … }, "sr": { … }, "zh-CN": { … }, "sk": { … }, "sl": { … }, "es": { … }, "sw": { … }, "sv": { … }, "th": { … }, "zh-TW": { … }, "tr": { … }, "uk": { … }, "vi": { … } }, "createdAt": "2024-10-18T12:33:09.099Z", "updatedAt": "2024-10-18T13:03:25.921Z", "liveUpdatedAt": "2024-10-18T13:03:25.921Z", "path": "/getting-started", "surveyId": "6743752ca81ae59d25cf834b", "visibleBy": [ "everyone" ], "translationCreatedAt": "2024-10-18T12:33:09.099Z", "translationUpdatedAt": "2024-10-19T14:22:15.123Z" }
CommentsCopy for LLM Copy page as Markdown for LLMs View as Markdown Open this page as Markdown Open in ChatGPT Get insights from ChatGPT Open in Claude Get insights from Claude Connect to Cursor Install MCP server on Cursor Connect to VS Code Install MCP server on VS Code
Threaded discussions on posts and changelogs. Comments support voting, moderation, and privacy controls.