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.

Returns

Returns a JSON response indicating success or failure.

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

Response:

{
  "id": "thrd_abc123",
  "object": "thread",
  "created_at": "2025-11-17T10:00:00Z",
  "updated_at": "2025-11-17T10:05:00Z",
  "last_message_at": "2025-11-17T10:05:00Z",
  "metadata": {
    "user_id": "user_abc",
    "source": "docs"
  },
  "assistant_id": "asst_abc123",
  "organization_id": "org_12345",
  "user_id": "usr_abc123",
  "title": "Aitronos Inquiry",
  "status": "inactive",
  "message_count": 5,
  "visible_in_ui": true,
  "last_model_used": "gpt-4o",
  "is_pinned": false,
  "pinned_at": null,
  "space_ids": ["space_abc123"]
}