Skip to content

AutoScraper API Reference

https://api.redblu.io/v1/autoscraper

เริ่มการเก็บเกี่ยว

POST /v1/autoscraper/devices/harvester_001/harvest/start
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json
{
"area": "field_A_section_1",
"harvest_criteria": {
"min_size": 8,
"ripeness_threshold": 85
},
"collection_container": "basket_001"
}

ตรวจสอบสถานะการเก็บเกี่ยว

GET /v1/autoscraper/devices/harvester_001/harvest/status

Response:

{
"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"
}
}

วิเคราะห์ภาพด้วย AI

GET /v1/autoscraper/devices/harvester_001/vision/analysis?real_time=true

Response:

{
"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
}
}
}

รายการผลผลิตที่เก็บได้

GET /v1/autoscraper/devices/harvester_001/collections?date=2024-08-05

Response:

{
"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
}
}
}