Skip to main content
GET
/
v1
/
threads
List Threads
curl --request GET \
  --url https://api.example.com/v1/threads

Endpoint

GET https://tako.com/api/v1/threads

Authentication

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

Example Request

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

Response

Returns an array of thread objects with metadata.
{
  "threads": [
    {
      "thread_id": "thread_abc123",
      "created_at": "2024-01-15T10:30:00Z",
      "in_focus_card_id": null
    },
    {
      "thread_id": "thread_def456",
      "created_at": "2024-01-14T15:45:00Z",
      "in_focus_card_id": "card_xyz789"
    }
  ]
}

Notes

  • To authenticate, you’ll need a Tako API key.
  • Use this endpoint to see all threads for your account and manage conversation state in your app.
  • Consider how you’ll manage threads in your app – map them to user sessions, projects, or conversations.