Casey's StoreNumberApi

The Store Number Generator API returns available store numbers and version/health information for Casey's store-numbering system.

Operations 5

GET / / - GET #
GET /v1/version /v1/version - GET #
GET /v1/stores/available /v1/stores/available - GET #
GET /health Health Check #
GET /swagger/v1/swagger.json Get OpenApi Specification #

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/caseys-storenumberapi"
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

caseys-general-stores-store-number-api-openapi.yml Raw ↑
openapi: 3.0.1
info:
  title: StoreNumberApi
  description: The Store Number Generator API is responsible for representing key points of information around stores.
  version: '1.0'
servers:
- url: https://esl.caseys.io/storenumberapi
paths:
  /:
    get:
      tags:
      - Caseys.StoreNumberGenerator.Api
      summary: / - GET
      operationId: get
      responses:
        '200':
          description: OK
  /v1/version:
    get:
      tags:
      - Caseys.StoreNumberGenerator.Api
      summary: /v1/version - GET
      operationId: get-v1-version
      responses:
        '200':
          description: OK
  /v1/stores/available:
    get:
      tags:
      - Stores
      summary: /v1/stores/available - GET
      operationId: get-v1-stores-available
      parameters:
      - name: system
        in: query
        schema:
          type: string
      - name: preferred
        in: query
        schema:
          type: string
      responses:
        '200':
          description: OK
  /health:
    get:
      tags:
      - Health
      summary: Health Check
      description: Returns the health status of the application
      operationId: get-health
      responses:
        '200':
          description: Healthy
        '503':
          description: Unhealthy
  /swagger/v1/swagger.json:
    get:
      summary: Get OpenApi Specification
      description: Gets the OpenApi specification in . format with the parameters .
      operationId: getOpenApiSpec
      responses:
        '200':
          description: ''
components:
  securitySchemes:
    apiKeyHeader:
      type: apiKey
      name: Ocp-Apim-Subscription-Key
      in: header
    apiKeyQuery:
      type: apiKey
      name: subscription-key
      in: query
security:
- apiKeyHeader: []
- apiKeyQuery: []
tags:
- name: Caseys.StoreNumberGenerator.Api
- name: Stores