Skip to content
Last updated

🔨 In Development — This section is still being developed and may change.
Get detailed information about a specific thread including metadata, message count, and configuration.
GEThttps://api.freddy.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.freddy.aitronos.com/v1/threads/thread_abc123" \
  -H "Authorization: Bearer $FREDDY_API_KEY"

Response

{
  "id": "thread_abc123",
  "object": "thread",
  "createdAt": 1741476542,
  "updatedAt": 1741476600,
  "metadata": {
    "category": "support",
    "priority": "high",
    "tags": ["billing", "urgent"]
  },
  "assistantId": "asst_support_agent",
  "organizationId": "ORG_123",
  "userId": "uid_user123",
  "title": "Customer Support Query",
  "visibleInUi": true,
  "messageCount": 5,
  "status": "inactive"
}