S&P Global · Capability

Kensho Scribe Batch API — kensho-scribe-api

Kensho Scribe Batch API — kensho-scribe-api. 3 operations. Lead operation: Start A New Transcription. Self-contained Naftiko capability covering one S&P Global / Kensho business surface.

Kensho Scribe Batch API — kensho-scribe-api is a Naftiko capability published by S&P Global, one of 4 capabilities the APIs.io network indexes for this provider. It bundles 3 operations.

The capability includes 1 read-only operation and 2 state-changing operations. Lead operation: Start A New Transcription. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include S&P Global, Kensho, and Scribe.

Run with Naftiko S&P GlobalKenshoScribe

MCP Tools

start-a-new-transcription

Start A New Transcription

download-a-transcription-by-id

Download A Transcription By ID

read-only idempotent
delete-all-transcription-data-by-id

Delete All Transcription Data By ID

idempotent

Capability Spec

kensho-scribe-api.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Kensho Scribe Batch API — kensho-scribe-api
  description: 'Kensho Scribe Batch API — kensho-scribe-api. 3 operations. Lead operation: Start A New Transcription. Self-contained
    Naftiko capability covering one S&P Global / Kensho business surface.'
  tags:
  - S&P Global
  - Kensho
  - Scribe
  created: '2026-05-23'
  modified: '2026-05-23'
binds:
- namespace: env
  keys:
    KENSHO_SCRIBE_TOKEN: KENSHO_SCRIBE_TOKEN
capability:
  consumes:
  - type: http
    namespace: kensho-scribe-api
    baseUri: https://scribe.kensho.com
    description: Kensho Scribe Batch API consumed surface. Self-contained, no shared references.
    resources:
    - name: api-v2-transcription
      path: /api/v2/transcription
      operations:
      - name: startTranscription
        method: POST
        description: Start A New Transcription
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: api-v2-transcription-transcription-id
      path: /api/v2/transcription/{transcription_id}
      operations:
      - name: downloadTranscription
        method: GET
        description: Download A Transcription By ID
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: deleteTranscription
        method: DELETE
        description: Delete All Transcription Data By ID
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
  exposes:
  - type: rest
    namespace: kensho-scribe-api-rest
    port: 8080
    description: REST adapter for Kensho Scribe Batch API.
    endpoints:
    - method: POST
      name: startTranscription
      description: Start A New Transcription
      call: kensho-scribe-api.startTranscription
      with:
        body: rest.body
      outputParameters:
      - type: object
        mapping: $.
    - method: GET
      name: downloadTranscription
      description: Download A Transcription By ID
      call: kensho-scribe-api.downloadTranscription
      with:
        body: rest.body
      outputParameters:
      - type: object
        mapping: $.
    - method: DELETE
      name: deleteTranscription
      description: Delete All Transcription Data By ID
      call: kensho-scribe-api.deleteTranscription
      with:
        body: rest.body
      outputParameters:
      - type: object
        mapping: $.
  - type: mcp
    namespace: kensho-scribe-api-mcp
    port: 9090
    transport: http
    description: MCP adapter for Kensho Scribe Batch API. One tool per consumed operation.
    tools:
    - name: start-a-new-transcription
      description: Start A New Transcription
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: kensho-scribe-api.startTranscription
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: download-a-transcription-by-id
      description: Download A Transcription By ID
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: kensho-scribe-api.downloadTranscription
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-all-transcription-data-by-id
      description: Delete All Transcription Data By ID
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: kensho-scribe-api.deleteTranscription
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.