Farmers Edge canplug API

The canplug API from Farmers Edge — 1 operation(s) for canplug.

Operations 1

GET /canplug/imeicanplug/ #

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/farmers-edge-canplug-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

farmers-edge-canplug-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: FarmCommand Canplug API
  termsOfService: https://www.farmcommand.com/terms-of-service
  contact:
    name: Product Support
    email: productsupport@farmersedge.ca
  version: '1.0'
servers:
- url: https://admin.farmcommand.com/
security:
- FarmCommand Token: []
tags:
- name: canplug
paths:
  /canplug/imeicanplug/:
    parameters: []
    get:
      operationId: canplug_imeicanplug_list
      description: 'Get a canplug through IMEI.  This should ONLY be used during the provisioning process.  A

        CanPlug''s IMEI may change after the original manufacturer spreadsheet is loaded in.  In such

        a case, we aren''t searching by the IMEI property, but by the original _imei value.'
      parameters:
      - name: imei
        in: query
        description: Filter canplug by the imei id.
        required: true
        schema:
          type: string
      responses:
        '200':
          description: CanPlug returned successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CanPlug'
        '400':
          description: Bad Request
        '403':
          description: Permission Denied
        '404':
          description: CanPlug not found
        '401':
          description: Invalid Authetnication.
      tags:
      - canplug
components:
  schemas:
    CanPlug:
      required:
      - canplugID
      - implements
      type: object
      properties:
        id:
          title: ID
          type: integer
          readOnly: true
        canplugID:
          title: CanplugID
          type: string
          minLength: 1
        grower:
          title: Grower
          type:
          - integer
          - 'null'
        active:
          title: Active
          type: boolean
        implements:
          type: array
          items:
            type: integer
          uniqueItems: true
        provisioned:
          title: Provisioned
          type: string
          readOnly: true
        integrations:
          type: array
          items:
            type: integer
          readOnly: true
          uniqueItems: true
        carrier_name:
          title: Carrier name
          type: string
          readOnly: true
        is_xbee:
          title: Is xbee
          type: string
          readOnly: true
  securitySchemes:
    FarmCommand_Token:
      type: apiKey
      name: token
      in: query