Back to Registry View Author Profile
Official Verified
shopify
Manage Shopify stores - products, orders, customers, and inventory via Admin API.
skill-install — Terminal
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/mrgoodb/shopifyOr
Shopify
Manage e-commerce stores.
Environment
export SHOPIFY_STORE="your-store.myshopify.com"
export SHOPIFY_ACCESS_TOKEN="shpat_xxxxxxxxxx"
List Products
curl "https://$SHOPIFY_STORE/admin/api/2024-01/products.json" \
-H "X-Shopify-Access-Token: $SHOPIFY_ACCESS_TOKEN"
Create Product
curl -X POST "https://$SHOPIFY_STORE/admin/api/2024-01/products.json" \
-H "X-Shopify-Access-Token: $SHOPIFY_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"product": {
"title": "New Product",
"body_html": "<p>Description</p>",
"vendor": "My Brand",
"product_type": "Clothing",
"variants": [{"price": "29.99", "sku": "SKU123"}]
}
}'
List Orders
curl "https://$SHOPIFY_STORE/admin/api/2024-01/orders.json?status=any" \
-H "X-Shopify-Access-Token: $SHOPIFY_ACCESS_TOKEN"
Get Order Details
curl "https://$SHOPIFY_STORE/admin/api/2024-01/orders/{order_id}.json" \
-H "X-Shopify-Access-Token: $SHOPIFY_ACCESS_TOKEN"
Update Inventory
curl -X POST "https://$SHOPIFY_STORE/admin/api/2024-01/inventory_levels/set.json" \
-H "X-Shopify-Access-Token: $SHOPIFY_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"location_id": 123, "inventory_item_id": 456, "available": 100}'
Links
Metadata
AI Skill Finder
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skill Add to Configuration
Paste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-mrgoodb-shopify": {
"enabled": true,
"auto_update": true
}
}
}Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.
Related Skills
smartsheet
Manage sheets, rows, and columns via Smartsheet API. Automate spreadsheet workflows.
mrgoodb 1401
onelogin
Manage users and apps via OneLogin API. Handle SSO and identity management.
mrgoodb 1401
google-sheets
Read and write Google Sheets data. Create spreadsheets, update cells, and manage worksheets via Sheets API.
mrgoodb 1401
postmark
Send transactional emails with high deliverability via Postmark API. Manage templates, track bounces, and view analytics.
mrgoodb 1401
loom
Manage Loom video recordings - list, share, and get analytics via Loom API.
mrgoodb 1401