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

# Export everything Recall holds about an end-user

> A data-subject export under GDPR Article 15: everything Recall holds about one
end-user, their facts followed by their conversation threads and messages,
paginated behind a single cursor. Each page carries either facts or threads,
never both.



## OpenAPI

````yaml /api-reference/openapi.json get /recall/export
openapi: 3.1.0
info:
  title: Akumi
  version: 0.0.1
servers:
  - url: https://api.akumi.eu/v1
    description: Production
security:
  - http: []
tags:
  - name: Audit log
  - name: Chat completions
  - name: Embeddings
  - name: Models
  - name: Recall
  - name: Scores
paths:
  /recall/export:
    get:
      tags:
        - Recall
      summary: Export everything Recall holds about an end-user
      description: >-
        A data-subject export under GDPR Article 15: everything Recall holds
        about one

        end-user, their facts followed by their conversation threads and
        messages,

        paginated behind a single cursor. Each page carries either facts or
        threads,

        never both.
      operationId: v1.recall.export
      parameters:
        - name: user_ref
          in: query
          required: true
          schema:
            type: string
            maxLength: 255
        - name: limit
          in: query
          schema:
            type: integer
            default: 50
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  user_ref:
                    type: string
                  exported_at:
                    type: string
                  facts:
                    type: array
                    items: {}
                  threads:
                    type: array
                    items:
                      type: string
                  next_cursor:
                    type:
                      - string
                      - 'null'
                    description: >-
                      Explicit ternary so the OpenAPI schema types next_cursor
                      as nullable.
                required:
                  - user_ref
                  - exported_at
                  - facts
                  - threads
                  - next_cursor
        '401':
          $ref: '#/components/responses/AuthenticationException'
        '422':
          $ref: '#/components/responses/ValidationException'
components:
  responses:
    AuthenticationException:
      description: Unauthenticated
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
                description: Error overview.
            required:
              - message
    ValidationException:
      description: Validation error
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
                description: Errors overview.
              errors:
                type: object
                description: A detailed description of each field that failed validation.
                additionalProperties:
                  type: array
                  items:
                    type: string
            required:
              - message
              - errors
  securitySchemes:
    http:
      type: http
      scheme: bearer

````