cURL
curl --request GET \ --url https://api.example.com/v1/threads
List all threads for your account
GET https://tako.com/api/v1/threads
Authorization: Bearer YOUR_API_KEY
curl -X GET https://tako.com/api/v1/threads \ -H "Authorization: Bearer YOUR_API_KEY"
{ "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" } ] }