Suki AI Feedback API

The Feedback API from Suki AI — 1 operation(s) for feedback.

Operations 3

POST /feedback/ambient Submit Ambient Feedback #
POST /form-filling/sessions/{sessionId}/feedback Submit Form Filling Feedback #
POST /feedback Submit feedback for a session #

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/suki-ai-feedback-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

suki-ai-feedback-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Suki Ai Feedback API
  version: 1.0.0
  description: 'Operations tagged Feedback across 3 of this provider''s published API definitions: suki-ai-ambient-api-openapi.yml, suki-ai-form-filling-api-openapi.yml, suki-ai-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://sdp.suki-stage.com/api/v1
  description: Suki Speech Service staging environment
- url: https://developer.suki.ai/api/v1
  description: Suki Platform API (partner environment)
tags:
- name: Feedback
  description: Note And Section Feedback
paths:
  /feedback/ambient:
    post:
      tags:
      - Feedback
      summary: Submit Ambient Feedback
      operationId: submitAmbientFeedback
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AmbientFeedback'
      responses:
        '202':
          description: Feedback accepted
      security:
      - SdpSukiToken: []
    servers:
    - url: https://sdp.suki-stage.com/api/v1
      description: Suki Speech Service staging environment
  /form-filling/sessions/{sessionId}/feedback:
    post:
      tags:
      - Feedback
      summary: Submit Form Filling Feedback
      operationId: submitFormFillingFeedback
      parameters:
      - $ref: '#/components/parameters/SessionId'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FormFillingFeedback'
      responses:
        '202':
          description: Feedback accepted
      security:
      - SdpSukiToken: []
    servers:
    - url: https://sdp.suki-stage.com/api/v1
      description: Suki Speech Service staging environment
  /feedback:
    post:
      tags:
      - Feedback
      summary: Submit feedback for a session
      operationId: submitFeedback
      responses:
        '200':
          description: Feedback recorded
      security:
      - bearerAuth: []
    servers:
    - url: https://developer.suki.ai/api/v1
      description: Suki Platform API (partner environment)
components:
  schemas:
    AmbientFeedback:
      type: object
      required:
      - sessionId
      - rating
      properties:
        sessionId:
          type: string
          format: uuid
        rating:
          type: integer
          minimum: 1
          maximum: 5
        comments:
          type: string
        sectionFeedback:
          type: array
          items:
            type: object
            properties:
              loinc:
                type: string
              accurate:
                type: boolean
              edits:
                type: string
    FormFillingFeedback:
      type: object
      properties:
        fieldId:
          type: string
        accurate:
          type: boolean
        correctedValue: {}
        comments:
          type: string
  parameters:
    SessionId:
      name: sessionId
      in: path
      required: true
      schema:
        type: string
        format: uuid
  securitySchemes:
    SdpSukiToken:
      type: apiKey
      in: header
      name: sdp_suki_token
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: 'JWT access token issued by Suki after partner registration and login.

        Partner credentials are provisioned by Suki (no self-service signup).

        '
x-refined-from:
- suki-ai-ambient-api-openapi.yml
- suki-ai-form-filling-api-openapi.yml
- suki-ai-openapi.yml