Skip to content
Last updated

🔨 In Development — This section is still being developed and may change.
Test endpoint for thread operations. Used for development and debugging purposes.
GEThttps://api.freddy.aitronos.com/v1/threads/{thread_id}/test

Test endpoint for verifying thread access and operations. Returns thread information and test data for debugging purposes.

Path Parameters

thread_id string required

The unique identifier of the thread to test.

Bash
curl "https://api.freddy.aitronos.com/v1/threads/thread_abc123/test" \
  -H "Authorization: Bearer $FREDDY_API_KEY"

Response

{
  "success": true,
  "threadId": "thread_abc123",
  "message": "Thread test successful",
  "testData": {
    "threadExists": true,
    "hasAccess": true,
    "messageCount": 15,
    "lastActivity": "2025-01-20T10:30:00Z"
  }
}