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

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 threads in a standardized external format suitable for natural language discussions that may produce visualizations.

Authorizations

X-API-Key
string
header
required

Response

200 - application/json

List of threads

Response containing a list of threads.

data
ExternalThread · object[]
required

List of threads

object
string
default:list

Object type

has_more
boolean
default:false

Whether there are more threads

I