Agri Info Design V1 Observation API

The V1Observation API from Agri Info Design — 4 operation(s) for v1observation.

Operations 8

PUT /v1/observations/pf/{id} Update pf observation #
DELETE /v1/observations/pf/{id} Delete pf observation #
PUT /v1/observations/at/{id} Update at observation #
DELETE /v1/observations/at/{id} Delete at observation #
GET /v1/observations/pf List pf observations #
POST /v1/observations/pf Create pf observation #
GET /v1/observations/at List at observations #
POST /v1/observations/at Create at observation #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • 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.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/agriinfodesign-v1observation-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

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 Specification

agriinfodesign-v1observation-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Agriinfodesign V1 Observation API
servers:
- url: http://datastore.agribus-connect.net
  description: Generated server url
security:
- bearerAuth: []
tags:
- name: V1Observation
paths:
  /v1/observations/pf/{id}:
    put:
      tags:
      - V1Observation
      description: PF観測リストを保存します
      operationId: updatePfObservation
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
          format: int64
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SaveSoilMoistureObservationRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RemoteSoilMoistureObservation'
      summary: Update pf observation
      x-summary-source: derived
    delete:
      tags:
      - V1Observation
      description: PF観測ポイントリストを削除します
      operationId: deletePfObservation
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
      summary: Delete pf observation
      x-summary-source: derived
  /v1/observations/at/{id}:
    put:
      tags:
      - V1Observation
      description: AT観測を保存します
      operationId: updateAtObservation
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
          format: int64
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SaveAccumulatedTemperatureObservationRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RemoteAccumulatedTemperatureObservation'
      summary: Update at observation
      x-summary-source: derived
    delete:
      tags:
      - V1Observation
      description: AT観測ポイントリストを削除します
      operationId: deleteAtObservation
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
      summary: Delete at observation
      x-summary-source: derived
  /v1/observations/pf:
    get:
      tags:
      - V1Observation
      description: PF観測リストを取得します
      operationId: listPfObservations
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RemoteSoilMoistureObservation'
      summary: List pf observations
      x-summary-source: derived
    post:
      tags:
      - V1Observation
      description: PF観測を作成します
      operationId: createPfObservation
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SaveSoilMoistureObservationRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RemoteSoilMoistureObservation'
      summary: Create pf observation
      x-summary-source: derived
  /v1/observations/at:
    get:
      tags:
      - V1Observation
      description: AT観測リストを取得します
      operationId: listAtObservations
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RemoteAccumulatedTemperatureObservation'
      summary: List at observations
      x-summary-source: derived
    post:
      tags:
      - V1Observation
      description: AT観測を作成します
      operationId: createAtObservation
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SaveAccumulatedTemperatureObservationRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RemoteAccumulatedTemperatureObservation'
      summary: Create at observation
      x-summary-source: derived
components:
  schemas:
    RemoteAccumulatedTemperatureObservation:
      type: object
      properties:
        id:
          type: integer
          format: int64
        username:
          type: string
        placeType:
          type: string
        fireFieldId:
          type: string
        geohash:
          type: string
        lowerLimitTemperature:
          type: number
        startDate:
          type: string
        endDate:
          type: string
        baseHour:
          type: integer
          format: int32
        zoneId:
          type: string
    RemoteSoilMoistureObservation:
      type: object
      properties:
        id:
          type: integer
          format: int64
        username:
          type: string
        placeType:
          type: string
        fireFieldId:
          type: string
        geohash:
          type: string
        drainage:
          type: string
        soil:
          type: string
    SaveSoilMoistureObservationRequest:
      type: object
      properties:
        fireFieldId:
          type: string
        placeType:
          type: string
        drainage:
          type: string
        soil:
          type: string
    SaveAccumulatedTemperatureObservationRequest:
      type: object
      properties:
        fireFieldId:
          type: string
        placeType:
          type: string
        lowerLimitTemperature:
          type: number
        startDate:
          type: string
        endDate:
          type: string
        zoneId:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT