Skip to main content
GET
/
api
/
training
/
export
Export training snapshots as a JSON download
curl --request GET \
  --url https://your-instance.example.com/api/training/export \
  --header 'Authorization: Bearer <token>'
{
  "exportDate": "2026-05-18T14:30:00.000Z",
  "organizationId": "65a0e0e0e0e0e0e0e0e0e0e0",
  "totalSnapshots": 1,
  "data": [
    {
      "id": "67f1a0b0c0d0e0f0a0b0c0d0",
      "customer": {
        "name": "Jane Doe",
        "phone": "+14155550123",
        "email": "jane@example.com"
      },
      "conversation": [
        {
          "role": "assistant",
          "content": "Hi! How can we help?",
          "timestamp": "2026-05-18T13:30:00.000Z",
          "senderType": "AI"
        }
      ],
      "metadata": {
        "quality": "good",
        "tags": [
          "sales"
        ],
        "messageCount": 4
      }
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.tetherai.ca/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

quality
string
category
string

Response

Training data exported as a JSON file attachment.

Top-level JSON body downloaded by /api/training/export. Not wrapped in a { success, data } envelope.

exportDate
string<date-time>
required
organizationId
string
required
totalSnapshots
integer
required
data
object[]
required