Gameball Plants API

The Plants API from Gameball — 2 operation(s) for plants.

Operations 3

GET /plants
POST /plants
DELETE /plants/{id}

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/gameball-plants-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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

gameball-plants-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Gameball Plants API
  description: Gameball REST API v4.0 - Complete API reference for integrating loyalty, gamification, and customer engagement features
  version: 4.0.0
servers:
- url: https://api.gameball.co
security:
- bearerAuth: []
tags:
- name: Plants
paths:
  /plants:
    get:
      description: Returns all plants from the system that the user has access to
      parameters:
      - name: limit
        in: query
        description: The maximum number of results to return
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: Plant response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Plant'
      tags:
      - Plants
    post:
      description: Creates a new plant in the store
      requestBody:
        description: Plant to add to the store
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/NewPlant'
        required: true
      responses:
        '200':
          description: plant response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Plant'
      tags:
      - Plants
  /plants/{id}:
    delete:
      description: Deletes a single plant based on the ID supplied
      parameters:
      - name: id
        in: path
        description: ID of plant to delete
        required: true
        schema:
          type: integer
          format: int64
      responses: {}
      tags:
      - Plants
components:
  schemas:
    Plant:
      required:
      - name
      type: object
      properties:
        name:
          description: The name of the plant
          type: string
        tag:
          description: Tag to specify the type
          type: string
    NewPlant:
      allOf:
      - $ref: '#/components/schemas/Plant'
      - required:
        - id
        type: object
        properties:
          id:
            description: Identification number of the plant
            type: integer
            format: int64
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: apikey
    secretKey:
      type: apiKey
      in: header
      name: secretkey
    bearerAuth:
      type: http
      scheme: bearer