---
title: "Session Labels List"
method: GET
path: "/api/v1/session_labels/"
tags: ["session_labels"]
---

# Session Labels List

`GET /api/v1/session_labels/`

## Query parameters

- `page` integer, nullable — The page number from which to start (0-based)
- `limit` integer — The maximum number of items to return
- `search_fields` SessionLabelProperties[] — String names of fields to search. Correspond by index to search field values
- `search_field_values` string[] — Values of fields to search. Correspond by index to search fields. Unless field name contains "list", an individual search field value cannot be a list
- `order_by` 'timestamp' | 'session_id' | 'type' | 'code' | 'user_email' | 'issue_categories' | 'session_id_list'
- `order_by_direction` 'asc' | 'desc' — The direction in which to order list results, either ascending or descending.
- `fields` SessionLabelProperties[], nullable — The fields to include in the response
- `start_datetime` string, nullable — The start datetime for filtering results
- `end_datetime` string, nullable — The end datetime for filtering results

## Response `200`

Successful Response

- ListResponseSessionLabel
  - `items` SessionLabel[], required — List of items returned from the query
    - `session_id` integer, required — The internal ID of the session (see Session.session_id)
    - `type` string, required — The type of the label (either "auto-rating" or "human-rating")
    - `code` string, required — A code describing the quality of the labeled session (either "GOOD", "OK", "BAD", or "N/A")
    - `user_email` string, required — The email of the user who created the label
    - `comments` string, nullable — Comment string describing additional details about the session
    - `issue_categories` string[], nullable — Descriptions of issues occurring in the labeled call
    - `id` integer, required — The internal ID of the label
    - `timestamp` string, required — The timestamp at which the label was created
  - `page` integer, required — The page number of the results (0-based)
  - `page_size` integer, required — The number of items returned per page
  - `total_pages` integer, nullable — The total number of pages of results given the indicated page size
  - `total_count` integer, nullable — The total number of items returned from the query

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/asksyllable/apis/syllablesdk.md) · [All operations](https://skmtc.net/asksyllable/apis/syllablesdk/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/asksyllable/syllablesdk/versions/3e0721420b23/schema)
