Skip to content
Last updated

Get detailed information about a specific thread including metadata, message count, and configuration.

GEThttps://api.aitronos.com/v1/threads/{thread_id}

Get detailed information about a specific thread including metadata, message count, and configuration. Returns complete thread details with all associated metadata and settings.

Path Parameters

thread_id string required

The unique identifier of the thread to retrieve.

Bash
curl "https://api.aitronos.com/v1/threads/thread_abc123" \
  -H "X-API-Key: $FREDDY_API_KEY"

Response:

{
  "id": "thread_abc123",
  "created_at": "2025-11-17T10:00:00Z",
  "metadata": {
    "userId": "user_abc",
    "source": "docs"
  },
  "organization_id": "org_12345",
  "title": "Aitronos Inquiry",
  "lastMessageAt": "2025-11-17T10:05:00Z",
  "assistant_id": "asst_abc123",
  "status": "active",
  "visibleInUi": true,
  "messageCount": 5
}