shopify

Query and manage Shopify store data via curl using GraphQL.

150|25|Updated Apr 20, 2026
One-click install
npx skills add https://github.com/Devsoul2026/Hermes-One-Click --skill shopify-devsoul2026
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: shopify
Source: https://github.com/Devsoul2026/Hermes-One-Click/tree/main/hermes-agent/optional-skills/productivity/shopify
Command: npx skills add https://github.com/Devsoul2026/Hermes-One-Click --skill shopify-devsoul2026

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill enables you to interact with Shopify stores by issuing GraphQL queries via curl, eliminating the need for SDKs to fetch or mutate store data.

Core Features & Use Cases

  • Admin API access: Manage products, orders, customers, inventory, and metafields through the Admin GraphQL endpoint.
  • Storefront API access: Retrieve public product data and storefront information for customer-facing apps.
  • Consistency & validation: Use a standard curl pattern with authentication headers and rate-limiting awareness to build repeatable integrations.

Quick Start

Run a sample curl command to fetch a product by ID from the Admin GraphQL API.

Frequently Asked Questions about shopify

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I query Shopify store data using curl and GraphQL?

To query Shopify store data using curl and GraphQL, you send HTTP POST requests to the Admin or Storefront GraphQL endpoints with your SHOPIFY_ACCESS_TOKEN, domain, and API version configured in the headers.

Can I manage Shopify products, orders, and inventory without an SDK?

Yes, you can manage Shopify products, orders, customers, and inventory without an SDK by sending custom GraphQL mutations via curl directly to the Admin API endpoint.

What credentials do I need to access the Shopify Admin API?

Accessing the Shopify Admin API requires a SHOPIFY_ACCESS_TOKEN, your SHOPIFY_STORE_DOMAIN, and a specific SHOPIFY_API_VERSION to authenticate and route curl requests properly.

Does this approach support retrieving public product data for customer-facing storefronts?

Yes, this approach supports the Storefront API, allowing you to retrieve public product data and storefront information directly via curl for customer-facing applications.

What is the best way to handle Shopify API rate limiting with curl?

The best way to handle Shopify API rate limiting with curl is to build standard request patterns with rate-limiting awareness, ensuring repeatable and consistent integrations without exceeding query limits.