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

# Read the public evaluation entry for a journey

> Public customer endpoint; reading it does not start an evaluation.



## OpenAPI

````yaml /openapi-v1.json get /v1/journey-entries/{journeyId}
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/journey-entries/{journeyId}:
    get:
      tags:
        - journey entries
      summary: Read the public evaluation entry for a journey
      description: Public customer endpoint; reading it does not start an evaluation.
      operationId: CustomJourneyEntryController_info
      parameters:
        - name: journeyId
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JourneyEntryInfoDto'
        '400':
          description: Invalid contact, case reference or request ID
        '404':
          description: This evaluation is not available
      security: []
components:
  schemas:
    JourneyEntryInfoDto:
      type: object
      properties:
        name:
          type: string
        momentName:
          type: string
        tool:
          type: string
          enum:
            - woku
            - csat
            - ces
            - nps
        requiresReference:
          type: boolean
          description: A case reference is required when later moments start on webhooks.
      required:
        - tool
        - requiresReference

````