Retrieve details for a specific folder. ## Path Parameters **`folder_id`** string required Folder ID (sfold_ prefixed) ## Returns Returns the folder object. Request ```bash cURL curl -X GET "https://api.aitronos.com/api/v1/streamline/folders/sfold_abc123" \ -H "X-API-Key: $FREDDY_API_KEY" ``` ```python Python import os import requests api_key = os.environ["FREDDY_API_KEY"] folder_id = "sfold_abc123" response = requests.get( f"https://api.aitronos.com/api/v1/streamline/folders/{folder_id}", headers={"X-API-Key": api_key} ) folder = response.json() print(f"Folder: {folder['name']}") ``` ```javascript JavaScript const apiKey = process.env.FREDDY_API_KEY; const folderId = "sfold_abc123"; const response = await fetch( `https://api.aitronos.com/api/v1/streamline/folders/${folderId}`, { headers: { "X-API-Key": apiKey } } ); const folder = await response.json(); console.log(`Folder: ${folder.name}`); ``` Response ```json 200 OK { "id": "sfold_abc123", "organization_id": "org_xyz789", "created_by_user_id": "usr_def456", "parent_folder_id": null, "name": "Production Automations", "description": "All production-ready workflows", "display_order": 1, "is_deleted": false, "created_at": "2025-11-28T10:30:00Z", "updated_at": "2025-11-28T10:30:00Z", "deleted_at": null } ``` ```json 404 Not Found { "success": false, "error": { "code": "FOLDER_NOT_FOUND", "message": "Folder not found", "status": 404 } } ```