Skip to content

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.

Download OpenAPI description
Languages
Servers
Mock server
https://docs.featurebase.app/_mock/rest-api/
Production
https://do.featurebase.app/

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.nova

Or 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 - Success
  • 4xx - 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

TypeDescription
authentication_errorAuthentication failed (401)
authorization_errorPermission denied (403)
invalid_request_errorInvalid request parameters or resource not found (400, 404, 410)
api_errorServer-side error (500)
rate_limit_errorToo many requests (429)

Boards

Boards (post categories) organize feedback into distinct containers with their own settings.

Operations

Posts

User-submitted feedback and feature requests. Posts belong to boards and can be upvoted, commented on, and tracked through statuses.

Operations

Post Statuses

Post statuses define the workflow stages for posts (e.g., In Review, Active, Completed).

Operations

Comments

Threaded discussions on posts and changelogs. Comments support voting, moderation, and privacy controls.

Operations

Get a comment by ID

Request

Retrieves a single comment by its unique identifier.

Returns the full comment object including:

  • Author information
  • Voting stats (upvotes, downvotes, score)
  • Privacy and moderation status
  • Threading information (parentCommentId)
  • Timestamps

Response

Returns a comment object with all fields populated.

Errors

  • 400 - Invalid comment ID format
  • 404 - Comment not found or doesn't belong to your organization
Security
bearerAuth
Path
idstringrequired

Comment unique identifier

Example: 507f1f77bcf86cd799439011
Headers
Featurebase-Versionstring(FeaturebaseVersion)

API version for this request. Defaults to your organization's configured API version if not specified.

Example: 2026-01-01.nova
curl -i -X GET \
  https://docs.featurebase.app/_mock/rest-api/v2/comments/507f1f77bcf86cd799439011 \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'Featurebase-Version: 2026-01-01.nova'

Responses

Success

Bodyapplication/json
objectstringrequired

Object type identifier

Value"comment"
Example: "comment"
idstringrequired

Unique identifier

Example: "507f1f77bcf86cd799439011"
postIdstring or nullrequired

Post ID this comment belongs to

Example: "507f1f77bcf86cd799439012"
changelogIdstring or nullrequired

Changelog ID this comment belongs to

Example: "507f1f77bcf86cd799439013"
parentCommentIdstring or nullrequired

Parent comment ID for replies, null for root comments

Example: "507f1f77bcf86cd799439014"
contentstringrequired

Comment content in HTML format

Example: "<p>This is a great idea!</p>"
authorobject or null(CommentAuthor)required
author.​idstring or nullrequired

Author unique identifier

Example: "507f1f77bcf86cd799439011"
author.​namestringrequired

Author display name

Example: "John Doe"
author.​profilePicturestring or nullrequired

Author profile picture URL

Example: "https://cdn.example.com/avatars/john.png"
author.​typestringrequired

Type of user who authored the comment

Enum"admin""customer""guest""integration""bot""lead"
Example: "customer"
upvotesnumberrequired

Number of upvotes

Example: 5
downvotesnumberrequired

Number of downvotes

Example: 0
scorenumberrequired

Net score (upvotes - downvotes)

Example: 5
isPrivatebooleanrequired

Whether the comment is private

Example: false
isDeletedbooleanrequired

Whether the comment is deleted

Example: false
isPinnedbooleanrequired

Whether the comment is pinned

Example: false
inReviewbooleanrequired

Whether the comment is in review

Example: false
isSpambooleanrequired

Whether the comment is spam

Example: false
createdAtstringrequired

ISO 8601 timestamp when created

Example: "2023-12-12T00:00:00.000Z"
updatedAtstringrequired

ISO 8601 timestamp when updated

Example: "2023-12-13T00:00:00.000Z"
Response
application/json
{ "object": "comment", "id": "507f1f77bcf86cd799439011", "postId": "507f1f77bcf86cd799439012", "changelogId": "507f1f77bcf86cd799439013", "parentCommentId": "507f1f77bcf86cd799439014", "content": "<p>This is a great idea!</p>", "author": { "id": "507f1f77bcf86cd799439011", "name": "John Doe", "profilePicture": "https://cdn.example.com/avatars/john.png", "type": "customer" }, "upvotes": 5, "downvotes": 0, "score": 5, "isPrivate": false, "isDeleted": false, "isPinned": false, "inReview": false, "isSpam": false, "createdAt": "2023-12-12T00:00:00.000Z", "updatedAt": "2023-12-13T00:00:00.000Z" }

Update a comment

Request

Updates an existing comment by its unique identifier.

You can update:

  • content - Comment text (HTML format)
  • isPrivate - Privacy status (admin-only visibility)
  • isPinned - Pinned status (displayed at top)
  • inReview - Moderation status

Content Format

Content should be formatted as HTML. For images:

  • External URLs in img src attributes are automatically pulled into our storage
  • Base64 encoded data URIs (data:image/...) are also supported and processed

Permissions

  • Comment authors can update their own comment content
  • Admin permissions required for:
    • isPrivate - Requires manage_comments_private permission
    • isPinned - Requires set_comment_pinned permission
    • inReview - Requires moderate_comments permission
    • Updating other users' comments - Requires moderate_comments permission

Response

Returns the updated comment object with all fields populated.

Errors

  • 400 - Invalid comment ID format or input
  • 403 - Not authorized to update this comment
  • 404 - Comment not found
Security
bearerAuth
Path
idstringrequired

Comment unique identifier

Example: 507f1f77bcf86cd799439011
Headers
Featurebase-Versionstring(FeaturebaseVersion)

API version for this request. Defaults to your organization's configured API version if not specified.

Example: 2026-01-01.nova
Bodyapplication/json
contentstring>= 2 characters

Comment content in HTML format

Example: "<p>This is my updated comment.</p>"
isPrivateboolean or null

Whether the comment is private (only visible to admins)

Example: false
isPinnedboolean or null

Whether the comment is pinned at the top

Example: true
inReviewboolean or null

Whether the comment is pending moderation review

Example: false
createdAtstring or null

Update the creation date (useful for imports)

Example: "2025-01-15T10:30:00.000Z"
upvotesinteger or null>= 0

Set the upvotes count directly. Score will be recalculated as upvotes - downvotes.

Example: 10
downvotesinteger or null>= 0

Set the downvotes count directly. Score will be recalculated as upvotes - downvotes.

Example: 2
curl -i -X PATCH \
  https://docs.featurebase.app/_mock/rest-api/v2/comments/507f1f77bcf86cd799439011 \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'Content-Type: application/json' \
  -H 'Featurebase-Version: 2026-01-01.nova' \
  -d '{
    "content": "<p>This is my updated comment.</p>",
    "isPrivate": false,
    "isPinned": true,
    "inReview": false,
    "createdAt": "2025-01-15T10:30:00.000Z",
    "upvotes": 10,
    "downvotes": 2
  }'

Responses

Success

Bodyapplication/json
objectstringrequired

Object type identifier

Value"comment"
Example: "comment"
idstringrequired

Unique identifier

Example: "507f1f77bcf86cd799439011"
postIdstring or nullrequired

Post ID this comment belongs to

Example: "507f1f77bcf86cd799439012"
changelogIdstring or nullrequired

Changelog ID this comment belongs to

Example: "507f1f77bcf86cd799439013"
parentCommentIdstring or nullrequired

Parent comment ID for replies, null for root comments

Example: "507f1f77bcf86cd799439014"
contentstringrequired

Comment content in HTML format

Example: "<p>This is a great idea!</p>"
authorobject or null(CommentAuthor)required
author.​idstring or nullrequired

Author unique identifier

Example: "507f1f77bcf86cd799439011"
author.​namestringrequired

Author display name

Example: "John Doe"
author.​profilePicturestring or nullrequired

Author profile picture URL

Example: "https://cdn.example.com/avatars/john.png"
author.​typestringrequired

Type of user who authored the comment

Enum"admin""customer""guest""integration""bot""lead"
Example: "customer"
upvotesnumberrequired

Number of upvotes

Example: 5
downvotesnumberrequired

Number of downvotes

Example: 0
scorenumberrequired

Net score (upvotes - downvotes)

Example: 5
isPrivatebooleanrequired

Whether the comment is private

Example: false
isDeletedbooleanrequired

Whether the comment is deleted

Example: false
isPinnedbooleanrequired

Whether the comment is pinned

Example: false
inReviewbooleanrequired

Whether the comment is in review

Example: false
isSpambooleanrequired

Whether the comment is spam

Example: false
createdAtstringrequired

ISO 8601 timestamp when created

Example: "2023-12-12T00:00:00.000Z"
updatedAtstringrequired

ISO 8601 timestamp when updated

Example: "2023-12-13T00:00:00.000Z"
Response
application/json
{ "object": "comment", "id": "507f1f77bcf86cd799439011", "postId": "507f1f77bcf86cd799439012", "changelogId": "507f1f77bcf86cd799439013", "parentCommentId": "507f1f77bcf86cd799439014", "content": "<p>This is a great idea!</p>", "author": { "id": "507f1f77bcf86cd799439011", "name": "John Doe", "profilePicture": "https://cdn.example.com/avatars/john.png", "type": "customer" }, "upvotes": 5, "downvotes": 0, "score": 5, "isPrivate": false, "isDeleted": false, "isPinned": false, "inReview": false, "isSpam": false, "createdAt": "2023-12-12T00:00:00.000Z", "updatedAt": "2023-12-13T00:00:00.000Z" }

Delete a comment

Request

Deletes a comment by its unique identifier.

Deletion Behavior

  • Comments with replies: Soft delete

    • Content is replaced with "[deleted]"
    • Author information is anonymized
    • Comment remains visible to maintain conversation context
    • Votes and scores are reset to 0
  • Comments without replies: Hard delete

    • Comment is permanently removed from the database
    • All associated data is deleted

Permissions

  • Comment authors can delete their own comments
  • Admins can delete any comment (subject to permissions)
  • Lite seat admins can only delete their own comments
  • Non-authors require manage_comments or manage_comments_private permission

Response

Returns a deletion confirmation:

{
  "id": "507f1f77bcf86cd799439011",
  "object": "comment",
  "deleted": true
}

Errors

  • 400 - Invalid comment ID format
  • 403 - Not authorized to delete this comment
  • 404 - Comment not found or doesn't belong to your organization
Security
bearerAuth
Path
idstringrequired

Comment unique identifier

Example: 507f1f77bcf86cd799439011
Headers
Featurebase-Versionstring(FeaturebaseVersion)

API version for this request. Defaults to your organization's configured API version if not specified.

Example: 2026-01-01.nova
curl -i -X DELETE \
  https://docs.featurebase.app/_mock/rest-api/v2/comments/507f1f77bcf86cd799439011 \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'Featurebase-Version: 2026-01-01.nova'

Responses

Success

Bodyapplication/json
idstringrequired

Unique identifier of the deleted comment

Example: "507f1f77bcf86cd799439011"
objectstringrequired

Object type identifier

Value"comment"
Example: "comment"
deletedbooleanrequired

Indicates the resource was deleted

Valuetrue
Example: true
Response
application/json
{ "id": "507f1f77bcf86cd799439011", "object": "comment", "deleted": true }

Custom Fields

Configurable input fields for posts in your Featurebase organization. Custom fields allow you to collect additional structured data when users create posts.

Operations

Changelogs

Release notes and updates published by the organization. Changelogs keep users informed about new features, improvements, and fixes.

Operations

Admins

Team members who manage your Featurebase organization. Admins have roles that define their permissions.

Operations

Teams

Teams are groups within your Featurebase organization. Use this endpoint to list and retrieve team information for conversation assignment and organization management.

Operations

Contacts

Contacts are the customers and leads in your Featurebase organization. Use this endpoint to list and retrieve contact information.

Operations

Companies

Companies represent organizations or businesses that your users belong to. Use this endpoint to list and retrieve company information.

Operations

Surveys

Surveys allow you to collect targeted feedback from your users within your product. Surveys can be targeted to specific user segments or pages and can contain multiple questions with conditional logic.

Operations

Help Centers

Help centers allow organizations to create and manage knowledge bases with articles and collections. Currently, Featurebase supports one help center per organization.

Operations

Conversations

Conversations are messenger/inbox conversations in your Featurebase organization. Use this endpoint to list and retrieve conversation information.

Operations

Webhooks

Webhooks allow you to receive real-time HTTP callbacks when events occur in your Featurebase organization. Configure webhook endpoints to subscribe to specific event types.

Operations