instacart · Capability

Instacart Connect Post-Checkout API — Orders

Instacart Connect Post-Checkout API — Orders. 2 operations. Lead operation: Get order handling information. Self-contained Naftiko capability covering one Instacart business surface.

Run with Naftiko InstacartOrders

What You Can Do

GET
Getorderhandling — Get order handling information
/v1/v2/post-checkout/orders/{order-id}/handling
GET
Getorderitems — Get order items
/v1/v2/post-checkout/orders/{order-id}/items

MCP Tools

get-order-handling-information

Get order handling information

read-only idempotent
get-order-items

Get order items

read-only idempotent

Capability Spec

connect-post-checkout-orders.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Instacart Connect Post-Checkout API — Orders
  description: 'Instacart Connect Post-Checkout API — Orders. 2 operations. Lead operation: Get order handling information.
    Self-contained Naftiko capability covering one Instacart business surface.'
  tags:
  - Instacart
  - Orders
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    INSTACART_API_KEY: INSTACART_API_KEY
capability:
  consumes:
  - type: http
    namespace: connect-post-checkout-orders
    baseUri: https://connect.instacart.com
    description: Instacart Connect Post-Checkout API — Orders business capability. Self-contained, no shared references.
    resources:
    - name: v2-post_checkout-orders-order_id-handling
      path: /v2/post_checkout/orders/{order_id}/handling
      operations:
      - name: getorderhandling
        method: GET
        description: Get order handling information
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: v2-post_checkout-orders-order_id-items
      path: /v2/post_checkout/orders/{order_id}/items
      operations:
      - name: getorderitems
        method: GET
        description: Get order items
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.INSTACART_API_KEY}}'
  exposes:
  - type: rest
    namespace: connect-post-checkout-orders-rest
    port: 8080
    description: REST adapter for Instacart Connect Post-Checkout API — Orders. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/v2/post-checkout/orders/{order-id}/handling
      name: v2-post-checkout-orders-order-id-handling
      description: REST surface for v2-post_checkout-orders-order_id-handling.
      operations:
      - method: GET
        name: getorderhandling
        description: Get order handling information
        call: connect-post-checkout-orders.getorderhandling
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v2/post-checkout/orders/{order-id}/items
      name: v2-post-checkout-orders-order-id-items
      description: REST surface for v2-post_checkout-orders-order_id-items.
      operations:
      - method: GET
        name: getorderitems
        description: Get order items
        call: connect-post-checkout-orders.getorderitems
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: connect-post-checkout-orders-mcp
    port: 9090
    transport: http
    description: MCP adapter for Instacart Connect Post-Checkout API — Orders. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: get-order-handling-information
      description: Get order handling information
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: connect-post-checkout-orders.getorderhandling
      outputParameters:
      - type: object
        mapping: $.
    - name: get-order-items
      description: Get order items
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: connect-post-checkout-orders.getorderitems
      outputParameters:
      - type: object
        mapping: $.