shopify

Installation
SKILL.md

Shopify

Manage products, orders, customers, and inventory via the Shopify Admin API.

Environment Variables

  • SHOPIFY_STORE_URL - Store URL (e.g. https://my-store.myshopify.com)
  • SHOPIFY_ACCESS_TOKEN - Admin API access token

List products

curl -s -H "X-Shopify-Access-Token: $SHOPIFY_ACCESS_TOKEN" \
  "$SHOPIFY_STORE_URL/admin/api/2024-01/products.json?limit=10" | jq '.products[] | {id, title, status, variants: [.variants[] | {id, price, inventory_quantity}]}'

Get product by ID

Related skills

More from thinkfleetai/thinkfleet-engine

Installs
2
First Seen
Mar 1, 2026