Skip to main content
GET
/
v1
/
threads
/
{thread_id}
Get Thread
curl --request GET \
  --url https://api.example.com/v1/threads/{thread_id}

Endpoint

GET https://tako.com/api/v1/threads/{thread_id}

Authentication

Include your API key in the Authorization header:
Authorization: Bearer YOUR_API_KEY

Path Parameters

ParameterTypeDescription
thread_idstringRequired. The ID of the thread to retrieve

Example Request

curl -X GET https://tako.com/api/v1/threads/thread_abc123 \
  -H "Authorization: Bearer YOUR_API_KEY"

Response

Returns the thread object with metadata.
{
  "thread_id": "thread_abc123",
  "created_at": "2024-01-15T10:30:00Z",
  "in_focus_card_id": "card_xyz789"
}

Notes

  • To authenticate, you’ll need a Tako API key.
  • Use this endpoint to retrieve thread metadata like creation time and in-focus card.
  • To get the full conversation history including messages, use the List Thread Messages endpoint.