> ## Documentation Index
> Fetch the complete documentation index at: https://woku.app/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Get the NPS report for a specific NPS tool

> Returns the NPS report for the given tool. Fails with 400 if the tool does not belong to the caller company.



## OpenAPI

````yaml /openapi-v1.json get /v1/reports/nps-tool/{npsToolId}
openapi: 3.0.0
info:
  title: Woku Client API v1
  description: >-
    Public REST API for programmatic management of woku Voice-of-Customer
    programs: trackers, VoC instruments (NPS, woku, CES, CSAT), action plans,
    support tickets, multi-channel sending and response capture. Requests are
    company-scoped by the API key; never send a company id.
  version: 1.0.0
  contact:
    name: Woku
    url: https://woku.app
    email: team@woku.app
servers:
  - url: https://clientapi.woku.app
    description: Production
security: []
tags: []
paths:
  /v1/reports/nps-tool/{npsToolId}:
    get:
      tags:
        - v1 - reports
      summary: Get the NPS report for a specific NPS tool
      description: >-
        Returns the NPS report for the given tool. Fails with 400 if the tool
        does not belong to the caller company.
      operationId: V1ReportsController_getNpsTool
      parameters:
        - name: npsToolId
          required: true
          in: path
          schema:
            type: string
            format: ObjectId
      responses:
        '200':
          description: NPS tool report
        '400':
          description: NPS tool does not belong to the caller company
      security:
        - bearer: []
components:
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: API key
      type: http
      description: Company secret API key.

````