Gopuff · Schema

Gopuff Order

An order routed from a Powered by Gopuff partner Shopify checkout to a Gopuff micro-fulfillment center for picking, packing, and 15-30 minute delivery.

Quick CommerceInstant DeliveryLast MileGroceryFulfillmentRetailLogistics

Properties

Name Type Description
gopuff_order_id string Gopuff-assigned order identifier, also written back to the partner's Shopify order Additional details panel.
shopify_order_id string Originating Shopify order identifier on the partner store.
mfc_id string Identifier of the Gopuff MFC fulfilling the order.
status string Current fulfillment lifecycle state.
shipping_line object
shipping_address object
customer object
line_items array
tracking_url string Realtime delivery tracking URL surfaced to the customer via Gopuff SMS.
created_at string
delivered_at string
View JSON Schema on GitHub

JSON Schema

gopuff-order-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/gopuff/main/json-schema/gopuff-order-schema.json",
  "title": "Gopuff Order",
  "description": "An order routed from a Powered by Gopuff partner Shopify checkout to a Gopuff micro-fulfillment center for picking, packing, and 15-30 minute delivery.",
  "type": "object",
  "properties": {
    "gopuff_order_id": {
      "type": "string",
      "description": "Gopuff-assigned order identifier, also written back to the partner's Shopify order Additional details panel."
    },
    "shopify_order_id": {
      "type": "string",
      "description": "Originating Shopify order identifier on the partner store."
    },
    "mfc_id": {
      "type": "string",
      "description": "Identifier of the Gopuff MFC fulfilling the order."
    },
    "status": {
      "type": "string",
      "enum": ["accepted", "picking", "out_for_delivery", "delivered", "cancelled"],
      "description": "Current fulfillment lifecycle state."
    },
    "shipping_line": {
      "type": "object",
      "properties": {
        "title": {
          "type": "string",
          "const": "Instant Delivery - Powered by Gopuff"
        },
        "source": {
          "type": "string",
          "const": "Powered By Gopuff"
        }
      },
      "required": ["title", "source"]
    },
    "shipping_address": {
      "type": "object",
      "properties": {
        "line1": { "type": "string" },
        "line2": { "type": "string" },
        "city": { "type": "string" },
        "region": { "type": "string" },
        "postal_code": { "type": "string" },
        "country": { "type": "string" }
      },
      "required": ["line1", "city", "postal_code", "country"]
    },
    "customer": {
      "type": "object",
      "properties": {
        "email": { "type": "string", "format": "email" },
        "phone": { "type": "string" }
      }
    },
    "line_items": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "upc": { "type": "string" },
          "quantity": { "type": "integer", "minimum": 1 },
          "price": { "type": "integer", "minimum": 0 },
          "currency": { "type": "string" }
        },
        "required": ["upc", "quantity"]
      }
    },
    "tracking_url": {
      "type": "string",
      "format": "uri",
      "description": "Realtime delivery tracking URL surfaced to the customer via Gopuff SMS."
    },
    "created_at": { "type": "string", "format": "date-time" },
    "delivered_at": { "type": "string", "format": "date-time" }
  },
  "required": ["gopuff_order_id", "status"]
}

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/gopuff-order"
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 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.