Agri Info Design Navi V1 API

V 1 Navi Controller

Operations 5

PUT /v1/navi/settings/{deviceId} 利用しないでください #
POST /v1/navi/status/purchase/check checkAndroidPurchases #
POST /v1/navi/status/purchase/{deviceId} replaceAndroidPurchases #
PUT /v1/navi/status/purchase/{deviceId} saveAndroidPurchases #
PUT /v1/navi/status/{deviceId} saveStatus #

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-naviv1-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-naviv1-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: AgriBus-Web Manager API
  version: 0.0.1
  title: AgriBus-Web Manager Navi V1 API
  termsOfService: http://agri-info-design.com/
  license:
    name: Some License
    url: http://agri-info-design.com/
servers:
- url: https://manager.agribus-connect.net/
tags:
- name: NaviV1
  description: V 1 Navi Controller
paths:
  /v1/navi/settings/{deviceId}:
    put:
      tags:
      - NaviV1
      summary: 利用しないでください
      description: このAPIは非推奨です。後方互換性のためだけに残されています。SaveStatusを利用してください
      operationId: saveSettingsUsingPUT
      parameters:
      - name: deviceId
        in: path
        description: deviceId
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      deprecated: true
      requestBody:
        content:
          application/json;charset=UTF-8:
            schema:
              type: object
        description: agriBusNaviSettingsJson
        required: true
  /v1/navi/status/purchase/check:
    post:
      tags:
      - NaviV1
      summary: checkAndroidPurchases
      description: Google課金情報がすでに存在するかチェックする
      operationId: checkAndroidPurchasesUsingPOST
      responses:
        '200':
          description: OK
          content:
            application/json;charset=UTF-8:
              schema:
                $ref: '#/components/schemas/CheckAndroidPurchasesResponse'
      requestBody:
        content:
          application/json;charset=UTF-8:
            schema:
              $ref: '#/components/schemas/AndroidPurchases'
        description: androidPurchases
        required: true
  /v1/navi/status/purchase/{deviceId}:
    post:
      tags:
      - NaviV1
      summary: replaceAndroidPurchases
      description: Google課金情報の保持者(username)を書き換える
      operationId: replaceAndroidPurchasesUsingPOST
      parameters:
      - name: deviceId
        in: path
        description: deviceId
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json;charset=UTF-8:
              schema:
                $ref: '#/components/schemas/UserInfo'
      requestBody:
        content:
          application/json;charset=UTF-8:
            schema:
              $ref: '#/components/schemas/AndroidPurchases'
        description: androidPurchases
        required: true
    put:
      tags:
      - NaviV1
      summary: saveAndroidPurchases
      description: NAVI端末内のGoogle課金情報を保存する
      operationId: saveAndroidPurchasesUsingPUT
      parameters:
      - name: deviceId
        in: path
        description: deviceId
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      requestBody:
        content:
          application/json;charset=UTF-8:
            schema:
              $ref: '#/components/schemas/AndroidPurchases'
        description: androidPurchases
        required: true
  /v1/navi/status/{deviceId}:
    put:
      tags:
      - NaviV1
      summary: saveStatus
      description: (Firestore Settingsに移行後は利用しないでください) NAVIのステータス(AgriBusNaviSettings.jsonとGoogle課金情報)を保存する
      operationId: saveStatusUsingPUT
      parameters:
      - name: deviceId
        in: path
        description: deviceId
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      deprecated: true
      requestBody:
        content:
          application/json;charset=UTF-8:
            schema:
              $ref: '#/components/schemas/AgriBusNaviStatusRequest'
        description: agriBusNaviStatusRequest
        required: true
components:
  schemas:
    AndroidPurchases:
      type: object
      properties:
        standardPlan:
          $ref: '#/components/schemas/AndroidPurchase'
    PurchaseInfo:
      type: object
      properties:
        activeSubscriptionCount:
          type: integer
          format: int32
        autoRenewing:
          type: boolean
        billingVendor:
          type: string
          enum:
          - Google
          - Stripe
        plan:
          type: string
          enum:
          - Free
          - Standard
          - Enterprise
          - Plus
          - Professional
        planEnforced:
          type: boolean
        planExpiredAt:
          type: string
        planStartedAt:
          type: string
        purchases:
          type: array
          items:
            $ref: '#/components/schemas/Purchase'
        subscriptionId:
          type: string
        subscriptionIdForFunctionality:
          type: string
        trial:
          type: boolean
    AndroidPurchase:
      type: object
      required:
      - developerPayload
      - orderId
      - packageName
      - productId
      - purchaseState
      - purchaseTime
      - purchaseToken
      properties:
        developerPayload:
          type: string
        orderId:
          type: string
        packageName:
          type: string
        productId:
          type: string
        purchaseState:
          type: integer
          format: int32
        purchaseTime:
          type: integer
          format: int64
        purchaseToken:
          type: string
        purchased:
          type: boolean
        testPurchase:
          type: boolean
    UserInfo:
      type: object
      properties:
        calclatedPlan:
          type: string
          description: 後方互換性を保つためだけにあります。値はセットされることがありません。常にnullです。計算済みプランはpurchaseInfo#planを利用してください。
          enum:
          - Free
          - Standard
          - Enterprise
          - Plus
          - Professional
        customIconUrl:
          type: string
        email:
          type: string
        functionality:
          type: string
          enum:
          - AsFree
          - AsStandard
          - AsPlus
          - AsProfessional
        icon:
          type: string
          enum:
          - Default|https://s3-ap-northeast-1.amazonaws.com/agri-info-design-public/icons/ic_person_black_48dp.png
          - Gravatar|null
          - Custom|null
        iconUrl:
          type: string
        impersonatingNickname:
          type: string
        impersonatingUsername:
          type: string
        isEnterprise:
          type: boolean
        isFsMigrated:
          type: boolean
        isPayer:
          type: boolean
        language:
          type: string
        name:
          type: string
        nickname:
          type: string
        purchaseInfo:
          $ref: '#/components/schemas/PurchaseInfo'
        region:
          type: string
        sendMeNews:
          type: boolean
        sharedMountPoint:
          type: string
        stripeId:
          type: string
        systemAdmin:
          type: boolean
        systemOfUnits:
          type: string
          enum:
          - Metric
          - Imperial
        trialAvailable:
          type: boolean
        username:
          type: string
        zoneinfo:
          type: string
    Purchase:
      type: object
      properties:
        amountPaid:
          type: integer
          format: int64
        autoRenewing:
          type: boolean
        billingVendor:
          type: string
          enum:
          - Google
          - Stripe
        collectionMethod:
          type: string
        currency:
          type: string
        expiredAt:
          type: string
          example: '2016-01-01T00:00:00.000Z'
        invoiceId:
          type: string
        invoiceUrl:
          type: string
        orderId:
          type: string
        planId:
          type: string
        startedAt:
          type: string
          example: '2016-01-01T00:00:00.000Z'
        state:
          type: string
          enum:
          - Paid
          - Trial
          - NotPaid
          - Canceled
        subscriptionId:
          type: string
    CheckAndroidPurchasesResponse:
      type: object
      properties:
        exists:
          type: boolean
    AgriBusNaviStatusRequest:
      type: object
      required:
      - androidPurchases
      - settings
      properties:
        androidPurchases:
          $ref: '#/components/schemas/AndroidPurchases'
        settings:
          type: object
  securitySchemes:
    mykey:
      type: apiKey
      name: mykey
      in: header