Userback Feedback Comments API

Comments attached to feedback items.

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/userback-feedback-comments-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

userback-feedback-comments-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Userback REST Feedback Feedback Comments API
  description: REST API for managing Userback feedback items, comments, and related customer feedback resources. Authentication uses a Bearer token (API token) generated from the Userback dashboard.
  version: '1.0'
  contact:
    name: Userback API Support
    url: https://docs.userback.io/reference
servers:
- url: https://rest.userback.io/1.0
  description: Production
security:
- BearerAuth: []
tags:
- name: Feedback Comments
  description: Comments attached to feedback items.
paths:
  /feedback/comment:
    get:
      tags:
      - Feedback Comments
      summary: List feedback comments
      description: Lists feedback comments with pagination and filtering.
      operationId: listFeedbackComments
      parameters:
      - $ref: '#/components/parameters/Page'
      - $ref: '#/components/parameters/Limit'
      - $ref: '#/components/parameters/Sort'
      - $ref: '#/components/parameters/Filter'
      responses:
        '200':
          description: A list of feedback comments.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/FeedbackComment'
        '401':
          $ref: '#/components/responses/Unauthorized'
    post:
      tags:
      - Feedback Comments
      summary: Create feedback comment
      description: Creates a new comment on a feedback item.
      operationId: createFeedbackComment
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FeedbackComment'
      responses:
        '201':
          description: Comment created.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FeedbackComment'
        '401':
          $ref: '#/components/responses/Unauthorized'
  /feedback/comment/{id}:
    parameters:
    - name: id
      in: path
      required: true
      description: Feedback comment identifier.
      schema:
        type: string
    get:
      tags:
      - Feedback Comments
      summary: Retrieve feedback comment
      description: Retrieves a specific feedback comment by id.
      operationId: getFeedbackComment
      responses:
        '200':
          description: Feedback comment.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FeedbackComment'
        '404':
          $ref: '#/components/responses/NotFound'
    patch:
      tags:
      - Feedback Comments
      summary: Update feedback comment
      description: Updates an existing feedback comment.
      operationId: updateFeedbackComment
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FeedbackComment'
      responses:
        '200':
          description: Updated comment.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FeedbackComment'
        '404':
          $ref: '#/components/responses/NotFound'
    delete:
      tags:
      - Feedback Comments
      summary: Delete feedback comment
      description: Deletes a feedback comment.
      operationId: deleteFeedbackComment
      responses:
        '204':
          description: Deleted.
        '404':
          $ref: '#/components/responses/NotFound'
components:
  responses:
    NotFound:
      description: Resource not found.
    Unauthorized:
      description: Missing or invalid Bearer token.
  parameters:
    Filter:
      name: filter
      in: query
      description: Filter expression.
      required: false
      schema:
        type: string
    Sort:
      name: sort
      in: query
      description: Sort expression.
      required: false
      schema:
        type: string
    Page:
      name: page
      in: query
      description: Page number for pagination.
      required: false
      schema:
        type: integer
        minimum: 1
    Limit:
      name: limit
      in: query
      description: Maximum number of items per page.
      required: false
      schema:
        type: integer
        minimum: 1
  schemas:
    FeedbackComment:
      type: object
      properties:
        id:
          type: string
        feedback_id:
          type: string
        body:
          type: string
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Token
      description: Pass the Userback API token in the Authorization header as `Bearer <YOUR_API_TOKEN>`. Tokens are managed from the Userback dashboard.