Northmill Cash Cards API

The CashCards API from Northmill — 2 operation(s) for cashcards.

Operations 2

GET /v2/cashcards/balance Fetech balance on cash cards. #
GET /v2/stores/{externalStoreId}/cashcards/balance Fetech balance on cash cards. #

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/northmill-cashcards-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

northmill-cashcards-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: v2
  title: MoreFlo.Public.Api Cash Cards API
servers:
- url: https://api.moreflo.com
tags:
- name: CashCards
paths:
  /v2/cashcards/balance:
    get:
      tags:
      - CashCards
      summary: Fetech balance on cash cards.
      operationId: CashCards_Get
      parameters:
      - name: externalStoreId
        in: query
        required: false
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.CashCardsBalanceResult'
            text/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.CashCardsBalanceResult'
            application/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.CashCardsBalanceResult'
            text/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.CashCardsBalanceResult'
  /v2/stores/{externalStoreId}/cashcards/balance:
    get:
      tags:
      - CashCards
      summary: Fetech balance on cash cards.
      operationId: CashCards_Get
      parameters:
      - name: externalStoreId
        in: path
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.CashCardsBalanceResult'
            text/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.CashCardsBalanceResult'
            application/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.CashCardsBalanceResult'
            text/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.CashCardsBalanceResult'
components:
  schemas:
    MoreFlo.Models.InterfaceModels.CashCardsBalanceResult:
      description: Represents the result of a cash card balance inquiry, providing balances for different card types.
      type: object
      properties:
        PrepaidBalance:
          format: double
          description: The balance of prepaid cards.
          type: number
        ValueCardBalance:
          format: double
          description: The balance of value cards.
          type: number
        GiftCardBalance:
          format: double
          description: The balance of gift cards.
          type: number
        CashRefundSlipBalance:
          format: double
          description: The balance of cash refund slips.
          type: number
        Success:
          description: Indicates whether the API operation was successful.
          type: boolean
        ExtraInformation:
          description: 'A list of extra information or messages related to the API operation result.

            This can include error messages, warnings, or informational notes.'
          type: array
          items:
            type: string
  securitySchemes:
    basic:
      type: http
      scheme: basic
      description: Basic HTTP Authentication