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

# Export paginated sessions data



## OpenAPI

````yaml https://api.wejam.ai/docs-json get /api/v1/data-exports/sessions
openapi: 3.0.0
info:
  contact: {}
  description: API description
  title: JAM
  version: 0.0.1
servers:
  - url: https://api.wejam.ai
security:
  - X-API-KEY: []
  - bearer: []
tags: []
paths:
  /api/v1/data-exports/sessions:
    get:
      tags:
        - data-export
      summary: Export paginated sessions data
      operationId: DataExportController_findSessions_v1
      parameters:
        - description: Page number starting from 1
          in: query
          name: page
          required: false
          schema:
            default: 1
            minimum: 1
            type: number
        - description: Limit for the number of results per page. Maximum is 100
          in: query
          name: limit
          required: false
          schema:
            default: 10
            maximum: 100
            minimum: 1
            type: number
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataExportFindSessionsResponseDTO'
          description: ''
components:
  schemas:
    DataExportFindSessionsResponseDTO:
      properties:
        data:
          items:
            properties:
              analysis:
                properties:
                  items:
                    items:
                      properties:
                        explanation:
                          description: The explanation of the analysis item
                          nullable: true
                          type: string
                        itemScore:
                          description: The score of the analysis item
                          type: number
                        name:
                          description: The name of the analysis item
                          nullable: true
                          type: string
                        solved:
                          description: The status of the analysis item
                          enum:
                            - notSolved
                            - partlySolved
                            - solved
                          type: string
                        suggestion:
                          description: The suggestion for the analysis item
                          nullable: true
                          type: string
                      required:
                        - name
                        - solved
                        - explanation
                        - suggestion
                        - itemScore
                      type: object
                    type: array
                  score:
                    description: The overall score of the session
                    type: number
                required:
                  - score
                  - items
                type: object
              completed:
                description: Whether the session is completed
                type: boolean
              createdAt:
                description: The date and time when the session was created
                format: date-time
                pattern: >-
                  ^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))T(?:(?:[01]\d|2[0-3]):[0-5]\d(?::[0-5]\d(?:\.\d+)?)?(?:Z))$
                type: string
              id:
                description: The unique identifier for the session
                format: uuid
                pattern: >-
                  ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
                type: string
              language:
                description: The language of the session
                enum:
                  - en
                  - de
                  - fr
                  - es
                  - it
                  - nl
                  - zh-Hans
                type: string
              lastUpdatedAt:
                description: The date and time when the session was last updated
                format: date-time
                pattern: >-
                  ^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))T(?:(?:[01]\d|2[0-3]):[0-5]\d(?::[0-5]\d(?:\.\d+)?)?(?:Z))$
                type: string
              learnerUserId:
                description: The unique identifier for the learner user
                format: uuid
                pattern: >-
                  ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
                type: string
              missionId:
                description: The unique identifier for the mission
                nullable: true
                pattern: ^[0-9a-f]{24}$
                type: string
              participantUserIds:
                description: >-
                  User IDs of all attributed speakers in the call, including the
                  scored rep (learnerUserId). Only set on real-call sessions;
                  empty array when the transcript carries no speaker
                  attribution.
                items:
                  format: uuid
                  pattern: >-
                    ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
                  type: string
                type: array
              transcript:
                description: The transcript of the session, if available
                nullable: true
                type: string
            required:
              - id
              - createdAt
              - lastUpdatedAt
              - learnerUserId
              - transcript
              - analysis
              - language
              - completed
            type: object
          type: array
        meta:
          properties:
            hasNext:
              type: boolean
            limit:
              type: number
            page:
              type: number
            total:
              type: number
          required:
            - total
            - page
            - limit
            - hasNext
          type: object
      required:
        - data
        - meta
      type: object
  securitySchemes:
    X-API-KEY:
      in: header
      name: X-API-KEY
      type: apiKey
    bearer:
      bearerFormat: JWT
      description: Enter your Bearer token
      scheme: bearer
      type: http

````