AutoScraper API Reference
AutoScraper API Reference
Section titled “AutoScraper API Reference”Base Endpoints
Section titled “Base Endpoints”https://api.redblu.io/v1/autoscraperHarvest Operations
Section titled “Harvest Operations”POST /devices/{device_id}/harvest/start
Section titled “POST /devices/{device_id}/harvest/start”เริ่มการเก็บเกี่ยว
POST /v1/autoscraper/devices/harvester_001/harvest/startAuthorization: Bearer YOUR_API_KEYContent-Type: application/json
{ "area": "field_A_section_1", "harvest_criteria": { "min_size": 8, "ripeness_threshold": 85 }, "collection_container": "basket_001"}GET /devices/{device_id}/harvest/status
Section titled “GET /devices/{device_id}/harvest/status”ตรวจสอบสถานะการเก็บเกี่ยว
GET /v1/autoscraper/devices/harvester_001/harvest/statusResponse:
{ "success": true, "data": { "status": "active", "area_coverage": 45.2, "items_collected": 1247, "quality_distribution": { "grade_A": 856, "grade_B": 301, "grade_C": 90 }, "estimated_completion": "2024-08-05T16:30:00Z" }}Vision Analysis
Section titled “Vision Analysis”GET /devices/{device_id}/vision/analysis
Section titled “GET /devices/{device_id}/vision/analysis”วิเคราะห์ภาพด้วย AI
GET /v1/autoscraper/devices/harvester_001/vision/analysis?real_time=trueResponse:
{ "success": true, "data": { "detected_items": [ { "item_id": "fruit_001", "type": "apple", "coordinates": [120, 340], "size": 8.5, "ripeness": 92, "quality_grade": "A", "recommended_action": "harvest" } ], "field_conditions": { "lighting": "optimal", "weather": "clear", "visibility": 98 } }}Collection Management
Section titled “Collection Management”GET /devices/{device_id}/collections
Section titled “GET /devices/{device_id}/collections”รายการผลผลิตที่เก็บได้
GET /v1/autoscraper/devices/harvester_001/collections?date=2024-08-05Response:
{ "success": true, "data": { "collections": [ { "collection_id": "col_001", "timestamp": "2024-08-05T14:30:00Z", "container": "basket_001", "total_weight": 25.4, "item_count": 127, "average_quality": 8.7 } ], "daily_summary": { "total_collected": 523.8, "containers_filled": 21, "efficiency_rate": 94.2 } }}