deere_search_operations
Search field operations across an organization or for a specific field. Returns crop, dates, area, and type-specific details for planting, harvest, application, and tillage operations.
Parameters
Parameter Type Required Default Description orgIdstring Yes — Organization ID fieldIdstring No — Filter to a specific field operationTypeenum No allplanting, harvest, application, tillage, or alldateRangeobject No — { startDate, endDate } in YYYY-MM-DD formatlimitnumber No 50 Results per page (1-100) offsetnumber No 0 Pagination offset
Usage
All Operations for a Field
{
"orgId" : "123" ,
"fieldId" : "abc"
}
Harvest Data for a Season
{
"orgId" : "123" ,
"operationType" : "harvest" ,
"dateRange" : {
"startDate" : "2025-09-01" ,
"endDate" : "2025-12-31"
}
}
Response
{
"error" : false ,
"data" : {
"operations" : [
{
"id" : "op-uuid" ,
"fieldId" : "abc" ,
"date" : "2025-10-15" ,
"operationType" : "harvest" ,
"crop" : "corn" ,
"area" : 40.5 ,
"yieldPerAcre" : 185.3 ,
"moisture" : 15.2 ,
"totalYield" : 7504.65
},
{
"id" : "op-uuid-2" ,
"fieldId" : "abc" ,
"date" : "2025-04-20" ,
"operationType" : "planting" ,
"crop" : "corn" ,
"area" : 40.5 ,
"variety" : "DKC62-08" ,
"seedingRate" : 34000 ,
"population" : 34000
}
],
"pagination" : {
"total" : 2 ,
"offset" : 0 ,
"limit" : 50 ,
"hasMore" : false
}
}
}
Operation-Specific Fields
Planting
Field Description varietySeed variety seedingRateSeeds per acre populationPlant population
Harvest
Field Description yieldPerAcreBushels per acre moistureGrain moisture percentage totalYieldTotal bushels
Application
Field Description productProduct name productTypefertilizer, herbicide, insecticide, fungicide, otherratePerAcreApplication rate rateUnitRate unit (e.g., lbs, gal)
Tillage
Field Description implementTillage implement used depthTillage depth
Notes
When searching across all fields in an organization (no fieldId), the tool queries up to 20 fields to avoid provider API limits. For large organizations, filter by fieldId for best results.
Errors
Code Cause ORG_NOT_FOUNDOrganization doesn't exist NO_DATA_FOR_PERIODNo operations found in date range TOKEN_EXPIREDJohn Deere token expired PROVIDER_TIMEOUTTry a shorter date range
Parameter Type Required Description orgId string Required Organization ID fieldId string Optional operationType planting | harvest | application | tillage | all Optional dateRange object Optional limit number Optional offset number Optional
Try it deere_search_operations