Agri Info Design V1 Planting API

The V1Planting API from Agri Info Design — 3 operation(s) for v1planting.

Operations 5

PUT /v1/plantings/{id} Update #
DELETE /v1/plantings/{id} Delete 1 #
GET /v1/plantings List #
POST /v1/plantings Create #
GET /v1/plantings/ List 1 #

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-v1planting-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-v1planting-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Agriinfodesign V1 Planting API
servers:
- url: http://datastore.agribus-connect.net
  description: Generated server url
security:
- bearerAuth: []
tags:
- name: V1Planting
paths:
  /v1/plantings/{id}:
    put:
      tags:
      - V1Planting
      description: 作付を更新
      operationId: update
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
          format: int64
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EditPlantingRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RemotePlanting'
      summary: Update
      x-summary-source: derived
    delete:
      tags:
      - V1Planting
      description: 対象圃場の作付を削除
      operationId: delete_1
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
      summary: Delete 1
      x-summary-source: derived
  /v1/plantings:
    get:
      tags:
      - V1Planting
      description: フォローしているユーザーを含む作付一覧
      operationId: list
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RemotePlanting'
      summary: List
      x-summary-source: derived
    post:
      tags:
      - V1Planting
      description: 対象圃場に作付を作成
      operationId: create
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EditPlantingRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RemotePlanting'
      summary: Create
      x-summary-source: derived
  /v1/plantings/:
    get:
      tags:
      - V1Planting
      description: フォローしているユーザーを含む作付一覧
      operationId: list_1
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RemotePlanting'
      summary: List 1
      x-summary-source: derived
components:
  schemas:
    EditPlantingRequest:
      type: object
      properties:
        fieldIds:
          type: array
          items:
            type: string
        masterCropId:
          type: integer
          format: int32
        cropName:
          type: string
        varietyName:
          type: string
        colorHex:
          type: string
        startDate:
          type: string
        endDate:
          type: string
    RemotePlanting:
      type: object
      properties:
        id:
          type: integer
          format: int64
        username:
          type: string
        fieldIds:
          type: array
          items:
            type: string
        masterCropId:
          type: integer
          format: int32
        cropName:
          type: string
        varietyName:
          type: string
        colorHex:
          type: string
        startDate:
          type: string
        endDate:
          type: string
        now:
          type: boolean
        fieldNames:
          type: array
          items:
            type: string
        fieldArea:
          type: number
          format: double
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT