Sentera website screenshot

Sentera

Sentera is a precision-agriculture company building aerial imagery sensors, drones, and the FieldAgent platform for capturing, processing, and analyzing in-season field data. The FieldAgent API is a single-endpoint GraphQL interface (https://api.sentera.com/graphql) that gives customers and integration partners programmatic access to fields, surveys, flight tasks, imagery, mosaics, plot analytics, and orders. Sentera was acquired by John Deere in 2025.

4 APIs 0 Features
Precision AgricultureAerial ImageryDronesSensorsAnalyticsGraphQL

APIs

Sentera FieldAgent GraphQL API

Single-endpoint GraphQL API (POST/GET to https://api.sentera.com/graphql) exposing the full FieldAgent object graph - fields, surveys, flight tasks, analytics, and orders - thro...

Sentera Imagery & Data API

Access to captured imagery, orthomosaics, and processed map layers (RGB, NDVI, NDRE) tied to surveys and flight tasks, plus imagery upload and sync operations, surfaced through ...

Sentera Plot Analytics API

Plant-level analytic results - stand/population counts, tassel counts, plot statistics, and field insights used by seed and research programs - retrievable via the analytic and ...

Sentera Orders & Organizations API

Processing-order placement and lifecycle management, organization and user administration, field sharing, and webhook subscriptions for event notifications, all exposed as Field...

Collections

GraphQL

Sentera FieldAgent GraphQL API

Sentera's FieldAgent API is a **GraphQL** API, not a resource-oriented REST API.

GRAPHQL

Pricing Plans

Sentera Plans Pricing

3 plans

PLANS

Rate Limits

Sentera Rate Limits

3 limits

RATE LIMITS

FinOps

Resources

🔗
LinkedIn
LinkedIn
🔗
Website
Website
🔗
Documentation
Documentation
🔗
Plans
Plans
🔗
RateLimits
RateLimits
🔗
FinOps
FinOps

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Sentera FieldAgent API
  version: '1.0'
request:
  auth:
    type: bearer
    token: '{{authToken}}'
items:
- info:
    name: GraphQL
    type: folder
  items:
  - info:
      name: Query fields
      type: http
    http:
      method: POST
      url: https://api.sentera.com/graphql
      body:
        type: json
        data: '{"query":"query { fields(owner_id: \"ORG_SENTERA_ID\") { results { id name } } }"}'
    docs: List fields for an organization via the FieldAgent GraphQL endpoint.
  - info:
      name: Query surveys
      type: http
    http:
      method: POST
      url: https://api.sentera.com/graphql
      body:
        type: json
        data: '{"query":"query { surveys(owner_id: \"ORG_SENTERA_ID\") { results { id name } } }"}'
    docs: List surveys (capture sessions) via the FieldAgent GraphQL endpoint.
  - info:
      name: Query analytic
      type: http
    http:
      method: POST
      url: https://api.sentera.com/graphql
      body:
        type: json
        data: '{"query":"query { analytic(sentera_id: \"ANALYTIC_SENTERA_ID\") { id type } }"}'
    docs: Retrieve a plot-analytics result via the FieldAgent GraphQL endpoint.
  - info:
      name: Mutation create_field
      type: http
    http:
      method: POST
      url: https://api.sentera.com/graphql
      body:
        type: json
        data: '{"query":"mutation CreateField($name: String!) { create_field(name: $name) { field { id name } } }","variables":{"name":"North
          40"}}'
    docs: Create a field via the FieldAgent GraphQL endpoint.
  - info:
      name: Mutation place_order
      type: http
    http:
      method: POST
      url: https://api.sentera.com/graphql
      body:
        type: json
        data: '{"query":"mutation { place_order(survey_id: \"SURVEY_SENTERA_ID\") { order { id status } } }"}'
    docs: Place a processing order for a survey via the FieldAgent GraphQL endpoint.
bundled: true