Build powerful agricultural applications with the WiseYield API.
The WiseYield API uses API keys to authenticate requests. You can view and manage your API keys in the dashboard.
/v1/farmsList all farms associated with your account.
/v1/crops/{id}/healthGet health metrics for a specific crop.
/v1/analysisSubmit a new soil analysis request.
curl -X POST https://api.wiseyield.co/v1/analysis \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"farm_id": "farm_123",
"crop_type": "wheat",
"soil_data": {
"ph": 6.5,
"nitrogen": 45,
"phosphorus": 22
}
}'