---
title: "GET /apps/{appId}/versions/{versionId}/examples"
method: GET
path: "/apps/{appId}/versions/{versionId}/examples"
---

# GET /apps/{appId}/versions/{versionId}/examples

`GET /apps/{appId}/versions/{versionId}/examples`

Returns example utterances to be reviewed from a version of the application.

## Path parameters

- `appId` string, uuid, required
- `versionId` string, required

## Query parameters

- `skip` integer
- `take` integer
- `enableNestedChildren` boolean

## Response `200`

A list of predictions and label pairs for every example utterance in the application.

- LabeledUtterance[] — A list of predictions and label pairs for every example in the application.
  - `id` integer — ID of Labeled Utterance.
  - `text` string — The utterance. For example, "What's the weather like in seattle?"
  - `tokenizedText` string[] — The utterance tokenized.
  - `intentLabel` string — The intent matching the example.
  - `entityLabels` EntityLabel[] — The entities matching the example.
    - `entityName` string, required — The entity type.
    - `startTokenIndex` integer, required — The index within the utterance where the extracted entity starts.
    - `endTokenIndex` integer, required — The index within the utterance where the extracted entity ends.
    - `role` string — The role of the predicted entity.
    - `roleId` string, uuid — The role id for the predicted entity.
    - `children` EntityLabel[]
  - `intentPredictions` IntentPrediction[] — List of suggested intents.
    - `name` string — The intent's name
    - `score` number — The intent's score, based on the prediction model.
  - `entityPredictions` EntityPrediction[] — List of suggested entities.
    - `entityName` string, required — The entity's name
    - `startTokenIndex` integer, required — The index within the utterance where the extracted entity starts.
    - `endTokenIndex` integer, required — The index within the utterance where the extracted entity ends.
    - `phrase` string, required — The actual token(s) that comprise the entity.
    - `children` EntityPrediction[]

## Other responses

- `default` — Error Response.

---

[API](https://skmtc.net/azure/apis/luis-authoring-client.md) · [All operations](https://skmtc.net/azure/apis/luis-authoring-client/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/azure/luis-authoring-client/revisions/a26a0f7e5a37/schema)
