Trimble Agriculture Fields API
The Fields API from Trimble Agriculture — 2 operation(s) for fields.
The Fields API from Trimble Agriculture — 2 operation(s) for fields.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.curl "https://apis.io/api/v1/apis/trimble-agriculture-fields-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
title: Trimble Agriculture Data Boundaries Fields API
description: The Trimble Agriculture Data API (PTxAg FarmENGAGE API) provides REST endpoints for managing farms, fields, crop zones, boundaries, equipment activities, work orders, prescriptions, materials, and imagery. Enables third-party integrators to exchange precision agriculture data between field devices and farm management platforms. Serves over 180 million customer acres globally. Access requires registration at the Trimble Ag Developer Network.
version: 3.0.0
contact:
url: https://agdeveloper.trimble.com/
email: ag_api@trimble.com
servers:
- url: https://cloud.api.trimble.com/Trimble-Ag-Software/externalApi/3.0
description: Trimble Agriculture Cloud API
security:
- bearerAuth: []
tags:
- name: Fields
paths:
/organizations/{organizationId}/farms/{farmId}/fields:
get:
operationId: listFields
summary: List Fields
description: Returns all fields for a farm.
tags:
- Fields
parameters:
- name: organizationId
in: path
required: true
schema:
type: string
format: uuid
- name: farmId
in: path
required: true
schema:
type: string
format: uuid
responses:
'200':
description: List of fields
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Field'
post:
operationId: createField
summary: Create Field
description: Create a new field within a farm.
tags:
- Fields
parameters:
- name: organizationId
in: path
required: true
schema:
type: string
format: uuid
- name: farmId
in: path
required: true
schema:
type: string
format: uuid
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/FieldInput'
responses:
'200':
description: Field created
content:
application/json:
schema:
$ref: '#/components/schemas/Field'
/organizations/{organizationId}/farms/{farmId}/fields/{fieldId}:
get:
operationId: getFieldById
summary: Get Field
description: Retrieve details for a specific field.
tags:
- Fields
parameters:
- name: organizationId
in: path
required: true
schema:
type: string
format: uuid
- name: farmId
in: path
required: true
schema:
type: string
format: uuid
- name: fieldId
in: path
required: true
schema:
type: string
format: uuid
responses:
'200':
description: Field details
content:
application/json:
schema:
$ref: '#/components/schemas/Field'
put:
operationId: updateField
summary: Update Field
description: Update a field's details or boundary geometry.
tags:
- Fields
parameters:
- name: organizationId
in: path
required: true
schema:
type: string
format: uuid
- name: farmId
in: path
required: true
schema:
type: string
format: uuid
- name: fieldId
in: path
required: true
schema:
type: string
format: uuid
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/FieldInput'
responses:
'200':
description: Field updated
content:
application/json:
schema:
$ref: '#/components/schemas/Field'
delete:
operationId: deleteField
summary: Delete Field
description: Delete a field from a farm.
tags:
- Fields
parameters:
- name: organizationId
in: path
required: true
schema:
type: string
format: uuid
- name: farmId
in: path
required: true
schema:
type: string
format: uuid
- name: fieldId
in: path
required: true
schema:
type: string
format: uuid
responses:
'200':
description: Field deleted
components:
schemas:
GeoJsonGeometry:
type: object
description: GeoJSON geometry object
properties:
type:
type: string
enum:
- Point
- Polygon
- MultiPolygon
- LineString
coordinates:
description: GeoJSON coordinates array
FieldInput:
type: object
required:
- name
properties:
name:
type: string
area:
type: number
format: float
boundary:
$ref: '#/components/schemas/GeoJsonGeometry'
Field:
type: object
required:
- id
- name
properties:
id:
type: string
format: uuid
name:
type: string
description: Field name
farmId:
type: string
format: uuid
area:
type: number
format: float
description: Field area in hectares
boundary:
$ref: '#/components/schemas/GeoJsonGeometry'
description: Field boundary as GeoJSON geometry
securitySchemes:
bearerAuth:
type: http
scheme: bearer
description: OAuth 2.0 bearer token. Register at agdeveloper.trimble.com to obtain API credentials.