# ai_analytics_orgs_users_traces_list Viewset for retrieving and listing Langfuse traces. This viewset provides read-only access to Langfuse traces data for platform admins. Traces represent high-level tracking of user interactions and AI responses. Permissions: - Restricted to platform administrators only Endpoint: GET /api/ai-analytics/orgs/{org}/users/{user_id}/traces/ Version: 3.59.0-ai-plus Security: PlatformApiKeyAuthentication ## Query parameters: - `limit` (integer) Number of results to return per page. - `offset` (integer) The initial index from which to return the results. - `ordering` (string) Which field to use when ordering the results. - `search` (string) A search term. ## Path parameters: - `org` (string, required) - `user_id` (string, required) ## Response 200 fields (application/json): - `count` (integer, required) Example: 123 - `next` (string,null) Example: "http://api.example.org/accounts/?offset=400&limit=100" - `previous` (string,null) Example: "http://api.example.org/accounts/?offset=200&limit=100" - `results` (array, required) - `results.id` (string, required) - `results.timestamp` (string, required) - `results.name` (string, required) - `results.user_id` (string,null) - `results.metadata` (any, required) - `results.release` (string,null) - `results.version` (string,null) - `results.tags` (array, required) - `results.input` (string,null) - `results.output` (string,null) - `results.session_id` (string,null) - `results.created_at` (string, required) - `results.updated_at` (string) - `results.event_ts` (string, required) - `results.is_deleted` (integer, required)