Walmart · Schema

Walmart Marketplace Inventory

Schema for Walmart Marketplace item inventory record.

CommerceRetailFortune 100

Properties

Name Type Description
sku string Seller's unique SKU identifier for the item
quantity object Inventory quantity details
fulfillment object Fulfillment center details
View JSON Schema on GitHub

JSON Schema

walmart-inventory-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://github.com/api-evangelist/walmart/blob/main/json-schema/walmart-inventory-schema.json",
  "title": "Walmart Marketplace Inventory",
  "description": "Schema for Walmart Marketplace item inventory record.",
  "type": "object",
  "properties": {
    "sku": {
      "type": "string",
      "description": "Seller's unique SKU identifier for the item"
    },
    "quantity": {
      "type": "object",
      "description": "Inventory quantity details",
      "properties": {
        "unit": {
          "type": "string",
          "description": "Unit of measurement",
          "enum": ["EACH"]
        },
        "amount": {
          "type": "integer",
          "description": "Inventory quantity",
          "minimum": 0
        }
      },
      "required": ["unit", "amount"]
    },
    "fulfillment": {
      "type": "object",
      "description": "Fulfillment center details",
      "properties": {
        "fulfillmentType": {
          "type": "string",
          "description": "Fulfillment model",
          "enum": ["S2H", "S2S", "WFS"]
        },
        "shipNode": {
          "type": "object",
          "properties": {
            "shipNodeId": { "type": "string" }
          }
        }
      }
    }
  },
  "required": ["sku", "quantity"]
}

Work with this as data

Every JSON Schema 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 schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • 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 JSON Schema
curl "https://apis.io/api/v1/json-schemas/walmart-inventory"
All schemas
curl "https://apis.io/api/v1/json-schemas?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.