Gameball Batches API

The Batches API from Gameball — 1 operation(s) for batches.

Operations 1

POST /api/v4.0/integrations/batch/orders/transactions Order Transactions Batch Job #

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-batches-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-batches-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Gameball Batches 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: Batches
paths:
  /api/v4.0/integrations/batch/orders/transactions:
    post:
      summary: Order Transactions Batch Job
      description: 'Retrieve the full transaction history (payments, rewards, refunds) for up to 1,000 orders in a single call. The job runs asynchronously — the endpoint returns a `jobId` immediately. Poll the batch status endpoint to retrieve results.


        **Security:** Requires `apiKey` and `secretKey` headers (secret key required on v4.1; on v4.0 required when High Security Mode is enabled).'
      operationId: batchOrderTransactions
      tags:
      - Batches
      security:
      - apiKey: []
        secretKey: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - body
              properties:
                body:
                  type: array
                  description: Order IDs to retrieve. Min 1, max 1,000 items.
                  minItems: 1
                  maxItems: 1000
                  items:
                    type: string
                  example:
                  - ORDER-001
                  - ORDER-002
                  - ORDER-003
            examples:
              sample:
                summary: Sample request
                value:
                  body:
                  - ORDER-001
                  - ORDER-002
                  - ORDER-003
      responses:
        '200':
          description: Batch order transactions job initiated successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  jobId:
                    type: number
                    description: The assigned job ID, which is later used for status verification and response retrieval.
                    example: 1748392
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: apikey
    secretKey:
      type: apiKey
      in: header
      name: secretkey
    bearerAuth:
      type: http
      scheme: bearer