Shop ICON Storefront API

Anonymous, read-only JSON access to the Shop ICON merchandise storefront at store.iconaircraft.com — products, variants, collections, predictive search, session cart and store metadata. The store's own /agents.md and /robots.txt name these endpoints as the supported read path for AI agents. Verified live on 2026-08-22 at 43 published products and 13 collections. Ownership is established from /meta.json, which returns name "Shop ICON", domain store.iconaircraft.com, myshopify_domain iconaircraft.myshopify.com and city Vacaville, California — ICON Aircraft's headquarters.

Operations 1

GET /meta.json Get storefront metadata #

Documentation

Specifications

Other Resources

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/icon-aircraft-store-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

icon-aircraft-store-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Shop ICON Storefront Store API
  version: '2026-08-22'
  description: 'Anonymous, read-only JSON access to the Shop ICON storefront at store.iconaircraft.com — the ICON Aircraft merchandise store (A5 apparel, hats, scale models, publishing and flight-training products), built on Shopify.

    ICON Aircraft publishes no developer program and no product API for the A5 aircraft itself. This storefront surface is nonetheless a genuine, documented, machine-readable interface: the store''s own /agents.md and /robots.txt name these endpoints as the supported read path for AI agents, and each one was probed live and returned 200 without credentials on 2026-08-22.

    Ownership is established from the storefront''s own metadata rather than the fetch URL: GET /meta.json returns name "Shop ICON", domain store.iconaircraft.com, myshopify_domain iconaircraft.myshopify.com, and city Vacaville, California — ICON Aircraft''s headquarters. The store also stocks Flight Design branded merchandise, consistent with Flight Design being ICON Aircraft''s sister company under Shang Gong Group.

    Derived by API Evangelist from https://store.iconaircraft.com/agents.md and from live anonymous probes of every operation below. The transactional surface (cart, checkout, order) is NOT described here — Shopify exposes it to agents through the UCP/MCP endpoint instead; see mcp/icon-aircraft-mcp.yml.'
  contact:
    name: Shop ICON
    url: https://store.iconaircraft.com/
  termsOfService: https://store.iconaircraft.com/policies/terms-of-service
servers:
- url: https://store.iconaircraft.com
  description: Shop ICON storefront (Shopify, Cloudflare edge)
- url: https://iconaircraft.myshopify.com
  description: Canonical myshopify origin for the same store
tags:
- name: Store
  description: Store-level metadata.
paths:
  /meta.json:
    get:
      operationId: getStoreMeta
      summary: Get storefront metadata
      description: Returns store identity and commerce settings — legal name, location, currency, money format, countries shipped to, published product and collection counts, and the enabled card brands. This is the operation that establishes which merchant the storefront belongs to.
      tags:
      - Store
      responses:
        '200':
          description: Store metadata.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StoreMeta'
components:
  schemas:
    StoreMeta:
      type: object
      properties:
        id:
          type: integer
        name:
          type: string
        city:
          type: string
        province:
          type: string
        country:
          type: string
        currency:
          type: string
        domain:
          type: string
        url:
          type: string
          format: uri
        myshopify_domain:
          type: string
        description:
          type: string
        ships_to_countries:
          type: array
          items:
            type: string
        money_format:
          type: string
        published_collections_count:
          type: integer
        published_products_count:
          type: integer