Skip to main content
GET
/
v1
/
threads
/
{thread_id}
cURL
curl --request GET \
  --url https://trytako.com/api/v1/threads/{thread_id} \
  --header 'X-API-Key: <api-key>'
{
  "thread_id": "<string>",
  "object": "thread",
  "created": 123,
  "title": "<string>",
  "description": "<string>",
  "metadata": {}
}

Notes

  • To authenticate, you’ll need a Tako API key. It’s best practice to store it as an environment variable to avoid hardcoding sensitive credentials in your code.
  • Returns thread metadata in a standardized external format to support natural language discussion and visualization output.

Authorizations

X-API-Key
string
header
required

Path Parameters

thread_id
string
required

ID of the thread

Response

Thread details

External thread representation.

thread_id
string
required

The thread ID

created
integer
required

Unix timestamp of thread creation

object
string
default:thread

Object type

title
string | null

Thread title

description
string | null

Thread description

metadata
object

Additional metadata

I