Agri Info Design Soracom V1 API

V 1 Soracom Controller

Operations 2

GET /v1/soracom/native/subscribers/{imsi} nativeGetSubscriberInfo #
POST /v1/soracom/sims/{imsi}/activate activateSim #

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-soracomv1-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-soracomv1-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: AgriBus-Web Manager API
  version: 0.0.1
  title: AgriBus-Web Manager Soracom 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: SoracomV1
  description: V 1 Soracom Controller
paths:
  /v1/soracom/native/subscribers/{imsi}:
    get:
      tags:
      - SoracomV1
      summary: nativeGetSubscriberInfo
      description: Soracom APIを直接叩きます。Subscriber情報を取得します
      operationId: nativeGetSubscriberInfoUsingGET
      parameters:
      - name: imsi
        in: path
        description: imsi
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json;charset=UTF-8:
              schema:
                $ref: '#/components/schemas/SoracomSubscriberInfo'
  /v1/soracom/sims/{imsi}/activate:
    post:
      tags:
      - SoracomV1
      summary: activateSim
      description: Soracom APIを直接叩きます。Subscriber情報を取得します
      operationId: activateSimUsingPOST
      responses:
        '200':
          description: OK
          content:
            application/json;charset=UTF-8:
              schema:
                $ref: '#/components/schemas/ActivateSimResponse'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ActivateSimRequest'
        description: request
        required: true
components:
  schemas:
    SoracomSubscriberInfo:
      type: object
      properties:
        subscriber:
          $ref: '#/components/schemas/Subscriber'
    ActivateSimRequest:
      type: object
      required:
      - imei
      - imsi
      - simGroupId
      - simName
      properties:
        agriBusProductId:
          type: string
        agriBusProductSerialNumber:
          type: string
        imei:
          type: string
        imsi:
          type: string
        simGroupId:
          type: string
        simName:
          type: string
    SessionStatus:
      type: object
      properties:
        dnsServers:
          type: array
          items:
            type: string
        gatewayPrivateIpAddress:
          type: string
        gatewayPublicIpAddress:
          type: string
        imei:
          type: string
        lastUpdatedAt:
          type: integer
          format: int64
        online:
          type: boolean
        ueIpAddress:
          type: string
        vpgId:
          type: string
    Subscriber:
      type: object
      properties:
        apn:
          type: string
        createdAt:
          type: integer
          format: int64
        expiredAt:
          type: integer
          format: int64
        expiryAction:
          type: string
        groupId:
          type: string
        iccid:
          type: string
        imeiLock:
          $ref: '#/components/schemas/ImeiLock'
        imsi:
          type: string
        ipAddress:
          type: string
        lastModifiedAt:
          type: integer
          format: int64
        moduleType:
          type: string
        msisdn:
          type: string
        operatorId:
          type: string
        plan:
          type: integer
          format: int32
        serialNumber:
          type: string
        sessionStatus:
          $ref: '#/components/schemas/SessionStatus'
        speedClass:
          type: string
        status:
          type: string
        tags:
          type: object
          additionalProperties:
            type: string
        terminationEnabled:
          type: boolean
    ActivateSimResponse:
      type: object
      required:
      - activationStatus
      - imeiLockStatus
      - setGroupIdResult
      - setNameResult
      properties:
        activationStatus:
          type: string
          enum:
          - AlreadyActivated
          - Activated
          - Deactivated
          - Failure
        imeiLockStatus:
          type: string
          enum:
          - Locked
          - Unlocked
          - Failure
        setGroupIdResult:
          type: string
          enum:
          - Success
          - Failure
        setNameResult:
          type: string
          enum:
          - Success
          - Failure
    ImeiLock:
      type: object
      properties:
        imei:
          type: string
  securitySchemes:
    mykey:
      type: apiKey
      name: mykey
      in: header