🔨 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.
thread_id string required
The unique identifier of the thread to test.
Bash
- Bash
- Python
- JavaScript
curl "https://api.freddy.aitronos.com/v1/threads/thread_abc123/test" \
-H "Authorization: Bearer $FREDDY_API_KEY"{
"success": true,
"threadId": "thread_abc123",
"message": "Thread test successful",
"testData": {
"threadExists": true,
"hasAccess": true,
"messageCount": 15,
"lastActivity": "2025-01-20T10:30:00Z"
}
}