Agri Info Design Caster V1 API

V 1 Caster Controller

Operations 5

POST /v1/caster 利用しないでください #
GET /v1/caster/cleanup 利用しないでください #
POST /v1/caster/cleanup 利用しないでください #
POST /v1/caster/client 利用しないでください #
POST /v1/caster/client/{clientName} 利用しないでください #

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-casterv1-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-casterv1-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: AgriBus-Web Manager API
  version: 0.0.1
  title: AgriBus-Web Manager Caster 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: CasterV1
  description: V 1 Caster Controller
paths:
  /v1/caster:
    post:
      tags:
      - CasterV1
      summary: 利用しないでください
      description: YouCORSにマウントポイントとNtripクライアントを作成する
      operationId: setUpYouCorsUsingPOST
      responses:
        '200':
          description: OK
          content:
            application/json;charset=UTF-8:
              schema:
                $ref: '#/components/schemas/SetUpYouCorsResponse'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SetUpYouCorsRequest'
        description: request
        required: true
  /v1/caster/cleanup:
    get:
      tags:
      - CasterV1
      summary: 利用しないでください
      description: クリーンアップ対象の一覧(同時接続用クライアントおよびStandardプランから退会済みであるユーザーのマウントポイント・クライアント)を取得する
      operationId: listCleanupTargetsUsingGET
      responses:
        '200':
          description: OK
          content:
            application/json;charset=UTF-8:
              schema:
                $ref: '#/components/schemas/CleanupTargetsResponse'
    post:
      tags:
      - CasterV1
      summary: 利用しないでください
      description: 同時接続用クライアントおよびStandardプランから退会済みであるユーザーのマウントポイント・クライアントを一括削除する
      operationId: cleanupUsingPOST
      responses:
        '200':
          description: OK
          content:
            application/json;charset=UTF-8:
              schema:
                $ref: '#/components/schemas/CleanupCasterResponse'
  /v1/caster/client:
    post:
      tags:
      - CasterV1
      summary: 利用しないでください
      description: このAPIは非推奨です。後方互換性のためだけに残されています。CasterV2のcreateClientを使用してください。
      operationId: createClientUsingPOST
      responses:
        '200':
          description: OK
          content:
            application/json;charset=UTF-8:
              schema:
                $ref: '#/components/schemas/SetUpYouCorsResponse'
      deprecated: true
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SetUpYouCorsRequest'
        description: request
        required: true
  /v1/caster/client/{clientName}:
    post:
      tags:
      - CasterV1
      summary: 利用しないでください
      description: このAPIは非推奨です。後方互換性のためだけに残されています。CasterV2のcreateClientByNameを使用してください。
      operationId: createClientByNameUsingPOST
      parameters:
      - name: clientName
        in: path
        description: clientName
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json;charset=UTF-8:
              schema:
                $ref: '#/components/schemas/SetUpYouCorsResponse'
      deprecated: true
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SetUpYouCorsRequest'
        description: request
        required: true
components:
  schemas:
    SetUpYouCorsRequest:
      type: object
    SetUpYouCorsResponse:
      type: object
      properties:
        clientStatus:
          type: string
          enum:
          - Succeeded
          - Failure
          - AlreadyExists
          - None
        mountpointStatus:
          type: string
          enum:
          - Succeeded
          - Failure
          - AlreadyExists
          - None
    CleanupCasterResponse:
      type: object
      properties:
        cleanupStatus:
          type: string
          enum:
          - Execution
          - NonExecution
    CleanupTargetsResponse:
      type: object
      properties:
        cleanupPossible:
          type: boolean
        clientNames:
          type: array
          items:
            type: string
        mountpointNames:
          type: array
          items:
            type: string
  securitySchemes:
    mykey:
      type: apiKey
      name: mykey
      in: header